{"info":{"_postman_id":"5d8a2550-366f-4e10-9352-350d1ff48ccb","name":"Seccl API Documentation","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"description":"<html><head></head><body></body></html>","owner":"25484536","collectionId":"5d8a2550-366f-4e10-9352-350d1ff48ccb","publishedId":"2s8ZDcyKSL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"1D1739"},"publishDate":"2024-06-13T20:12:01.000Z"},"item":[{"name":"Getting started","item":[{"name":"Access and authentication","item":[{"name":"Generate an access token [OAuth]","event":[{"listen":"test","script":{"id":"03dd5e35-c424-4ef4-aaef-0f7855a0b490","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"apiToken\", data.access_token);"],"type":"text/javascript","packages":{}}}],"id":"88e125bf-db28-4b6e-81a3-2c43407a87d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"audience","value":"{{apiRoute}}","type":"text"}]},"url":"{{authRoute}}/oauth/token","description":"<h2 id=\"oauth-token-request\">OAuth Token Request</h2>\n<p>This endpoint is used to obtain an access token for authentication purposes. It accepts a POST request to the URL <code>{{authRoute}}/oauth/token</code> with the necessary credentials provided in the request body.</p>\n<h4 id=\"token-lifespan\">Token lifespan</h4>\n<p>Access tokens are valid for up to 2 hours. To ensure efficient use of resources and maintain optimal system performance, we kindly ask that firms reuse the access token during its validity period rather than requesting a new token for each API call.</p>\n<h3 id=\"request-method\">Request Method</h3>\n<ul>\n<li><strong>POST</strong></li>\n</ul>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<p>The request must include the following parameters in the <code>x-www-form-urlencoded</code> format:</p>\n<ul>\n<li><p><strong>grant_type</strong> (text): The type of grant being requested (e.g., authorization_code, password).</p>\n</li>\n<li><p><strong>client_id</strong> (text): The unique identifier for the client making the request.</p>\n</li>\n<li><p><strong>client_secret</strong> (text): The secret key associated with the client ID.</p>\n</li>\n<li><p><strong>audience</strong> (text): The intended audience for the token, usually the API that the client wants to access.</p>\n</li>\n</ul>\n<h3 id=\"expected-response-format\">Expected Response Format</h3>\n<p>Upon successful authentication, the server responds with a JSON object containing the following fields:</p>\n<ul>\n<li><p><strong>access_token</strong>: The token that can be used to authenticate subsequent requests.</p>\n</li>\n<li><p><strong>scope</strong>: The scope of access granted by the token.</p>\n</li>\n<li><p><strong>expires_in</strong>: The duration in seconds for which the token is valid.</p>\n</li>\n<li><p><strong>token_type</strong>: The type of token issued (typically \"Bearer\").</p>\n</li>\n</ul>\n<p>Make sure to handle the response appropriately to utilise the access token in your application.</p>\n","urlObject":{"path":["oauth","token"],"host":["{{authRoute}}"],"query":[],"variable":[]}},"response":[{"id":"1e52bfb1-2ae3-4523-b63e-9fa176d6457c","name":"Acquire access token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"audience","value":"{{apiRoute}}","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"https://seccl-{{firmId}}-staging.uk.auth0.com/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"###TOKEN###\",\n    \"scope\": \"create:scopes\",\n    \"expires_in\": 7200,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"88e125bf-db28-4b6e-81a3-2c43407a87d3"},{"name":"Generate an access token [DEPRECATED]","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"apiToken\", data.data.token);"],"type":"text/javascript","id":"941bc785-f779-48c8-9542-67e3f69161a2"}}],"id":"a044a5b1-7f1f-4187-b946-525ad930b9c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{userId}}\",\n    \"password\": \"{{userPassword}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/authenticate","description":"<p>This flow returns an API token that should be used in all subsequent calls to Seccl's API in the <code>api-token</code> header field.</p>\n<p>API tokens generated by <code>Machine</code> users will expire after two hours of inactivity. API tokens generated by <code>User</code> users expire after ten minutes of inactivity and should only be used for the users accessing Seccl's services via the off-the-shelf user interfaces.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of your user or the email address of your user</p>\n<hr />\n<p><code>password</code> string <strong>Required</strong></p>\n<p>The secret password</p>\n<hr />\n","urlObject":{"path":["authenticate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7cba8be6-5cc6-4338-9035-af0f484eeedc","name":"Acquire access token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{ \"firmId\": \"{{firmId}}\", \"id\": \"{{userId}}\", \"password\": \"{{userPassword}}\" }","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"<token>\",\n        \"userName\": \"<name>\",\n        \"userType\": \"<User or Machine>\",\n        \"scopes\": [\n            \"Admin\"\n        ],\n        \"services\": [\n            \"Core\",\n            \"Pfolio\"\n        ]\n    }\n}"}],"_postman_id":"a044a5b1-7f1f-4187-b946-525ad930b9c8"},{"name":"Set password using access token","id":"c94a7065-491f-4490-97b5-b40515d9c4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n          \"id\": \"{{userId}}\",\n          \"firmId\": \"{{firmId}}\",\n          \"password\": \"<new password>\",\n          \"passwordToken\": \"<password token provided to the user>\"\n      }"},"url":"{{apiRoute}}/setpassword","description":"<p>This action creates a new password using the access token.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the user or the email address of the user</p>\n<hr />\n<p><code>password</code> string <strong>Required</strong></p>\n<p>The secret password to be set</p>\n<hr />\n<p><code>passwordToken</code> string <strong>Required</strong></p>\n<p>The password token provided by Seccl</p>\n<hr />\n","urlObject":{"path":["setpassword"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c94a7065-491f-4490-97b5-b40515d9c4dd"},{"name":"Generate set password email","id":"8f20b952-1385-43bd-99c0-e7a804068f3e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n          \"id\": \"{{userId}}\",\n          \"surname\": \"<surname>\",\n          \"firmId\": \"{{firmId}}\"\n      }"},"url":"{{apiRoute}}/reset","description":"<p>This triggers a password reset email to be sent to the user. This email has a 30-minute timeout from the point of instruction.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique of identifier of your firm</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the user or the email address of the user</p>\n<hr />\n","urlObject":{"path":["reset"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f20b952-1385-43bd-99c0-e7a804068f3e"},{"name":"Change your password","id":"8da48708-fdcc-47d7-8542-12585f4dae0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n          \"id\": \"{{userId}}\",\n          \"firmId\": \"{{firmId}}\",\n          \"password\": \"<old password>\",\n          \"newPassword\": \"<new password>\"\n      }"},"url":"{{apiRoute}}/changepassword","description":"<p>This action allows the user to change their password once they have already set one up on the system.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the user or the email address of the user</p>\n<hr />\n<p><code>password</code> string <strong>Required</strong></p>\n<p>The existing password</p>\n<hr />\n<p><code>newPassword</code> string <strong>Required</strong></p>\n<p>The secret password to be set</p>\n<hr />\n","urlObject":{"path":["changepassword"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8da48708-fdcc-47d7-8542-12585f4dae0f"}],"id":"c3dfddc2-bbe6-45b6-88df-ab0e3c23b1a5","description":"<h4 id=\"logging-into-seccls-api\">Logging into Seccl's API</h4>\n<p><em><strong>We're upgrading our Authentication to utilise</strong></em> <a href=\"https://desktop.postman.com/?desktopVersion=10.15.0&amp;webVersion=10.15.9-ui-230717-0642&amp;userId=6135008&amp;teamId=604381\">Okta/Auth0</a><em><strong>, read more below...</strong></em></p>\n<p>Here at Seccl, we take the security of our API seriously. Here's how you can gain access...</p>\n<p>Firstly, we will use an API token (a small, device-specific piece of code otherwise known as an access token) to authenticate requests and grant you access to our API.</p>\n<p>Your API login details carry many privileges, so be sure to keep them safe! Do not share your login details in publicly accessible areas such as GitHub, client-side code.</p>\n<p>All API requests must be made over Hypertext Transfer Protocol Secure (<a href=\"http://en.wikipedia.org/wiki/HTTP_Secure\">HTTPS</a>), which is typically used for secure communication over a computer network. Calls made over plain HTTP will fail. API requests without authentication will also fail.</p>\n<p>We will provide the details to allow you to set your password.</p>\n<p><strong>Please note: We do not provide authentication services to end clients – this should be managed by your application.</strong></p>\n<p>This flow will allow you to generate a token to:</p>\n<ul>\n<li><p>Log into the API</p>\n</li>\n<li><p>Set your password</p>\n</li>\n<li><p>Reset your password</p>\n</li>\n<li><p>Change your password</p>\n</li>\n</ul>\n<p><strong>Authentication Upgrade</strong></p>\n<p>You can continue to use our existing <code>/authenticate</code> endpoint within your <code>{{apiRoute}}</code>.</p>\n<p>However, we're deprecating this in favour of an <a href=\"https://auth0.com/docs/authenticate/protocols/oauth\">OAuth 2.0</a> endpoint within your <code>{{authRoute}}</code>. This <code>authRoute</code> represents the specific Okta/Auth0 instance for your firm/environment combination. For example <code>https://seccl-staging-{{firmId}}.uk.auth0.com</code>.</p>\n<p>As you onboard with our new authentication pattern, we'll provision:</p>\n<ul>\n<li><p>Okta/Auth0 Instance - providing the <code>authRoute</code></p>\n</li>\n<li><p>Machine to Machine Client - providing the <code>clientId</code> and <code>clientSecret</code></p>\n</li>\n</ul>\n<p>These are then used within the new <code>/oauth/token</code> endpoint.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"1d6abf18-252c-4793-ac10-bb11b0cfc8b5"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"bc4b9552-5f98-4238-af12-60acfe7fd5f0"}}],"_postman_id":"c3dfddc2-bbe6-45b6-88df-ab0e3c23b1a5"},{"name":"Errors","item":[],"id":"1a511de4-1993-4231-86e2-82e289b32162","description":"<h4 id=\"http-errors\">HTTP errors</h4>\n<p>Seccl uses conventional HTTP response codes to indicate the success or failure of an API request.</p>\n<p>You can see a full summary of the status codes below, but as a general rule:</p>\n<ul>\n<li>Codes in the <code>2xx</code> range mean a successful API request</li>\n<li>Codes in the <code>4xx</code> range indicate an error that failed due to the information provided</li>\n<li>Codes in the <code>5xx</code> range indicate an error with Seccl's server (these are rare!)</li>\n<li>Some <code>4xx</code> errors can be handled through programming – for example, an error code that briefly explains the error reported</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status code</strong></th>\n<th><strong>Summary</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>200</code> - OK</td>\n<td>Everything worked as expected</td>\n</tr>\n<tr>\n<td><code>400</code> - Bad request</td>\n<td>The request could not be accepted</td>\n</tr>\n<tr>\n<td><code>403</code> - Forbidden</td>\n<td>The API key doesn't have the permissions to perform the request</td>\n</tr>\n<tr>\n<td><code>404</code> - Not found</td>\n<td>The requested resource doesn't exist</td>\n</tr>\n<tr>\n<td><code>409</code> - Conflict</td>\n<td>The request cannot be processed because of an idempotency conflict</td>\n</tr>\n<tr>\n<td><code>419</code> - Session expired</td>\n<td>The API key has expired due to inactivity</td>\n</tr>\n<tr>\n<td><code>500</code> - Internal server error</td>\n<td>Something went wrong on our end</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"asynchronous-exceptions\">Asynchronous exceptions</h4>\n<p>Asynchronous (async) exceptions are errors caused by the function or events beyond the control of the API instruction.</p>\n<p>These errors have occurred in the system and require intervention to investigate and action.</p>\n<p>In general, async exceptions relate to information that was entered incorrectly or issues with requests that were sent to a processing queue and therefore not immediately rejected.</p>\n<p>You can find further information on viewing and managing async exceptions in the <strong>Notifications</strong> section.</p>\n","_postman_id":"1a511de4-1993-4231-86e2-82e289b32162"},{"name":"Idempotency","item":[{"name":"Idempotency keys","id":"a962134a-da4d-4695-a9eb-5461c52cee79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Idempotency-Key","value":"{{UUIDv4}}"}],"body":{"mode":"raw","raw":"{\"ExampleBody\": \"{{value}}\"}"},"url":"{{apiRoute}}/{{example}}","description":"<p>Using this command, you can create an idempotency key.</p>\n","urlObject":{"path":["{{example}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a962134a-da4d-4695-a9eb-5461c52cee79"}],"id":"1bfe6d10-50e7-4403-8e6f-4bf2c4dc740a","description":"<h2 id=\"overview\">Overview</h2>\n<p>To ensure <strong>safe retry mechanisms</strong> and <strong>prevent duplicate operations</strong>, our API supports <strong>idempotency keys</strong>. This allows clients to safely retry requests without accidentally performing the same action multiple times.</p>\n<h2 id=\"when-to-use-idempotency\">When to Use Idempotency</h2>\n<p>Use idempotency keys for <strong>any request that creates or modifies data</strong>, such as:</p>\n<ul>\n<li><p><strong>Payment transactions</strong></p>\n</li>\n<li><p><strong>Account creations</strong></p>\n</li>\n<li><p><strong>Order processing</strong></p>\n</li>\n</ul>\n<p>Idempotency is <strong>not required</strong> for <strong>GET requests</strong> since they do not modify data.</p>\n<h2 id=\"how-it-works\">How It Works</h2>\n<ol>\n<li><p><strong>Include an</strong> <strong><code>idempotency-key</code></strong> <strong>in the request headers.</strong></p>\n</li>\n<li><p><strong>Send the request as usual.</strong></p>\n</li>\n<li><p><strong>If the request completes successfully,</strong> the response is cached.</p>\n</li>\n<li><p><strong>If the same request is sent again with the same key:</strong></p>\n<ol>\n<li><p>if the requesst has completed, the original status code and response are returned.</p>\n</li>\n<li><p>if the request has not yet completed, a <code>202 Processing</code> response is returned</p>\n</li>\n</ol>\n</li>\n<li><p><strong>If the request fails before completion (e.g., network issue),</strong> you can retry with the same key.</p>\n</li>\n<li><p><strong>If the request body changes but the key remains the same,</strong> a <code>422 Unprocessable Entity</code> error is returned.</p>\n</li>\n</ol>\n<h3 id=\"important-notes\">Important Notes</h3>\n<ul>\n<li><p><strong>The</strong> <strong><code>idempotency-key</code></strong> <strong>must be unique, regardless of action.</strong> Once a key has been used, it cannot be reused for any request within 72 hours.</p>\n</li>\n<li><p><strong>Idempotency keys apply to all API paths.</strong> A <code>POST /client</code> request with key <code>123</code> is treated the same as a <code>POST /portfoliotransactiongroup</code> request with the same key.</p>\n</li>\n<li><p><strong>Idempotency keys expire</strong> afte 72 hours, after which a new request with the same key will be processed as new.</p>\n</li>\n<li><p><strong>Changing the request body</strong> for the same key results in a <code>422 Unprocessable Entity</code> error.</p>\n</li>\n<li><p>If a request returns a 4xx error, the request can be retried with the same idempotency key as long as the body remains unchanged.</p>\n</li>\n</ul>\n<h2 id=\"handling-errors\">Handling Errors</h2>\n<ul>\n<li><strong>422 Unprocessable Entity</strong>: If the request body changes but the idempotency key remains the same, this error is returned.</li>\n</ul>\n<h2 id=\"best-practices\">Best Practices</h2>\n<p>✅ <strong>UUIDv4 is recommended</strong> for idempotency keys to ensure uniqueness.</p>\n<p>✅ <strong>Store keys on the client-side</strong> to retry failed requests when necessary.</p>\n<p>✅ <strong>Generate a new key</strong> for every unique request that modifies data.</p>\n<h2 id=\"summary\">Summary</h2>\n<ul>\n<li><p><strong>Idempotency keys</strong> prevent duplicate operations by caching successful responses.</p>\n</li>\n<li><p><strong>Clients must provide a unique</strong> <code>idempotency-key</code> in the request header.</p>\n</li>\n<li><p><strong>Retries with the same key return the original status code and response instead of processing the request again</strong>.</p>\n</li>\n<li><p><strong>Changing the request body for the same key will result in a</strong> <strong><code>422 Unprocessable Entity</code></strong> <strong>error.</strong></p>\n</li>\n<li><p><strong>Idempotency keys must be unique, regardless of action.</strong></p>\n</li>\n</ul>\n<p>By following these guidelines, you can ensure safe and predictable interactions with our API.</p>\n","_postman_id":"1bfe6d10-50e7-4403-8e6f-4bf2c4dc740a"},{"name":"Pagination","item":[],"id":"f67c671a-fc74-41d0-849d-eb572ee2950d","description":"<p>All API resources support bulk fetches via \"list\" API methods. For example, you can list clients, investment accounts, assets and transactions.</p>\n<p>When the list of returned items gets too long, Seccl's API provides <strong>pagination</strong> to retrieve the items in batches.</p>\n<p>You can use the metadata at the bottom of the response to retrieve the number of items available for that API request. For example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"meta\": {\n        \"count\": 200\n    }\n\n</code></pre>\n<h4 id=\"query-parameters\">Query parameters</h4>\n<hr />\n<p><code>page</code> integer</p>\n<p>The page number of the call</p>\n<hr />\n<p><code>pageSize</code> integer</p>\n<p>The number of items per page. We recommend setting the maximum to 100</p>\n<hr />\n","_postman_id":"f67c671a-fc74-41d0-849d-eb572ee2950d"},{"name":"Release notes","item":[],"id":"d3240b52-f738-44d9-9720-307799552c59","description":"<p>Any changes to our API will be documented here.</p>\n<p><strong>Updates</strong></p>\n<ul>\n<li><p>14/10/2025 - Removed Raise Trades from Incoming Features and moved the examples in to the \"Investment strategies\" folder. Also cleaned up that folder by splitting examples in to \"Buys\", \"Sells\" and \"Transaction Groups with orders\".</p>\n</li>\n<li><p>13/06/2025 - Updated Internal Cash Movement folder to describe some nuances around retrieving ICTs on destination accounts</p>\n</li>\n<li><p>02/04/2025 - Updated Maximum amount able to Raise Trade calculation (In Raise Trades use case 1), following backend changes</p>\n</li>\n<li><p>01/04/2025 - Raise Trades use case 3 - Auto-disinvest with Largest, using Raise Trades</p>\n</li>\n<li><p>31/03/2025</p>\n<ul>\n<li><p>Raise Trades use case 2 - PTGs</p>\n<ul>\n<li>Including a custom Sell by amount and Withdraw</li>\n</ul>\n</li>\n<li><p>Raise Trades use case 3 - Auto-disinvest</p>\n</li>\n</ul>\n</li>\n<li><p>28/03/2025 - Updated Raise Trade use case 1 to make the documentation more succinct, and provide examples of all the validation points</p>\n</li>\n<li><p>28/03/2025 - Updated documentation for Platform Management/Assets bid, ask and mid price attributes</p>\n</li>\n<li><p>28/03/2025 - Updated documentation for Incoming features/2025 Raise Trades to add examples for buying an asset</p>\n</li>\n<li><p>26/03/2025 - Added the option for Full Sell and Withdrawal transaction under the Create a withdrawal with auto-disinvest Endpoint under the Withdrawals folder</p>\n</li>\n<li><p>26/03/2025 - Added documentation for \"Balances and valuations/Account/Retrieve the account report\" re. \"Retained Interest\"</p>\n</li>\n<li><p>21/03/2025 - Added \"2025 Raise Trades\" tutorial to the \"Incoming features\" folder</p>\n</li>\n<li><p>24/01/2025 - Updates to documention for idemopotency</p>\n<ul>\n<li><p><strong>UUIDv4 is now required</strong> for idempotency keys to ensure uniqueness.</p>\n</li>\n<li><p><strong>409 Conflict</strong> returned for duplicate keys; <strong>422 Unprocessable Entity</strong> if the request body changes.</p>\n</li>\n<li><p><strong>Keys are globally unique</strong> across all API paths and actions.</p>\n</li>\n<li><p><strong>Responses are cached</strong> for idempotent requests, allowing safe retries.</p>\n</li>\n</ul>\n</li>\n<li><p>20/01/2025 - Added account and model-level rebalance validation documention</p>\n</li>\n<li><p>08/08/2024 - Added documentation for Live Account Summary (Balances and valuations / Account / Retrieve the live account summary)</p>\n</li>\n<li><p>23/01/2024 - Added documentation to instruct a single sell</p>\n</li>\n<li><p>28/07/2023 - Updates to transaction attributes documentation</p>\n<ul>\n<li><p>Added documentation for <code>externalIds.externalTransferId</code> in \"Transfers/Transfers workbench/Product Transfer object\"</p>\n</li>\n<li><p>Added documentation for clientProductActionId in \"Transfers/Transfers workbench/Retrieve transactions in the product transfer\"</p>\n</li>\n<li><p>Added <code>GoCardless</code> option for <code>method</code>s in the Payment methods/Direct Debits folder</p>\n</li>\n<li><p>Amended attributes in Payment methods/Direct Debits folder to remove the <code>?</code> tag representing an <code>optional</code> field to be consistent with other attributes</p>\n</li>\n</ul>\n</li>\n</ul>\n","_postman_id":"d3240b52-f738-44d9-9720-307799552c59"}],"id":"eba3a801-ed6d-42b4-90b3-8af5d000e440","description":"<h4 id=\"welcome-to-seccls-api-reference\">Welcome to Seccl's API reference</h4>\n<p>Hello and welcome! 👋</p>\n<p>In this section, we'll cover:</p>\n<ul>\n<li><p>Access and authentication</p>\n</li>\n<li><p>Errors</p>\n</li>\n<li><p>Idempotency</p>\n</li>\n<li><p>Pagination</p>\n</li>\n<li><p>Release notes</p>\n</li>\n</ul>\n<p>Before getting started, you'll need access to your sandbox environment. This will authenticate your firm's user account and allow you to generate an authentication token (so you can log in!).</p>\n<h5 id=\"first-a-couple-of-things-you-need-to-know\">First, a couple of things you need to know...</h5>\n<p>Our API is organised around REST (Representational State Transfer), which is a particular software architectural style. You can read <a href=\"https://en.wikipedia.org/wiki/Representational_state_transfer\">more about REST here</a>.</p>\n<p>Our API uses predictable resource-oriented URLs, accepts form-encoded request bodies and returns JSON-encoded responses. It also uses standard HTTP response codes, authentication and verbs.</p>\n<p>You can use the Seccl API in test mode, which doesn't affect your live data or interact with other partners. The API route you use determines whether the request is in live mode or test mode.</p>\n<h5 id=\"a-note-on-the-docs-structure\">A note on the docs structure</h5>\n<p>The structure of the API docs aims to mirror the flow of a new investor signing-up to the investment platform – from creating a client account, to investing money and viewing the portfolio balance.</p>\n<ul>\n<li><p>Platform management: Setting up your platform, including operational users, assets, fees and exception monitoring</p>\n</li>\n<li><p>Client onboarding: Creating a new client on your platform</p>\n</li>\n<li><p>Investment accounts: Creating a new investment account for your client (e.g. an ISA, GIA, or pension, etc.)</p>\n</li>\n<li><p>Investment strategies: Assigning how the investor's money is invested (e.g. selecting a model portfolio or individual asset)</p>\n</li>\n<li><p>Payment methods: Collecting money from the investor's account and allocating it to their investment account</p>\n</li>\n<li><p>Balances and valuations: Retrieving a summary of investor's holdings on the platform</p>\n</li>\n<li><p>Transfers: Instructing a product transfer of cash or assets from one platform to your platform</p>\n</li>\n<li><p>Withdrawals: Instructing a withdrawal (single or regular) from the investor's investment account</p>\n</li>\n<li><p>Internal cash movements: Moving cash from one investment account to another investment account within the investor's portfolio</p>\n</li>\n<li><p>Client reporting: Retrieving important regulatory platform documents for your investor</p>\n</li>\n</ul>\n<h5 id=\"just-getting-started\">Just getting started?</h5>\n<p>If you're new to APIs (or need a brief re-introduction), you can check out our <strong>Quickstart</strong> development guide in the next section.</p>\n","_postman_id":"eba3a801-ed6d-42b4-90b3-8af5d000e440"},{"name":"Incoming features","item":[{"name":"Update to bank account details fields","item":[],"id":"24fab4f7-bb88-4fdd-b79b-352233b9c7af","description":"<p>As part of work on bank account statuses to support an automated AML client onboarding process we added additional fields to the bank details object. These additional fields will be rolled out to all firms shortly. Once the functionality is rolled out these additional fields will appear when new bank details are added.</p>\n<p>Due to not using the bank account verification functionality bank details will receive a <code>verificationStatus</code> value of Bypassed.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<p><strong>bank details - Object</strong></p>\n<p><code>sortCode</code> - string</p>\n<hr />\n<p><code>accountNumber</code> - string</p>\n<p><strong>createdBy</strong> - Object</p>\n<p><code>userId</code> - string - The userID who entered the bank details</p>\n<hr />\n<p><code>userFirmId</code> - string - The firmId of the user who entered the bank details</p>\n<hr />\n<p><code>userType</code> - string - This will be either Machine or User</p>\n<hr />\n<p><code>userName</code> - string - This will be the first and last name of the user</p>\n<hr />\n<p><code>createdOn</code> - date - The date time bank details were entered</p>\n<hr />\n<p><code>verificationStatus</code> - string - This will have the value \"Bypassed\"</p>\n<h3 id=\"example-of-bank-details-when-bank-account-verification-is-not-enabled\">Example of bank details when bank account verification is not enabled</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T15:28:36.837Z\",\n            \"verificationStatus\": \"Bypassed\"\n        },\n\n</code></pre>\n<h2 id=\"current-bank-details-example\">Current bank details example</h2>\n<p>This is an example of how records entered before the functionality is rolled out will continue to look until the bank details are updated.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\"\n        },\n\n</code></pre>\n","_postman_id":"24fab4f7-bb88-4fdd-b79b-352233b9c7af"},{"name":"Transfers","item":[{"name":"Create a Joint GIA transfer in request","item":[{"name":"Create a transfer in request for Joint GIA","event":[{"listen":"test","script":{"id":"4bf9b5c2-aa15-4c5a-814f-2c17f8fe725b","exec":["var data = pm.response.json()","console.log(data)"],"type":"text/javascript","packages":{}}}],"id":"035ca4c4-2386-4208-99a3-cf2f0da5f251","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"accountId\": \"0352GDJ\",\n    \"transactions\": [\n        {\n            \"primaryClientId\": \"ABC123\",\n            \"firmId\": \"{{pfolioUserFirmId}}\",\n            \"accountId\": \"0352GDJ\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"021FC19\",\n            \"previousProviderRef\": \"ABC324234234\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1231231\n        }\n    ]\n}"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup/","description":"<p>This creates a transfer in request, and returns a <code>linkId</code>.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>primaryClientId</code> string</p>\n<p>If account is a joint GIA, <code>primaryClientId</code> is required, the <code>primaryClientId</code> can be either clients that are linked to the GIA, it does not need to be the client assigned to lead client.  </p>\n<p>Dispite <code>primaryClientId</code> not being the lead client, ensure to match the primary client to the provider. Must match one of the client IDs who belongs to the Joint GIA.</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction – this should be set to the <code>Product Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The sub-type of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>In Specie</code></td>\n<td>Transfer should take place in-specie</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Transfer should take place in cash</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>The movement of the assets and/or cash – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.previousProvider</code> string <strong>Required</strong></p>\n<p>The id of the ceding provider – this should be retrieved from the <code>masterparty/platform</code> endpoint</p>\n<hr />\n<p><code>transactions.previousProviderRef</code> string <strong>Required</strong></p>\n<p>The account reference number held by the ceding provider</p>\n<hr />\n<p><code>transactions.transferAccountAddress</code> array <strong>Required</strong></p>\n<p>Contains details of the client's address sent as part of the transfer instruction. This must match what the ceding provider has on their system for the transfer to proceed</p>\n<hr />\n<p><code>transactions.transferAccountAddress.flatNumber</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingName</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingNumber</code> string</p>\n<p>The number or name of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address1</code> string <strong>Required</strong></p>\n<p>The first line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address3</code> string</p>\n<p>The third line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address4</code> string</p>\n<p>The fourth line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.country</code> string <strong>Required</strong></p>\n<p>The country of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.postCode</code> string <strong>Required</strong></p>\n<p>The post code of the client's address</p>\n<hr />\n<p><code>transferValue</code> float <strong>Required</strong></p>\n<p>The estimated value of the transfer</p>\n<hr />\n<p><code>autoInvest</code> boolean</p>\n<p>Triggers automatically investing the transfer according to either a model set for the account or recurring orders, with model taking precedence if both are present. Orders get issued based on the the state of the account at the time the payment settles and a position is created. This option is only valid for cash transfers.</p>\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"cbfee86f-9920-4988-8981-de108f9a007d","name":"Create an auto-invest cash transfer in request for Joint GIA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"primaryClientId\": \"ABC123\",\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC324234234\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1231231,\n            \"autoInvest\": true\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"}],"_postman_id":"035ca4c4-2386-4208-99a3-cf2f0da5f251"}],"id":"9f5dfc20-959f-4d4d-b7fd-45ea0350dc92","description":"<p>To submit a transfer in instruction for a Joint GIA, you will need to supply a <code>primaryClientId</code> to indicate which client on the Joint GIA is the primary client with the ceding provider. Please see the example request for further information.</p>\n","_postman_id":"9f5dfc20-959f-4d4d-b7fd-45ea0350dc92"},{"name":"Transfers workbench","item":[{"name":"Retrieve Joint GIA Product Transfer","event":[{"listen":"test","script":{"id":"b73d4c3f-92bf-4a4a-98bf-9aa25e0dec35","exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.environment.set(`stockTransferTransaction${idx}`, txn.id))"],"type":"text/javascript","packages":{}}}],"id":"501ebfd9-1a1d-4174-b7d4-371573139ab5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/producttransfer/{{firmId}}","description":"<p>This command returns the product transfer object of all transfers processed on the platform.</p>\n<p>The endpoint can be filtered by different parameters to allow you to build specific workflows to monitor transfers within your application.</p>\n<p>A Joint GIA transfer can be distinguished from an individual GIA transfer by the presence of the <code>primaryClientId</code> property.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the <code>Product Transfer</code></p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>primaryClientId</code> string</p>\n<p>If account is a joint GIA, <code>primaryClientId</code> is required, the <code>primaryClientId</code> can be either clients that are linked to the GIA, it does not need to be the client assigned to lead client.</p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction - this will be set to <code>Product Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction - this will be set to <code>Cash</code> for cash transfers or <code>In Specie</code> for in-specie transfers</p>\n<hr />\n<p><code>movementType</code> string</p>\n<p>The movement of cash or assets - this will be set to <code>In</code></p>\n<hr />\n<p><code>transferAccountAddress</code> array</p>\n<p>Contains details of the address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.flatNumber</code> array</p>\n<p>The flat number of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.buildingName</code> string</p>\n<p>The building name of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.buildingNumber</code> string</p>\n<p>The building number of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.address1</code> string</p>\n<p>The first line of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.country</code> string</p>\n<p>The country of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.postCode</code> alphanumerical string</p>\n<p>The post code of the client's address held by the ceding provider</p>\n<hr />\n<p><code>previousProvider</code> alphanumerical string</p>\n<p>The unique code for the ceding provider as stored in Seccl's system</p>\n<hr />\n<p><code>previousProviderRef</code> alphanumerical string</p>\n<p>The account reference of the account held by the ceding provider</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The estimated value of the transfer as entered by the user instructing it</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The transaction status of the transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>All linked <code>Cash</code> and <code>Stock</code> transactions are complete</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Instruction created</td>\n</tr>\n<tr>\n<td><code>Placed</code></td>\n<td>Instruction successfully sent to the transfer provider – this is an automated flow and happens instantly</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Instruction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferStatus</code> string</p>\n<p>This can be used to show the progress of the transfer in your application</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>With Previous Provider</code></td>\n<td>Instruction sent to ceding provider and awaiting for them to accept</td>\n</tr>\n<tr>\n<td><code>Onboarding Assets</code></td>\n<td>Instruction accepted by ceding provider and re-registration requests sent for stock transfers - this only applies to in-specie transfers</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Transfer completed - all stock and cash settled</td>\n</tr>\n<tr>\n<td><code>Rejected</code></td>\n<td>Instruction rejected by ceding provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of transactions in the group</p>\n<hr />\n<p><code>transactionDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>statusChanges</code> array</p>\n<p>Contains details of the each time the <code>transferStatus</code> is updated</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The wrapper type of the account</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the client who has been nominated as the lead of the destination account.</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier of the client who has been nominated as the lead of the destination account.</p>\n<hr />\n<p><code>actionRequired</code> boolean</p>\n<p>Indicates whether book costs need to be added</p>\n<p>This will have a value of <code>true</code> when there are any<code>Stock Transfers In</code> (either <code>transactionSubType</code> <code>External</code> or <code>Migration</code>) linked to the Product Transfer by a linkId, that meet both of the following criteria:</p>\n<ul>\n<li><p>The <code>bookValue</code> is <code>0.00</code></p>\n</li>\n<li><p>The <code>autoSetBookValue</code> is either <code>false</code> or <code>null</code></p>\n</li>\n</ul>\n<p>In all other scenarios this will have a value of <code>false</code></p>\n<hr />\n<p><code>estimatedValue</code> float</p>\n<p>The estimated value based on the valuation provided by the ceding provider</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","producttransfer","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"clientName","value":"James"},{"disabled":true,"key":"wrapperType","value":"GIA"},{"disabled":true,"key":"transferStatus","value":"Completed"},{"disabled":true,"key":"nodeId","value":"<nodeId>"}],"variable":[]}},"response":[{"id":"bb4195d4-8364-4403-8978-42b7d95eaba5","name":"Example Joint GIA Transfer Response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/producttransfer/{{firmId}}?page=1&pageSize=5","host":["{{apiRoute}}"],"path":["portfoliotransaction","producttransfer","{{firmId}}"],"query":[{"key":"page","value":"1"},{"key":"pageSize","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"primaryClientId\": \"ABC123\",\n            \"id\": \"00003RGSB\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"022CHG3\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"test\",\n                \"buildingNumber\": \"15\",\n                \"address1\": \"Nebular House\",\n                \"address2\": \"15 Waterloo Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"SK152AU\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 5000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003RGS9\",\n            \"transactionDate\": \"2021-11-05T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-11-05T15:47:33.182Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-05T15:47:33.397Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61855215afc29c00090f9531\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-05T15:47:33.394Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Ms Testy McTesterson\",\n            \"clientId\": \"026495H\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        }\n    ],\n    \"meta\": {\n        \"count\": 1,\n        \"page\": 1,\n        \"pageSize\": 5\n    }\n}"}],"_postman_id":"501ebfd9-1a1d-4174-b7d4-371573139ab5"}],"id":"dc7bec84-991c-47ba-a9e8-26c09384b99b","_postman_id":"dc7bec84-991c-47ba-a9e8-26c09384b99b","description":""}],"id":"5e9c14e7-5b55-469b-8ac5-ff4fee366cbb","description":"<p>This section contains details on how to instruct and how to view Joint GIA transfers.</p>\n","_postman_id":"5e9c14e7-5b55-469b-8ac5-ff4fee366cbb"},{"name":"Nominated accounts for fees","item":[{"name":"Nominate account for an individual client","item":[{"name":"Set or Update list of covered accounts","id":"b96b749f-f80a-4323-8f8f-9b5332cb2966","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n    \"updateId\": \"{{updateId}}\",\n    \"nominatedForAccounts\": {\n        \"group\": [\"{{account2Id}}\", \"{{account3Id}}\"]\n    }\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7721fc92-38c4-433c-a900-c1b87cdc5170","name":"Set or Update list of covered accounts","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n    \"updateId\": \"{{updateId}}\",\n    \"nominatedForAccounts\": {\n        \"group\": [\"{{account2Id}}\", \"{{account3Id}}\"]\n    }\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Thu, 19 Mar 2026 23:00:00 GMT"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"11"},{"key":"x-amzn-requestid","value":"3212d97b-7069-457c-b411-e358ad32a932"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"afjtcGaQDoEEEHg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-amzn-trace-id","value":"Root=1-69bc7fef-6478b14076dc78452caf6f6a;Parent=00ef8c70a408429f;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"b96b749f-f80a-4323-8f8f-9b5332cb2966"},{"name":"Remove all covered accounts","id":"de8eaeb1-0ed2-487e-8e95-6546ada210d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n    \"updateId\": \"{{updateId}}\",\n    \"nominatedForAccounts\": null\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"101e7e28-9423-4c71-a835-bee406e9e41e","name":"Remove all covered accounts","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n    \"updateId\": \"{{updateId}}\",\n    \"nominatedForAccounts\": null\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Thu, 19 Mar 2026 23:01:15 GMT"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"11"},{"key":"x-amzn-requestid","value":"978555ce-8e45-499f-8278-b9801361f617"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"afj5IHpSDoEEUMQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-amzn-trace-id","value":"Root=1-69bc803a-65b3bbe57cb1932e64e238a2;Parent=7c793959a684cc91;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"de8eaeb1-0ed2-487e-8e95-6546ada210d9"}],"id":"52dba193-ecc2-4238-bfbe-3f9981bbb311","description":"<h2 id=\"nominating-accounts-for-fees-within-a-client\">Nominating accounts for fees within a client</h2>\n<p>Clients outside of Client Fee Groups can nominate their own accounts to pay for their other accounts, but these nominations do not work cross-client (you would have to use the fee group functionality for that).</p>\n","_postman_id":"52dba193-ecc2-4238-bfbe-3f9981bbb311"},{"name":"Nominate account for a fee group","item":[{"name":"Set or Update account nominations","id":"3fba3566-58a2-4958-98d8-c97c4b6cf126","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"nominatedAccounts\": [\n        {\n            \"accountId\": \"{{accountId}}\",\n            \"feeCoveredAccounts\": [\"{{account2Id}}\"]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/portfoliogroup/{{pfolioUserFirmId}}/{{portfolioGroupId}}","urlObject":{"path":["portfoliogroup","{{pfolioUserFirmId}}","{{portfolioGroupId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c55b36e4-96f9-4aed-b5ae-8d89af0270ac","name":"Set or Update account nominations","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"nominatedAccounts\": [\n        {\n            \"accountId\": \"{{accountId}}\",\n            \"feeCoveredAccounts\": [\"{{account2Id}}\"]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/portfoliogroup/{{pfolioUserFirmId}}/{{portfolioGroupId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Fri, 20 Mar 2026 07:24:30 GMT"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"11"},{"key":"x-amzn-requestid","value":"6dae54ec-5e93-4be7-b18e-6234c280ef74"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"agtnUEuojoEEEHQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-amzn-trace-id","value":"Root=1-69bcf62e-7a788210426c6a4f3e0bacbf;Parent=31bf757cd46cb0ee;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"3fba3566-58a2-4958-98d8-c97c4b6cf126"},{"name":"Clear nominations","id":"a708f077-42a4-4137-99c3-c671167b28a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"nominatedAccounts\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/portfoliogroup/{{pfolioUserFirmId}}/{{portfolioGroupId}}","urlObject":{"path":["portfoliogroup","{{pfolioUserFirmId}}","{{portfolioGroupId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"49d86dae-4306-4401-8d69-6352ca572b85","name":"Clear nominations","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"nominatedAccounts\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/portfoliogroup/{{pfolioUserFirmId}}/{{portfolioGroupId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":":status","value":200},{"key":"date","value":"Fri, 20 Mar 2026 07:31:10 GMT"},{"key":"content-type","value":"application/json; charset=utf-8"},{"key":"content-length","value":"11"},{"key":"x-amzn-requestid","value":"96720e7f-997f-4d01-9cac-56c97ebed64e"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"agulyEAAjoEErmw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"x-amzn-trace-id","value":"Root=1-69bcf7be-642e764460f3cef156c86914;Parent=2cf486a1f3da9bdd;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"a708f077-42a4-4137-99c3-c671167b28a0"}],"id":"81aa54b6-b83f-43c7-a047-02c49dd2f079","description":"<p>Clients inside of client fee groups must be managed by updating the nominations across the group (even if nominating accounts for the same client).</p>\n<p>While you can still see nominations at the account level when retrieving the account object, you can also see nominations across the group by retrieving the group and inspecting the <code>nominatedAccounts</code> array.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"21JB7\",\n        \"name\": \"Nominated Accounts PFG\",\n        \"nodeId\": [\"0\"],\n        \"groupIntent\": \"Client Fee Group\",\n        \"intentDetails\": {\n            \"platformFee\": true,\n            \"status\": \"Active\"\n        },\n        \"updateId\": \"69bcf62eb0ef0b986ff241b1\",\n        \"nominatedAccounts\": [\n            {\n                \"accountId\": \"035HD21\",\n                \"accountName\": \"Client Nominated GIA\",\n                \"clientId\": \"03BHB35\",\n                \"feeCoveredAccounts\": [\n                    {\n                        \"accountId\": \"035HD22\",\n                        \"accountName\": \"Client Fee-Covered ISA\",\n                        \"clientId\": \"03BHB35\"\n                    }\n                ]\n            }\n        ]\n    }\n}\n\n</code></pre>\n<p>You have to PATCH the nomination configuration for the group in full for any updates. To remove specific nominations, you can remove them from the array and PATCH the group.</p>\n","_postman_id":"81aa54b6-b83f-43c7-a047-02c49dd2f079"}],"id":"1aa0eb1a-c72b-401a-a567-5580bcfd10ed","description":"<h1 id=\"nominated-accounts-for-fees\">Nominated accounts for fees</h1>\n<p>This feature lets you nominate an account to pay the fees for the other accounts (known as the \"covered\" accounts). Each account's fees are calculated in isolation but if you choose to nominate an account to pay the fees for other accounts, they will be summed up and submitted as a single transaction with all the fees combined. Nominations work across accounts for an individual client or a for multiple clients who are part of the same fee group.</p>\n<p>The following account types are supported as nominated accounts:</p>\n<ul>\n<li><p><strong>ISA:</strong> Can pay fees for any account</p>\n</li>\n<li><p><strong>GIA (including Joint GIA):</strong> Can pay fees for any account</p>\n</li>\n<li><p><strong>SIPP:</strong> Can <em>only</em> pay fees for other SIPPs owned by the <em>same client</em></p>\n</li>\n</ul>\n<p>Any other account type cannot pay the fees for accounts, but can have its fees covered by one of the above unless noted.</p>\n<h2 id=\"account-response\">Account response</h2>\n<p>A nominated account will display the group of account ids it is nominated to cover in the <code>nominatedForAccounts</code> object:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"035HD1D\",\n        \"accountType\": \"Wrapper\",\n        \"status\": \"Active\",\n        \"name\": \"Nominated GIA\",\n        \"nodeId\": \"0\",\n        \"clientId\": \"03BHB33\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"clientProductId\": \"69bc7ee0b33b66489a87cce1\"\n        },\n        \"nominatedForAccounts\": {\n            \"group\": [\n                \"035HD1F\",\n                \"035HD1G\"\n            ]\n        }\n    }\n}\n\n</code></pre>\n<p>An account which has its fees covered will have a simple <code>feeCoveringAccount</code> property pointing to the nominated account:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"035HD1F\",\n        \"accountType\": \"Wrapper\",\n        \"status\": \"Active\",\n        \"name\": \"Covered GIA\",\n        \"nodeId\": \"0\",\n        \"clientId\": \"03BHB33\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"clientProductId\": \"69bc7ee0b33b66489a87cce1\"\n        },\n        \"feeCoveringAccount\": \"035HD1D\",\n    }\n}\n\n</code></pre>\n","_postman_id":"1aa0eb1a-c72b-401a-a567-5580bcfd10ed"}],"id":"0543232f-8def-413a-89aa-dfb20ec9cc0a","description":"<p>Area for Seccl incoming features (not yet in production) to give visibility for those firms building against our API. If you wish to get the described functionality in your staging environment please reach out to your Seccl account manager.</p>\n","_postman_id":"0543232f-8def-413a-89aa-dfb20ec9cc0a"},{"name":"Quickstart guide","item":[{"name":"Generate an access token [OAuth]","id":"daa59f52-9fc8-4b7c-b0de-9d7b4caa9f86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"audience","value":"{{apiRoute}}","type":"text"}]},"url":"{{authRoute}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{authRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"daa59f52-9fc8-4b7c-b0de-9d7b4caa9f86"},{"name":"Generate an access token [DEPRECATED]","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"apiToken\", data.data.token);",""],"type":"text/javascript","id":"fdadaafe-8a71-4fa0-9138-d1d5288496d7"}}],"id":"9a32d712-3226-432d-828d-089fc50fbb84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"firmId\": \"{{firmId}}\", \"id\": \"{{userId}}\", \"password\": \"{{userPassword}}\" }"},"url":"{{apiRoute}}/authenticate","description":"<p>Firstly, you will need an access token as a machine user. This will allow you to log into the Seccl sandbox environment.</p>\n","urlObject":{"path":["authenticate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9a32d712-3226-432d-828d-089fc50fbb84"},{"name":"Create a client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","id":"02cd24df-5e0e-4eaa-9e0e-5e3c3cf31a63"}},{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(24, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"e8b7591b-bfa3-45d3-9e10-2dcd6a3153ed"}}],"id":"6fe7c300-297c-4453-bd39-f7918d2ae90e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Your client, Wilma Flintstone is excited to begin her investment journey. She would like to use your app to help build up a deposit for a new cave in the near future.</p>\n<p>In order for you to create a client record for Wilma, she will need to add in all her details - including important regulatory information such as her nationality, so that she is eligible to use your Seccl-powered platform to trade. Originally from Bedrock, Wilma now is a British citizen living in the UK.</p>\n<p>The response should provide you with a <code>clientId</code>. This is a unique identifier for your client so keep this handy!</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6fe7c300-297c-4453-bd39-f7918d2ae90e"},{"name":"Add an asset","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"62a4413d-92bf-447b-9a86-5d2725359c71"}},{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"672a9b24-172c-48a5-b40b-110c55dc597b"}}],"id":"1ebacf12-ff61-4512-9d0d-857aaed7e43e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"275F1\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/asset","description":"<p>Now let's add some assets to your platform so that Wilma can start investing. She's read about the benefits of compound interest and is excited to start investing in her future home purchase. She would like to invest in a fund.</p>\n<p>To add an asset to your asset universe, send a <code>POST</code> request to the <code>/asset</code> endpoint. This makes the asset available to trade.</p>\n","urlObject":{"path":["asset"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ebacf12-ff61-4512-9d0d-857aaed7e43e"},{"name":"Create an investment account","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"d0c79c49-2b42-4807-83fb-51b0c7791911"}}],"id":"f51e8ffe-ede7-44df-b8d8-ac352c577fee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Dream Cave ISA\",\n    \"status\": \"Active\",\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\"\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>In order to invest her money, Wilma will need to create an investment account, such as an Individual Savings Account (ISA).</p>\n<p>This can be created through a <code>POST</code> request to the <code>/account</code> endpoint.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f51e8ffe-ede7-44df-b8d8-ac352c577fee"},{"name":"Create a payment in and order expectation","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"linkId\", data.data.id)"],"type":"text/javascript","id":"830836e8-95df-4b7a-82fd-9b8bd35e2cff"}}],"id":"dfaa5403-db42-4bc0-b937-117bfff7129a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n        \"firmId\": \"{{firmId}}\",\n        \"accountId\": \"{{accountId}}\",\n        \"transactions\": [\n          {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 10000,\n            \"method\": \"Bank Transfer\"\n          },\n          {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"currency\": \"GBP\",\n            \"amount\": 9800,\n            \"assetId\": \"275F1\"\n          }\n        ]\n      }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Great! Now Wilma is ready to add some cash into her account and invest.</p>\n<p>By sending a <strong>payment in and order</strong> <code>POST</code> request, Wilma has agreed to send £10,000 from her bank account to her Seccl ISA, which then automatically creates an order expectation for the fund. Once the fund order is executed (usually after two days), she will then own £9,800 worth of the fund, as the remainder has been allocated to cover any potential fees over the years.</p>\n<p>This will provide you with a unique <code>linkId</code> for this grouped transaction.</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dfaa5403-db42-4bc0-b937-117bfff7129a"},{"name":"Retrieve pending payment","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"paymentId\", data.data.id)"],"type":"text/javascript","id":"4aa18566-b64e-4756-a279-28469a15f322"}}],"id":"a370f2d0-eb9e-4f70-8cb6-83863fec6b38","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}&transactionType=Payment","description":"<p>To mock a completed transaction - which would ordinarily be triggered by real life events - you can retrieve and settle a <em>payment in</em> and the linked order .</p>\n<p>Firstly, you will need to retrieve this <code>paymentId</code> and complete it using a <code>PUT</code> request.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{linkId}}"},{"key":"transactionType","value":"Payment"}],"variable":[]}},"response":[],"_postman_id":"a370f2d0-eb9e-4f70-8cb6-83863fec6b38"},{"name":"Complete payment","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"c53b6f68-d593-4093-b0b0-9ac366bd1bac"}}],"id":"739b0557-d2d3-4385-8ca7-7215a18f1049","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"type\" : \"Action\",\n\t\"firmId\" : \"{{firmId}}\",\n\t\"transactionAction\" : \"Complete\",\n\t\"actionReason\" : \"Payment received\",\n\t\"completedDate\" : \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/00006B21S","description":"<p>This mocks a completed payment in or deposit.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","00006B21S"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"739b0557-d2d3-4385-8ca7-7215a18f1049"},{"name":"Retrieve pending orders","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.globals.set(`orderTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"6183c452-af82-4f2a-ae11-b46e74c91135"}}],"id":"40160064-dabf-4fa5-bf67-8dac15e2ffbd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}&transactionType=Order","description":"<p>Next, you will need to retrieve the <code>orderId</code> and manually settle it using this <code>PUT</code> request.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{linkId}}"},{"key":"transactionType","value":"Order"}],"variable":[]}},"response":[],"_postman_id":"40160064-dabf-4fa5-bf67-8dac15e2ffbd"},{"name":"Complete order","event":[{"listen":"prerequest","script":{"exec":[""],"type":"text/javascript","id":"44d928f4-3b34-419f-be8e-d221a29fb332"}}],"id":"315ebc82-0850-4d9a-905a-d424cb4ece3f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 2.27,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 2.27,\n        \"executedQuantity\": 1\n    },\n    \"quantity\": 1,\n    \"amount\": 2.27,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{orderTransaction0}}","description":"<p>This mocks a completed order.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{orderTransaction0}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"315ebc82-0850-4d9a-905a-d424cb4ece3f"},{"name":"Create a fee transaction","id":"d8448ec5-1631-4cc3-8373-0ba95ab1c289","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n          \"firmId\": \"{{firmId}}\",\n          \"accountId\": \"{{accountId}}\",\n          \"transactionType\": \"Cash\",\n          \"transactionSubType\": \"Platform Fee\",\n          \"movementType\": \"Out\",\n          \"currency\": \"GBP\",\n          \"amount\": 3.40\n      }"},"url":"{{apiRoute}}/portfoliotransaction","description":"<p>Wilma has been on the platform for over a month now, and it is time to take a platform fee from her account. By creating a fee transaction, you will be able to charge her with the amount agreed when she first created her account.</p>\n","urlObject":{"path":["portfoliotransaction"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d8448ec5-1631-4cc3-8373-0ba95ab1c289"},{"name":"Retrieve account summary","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"positionId\", data.data.positions.id)"],"type":"text/javascript","id":"a2f2918e-06ea-47dd-89df-d656ca40fc6c"}}],"id":"a114b057-e248-415d-93aa-b6c5ba98ac4c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/{{firmId}}/{{accountId}}","description":"<p>Wilma is keen to see a valuation of her account as well as some of the past transactions she has made. She can do this by viewing her account summary - which is facilitated by a <code>GET</code> request to the <code>/account/summary</code> endpoint.</p>\n<p>And that's a wrap for now! This is just a snapshot of what's possible with our API. Check out the links below for more ways to invest:</p>\n<p>[to add links to investment strategies, accounts and payment methods]</p>\n","urlObject":{"path":["account","summary","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a114b057-e248-415d-93aa-b6c5ba98ac4c"}],"id":"844ccf81-33dc-4fa3-8b7c-1ce0f2d7a75c","description":"<p>Not sure where to start? Don't worry - our comprehensive quickstart guide will help you get up to speed with the Seccl API and set up an investment journey.</p>\n<p>We'll start with onboarding your first client and take you all the way through to making an investment.</p>\n<p>In just a few API requests, you'll be able to:</p>\n<ul>\n<li>Create and onboard clients</li>\n<li>Add a fund into your asset universe</li>\n<li>Create an investment account for your client</li>\n<li>Instruct a payment in and order expectation</li>\n<li>Mock completed transactions</li>\n<li>View client investment activity</li>\n</ul>\n<p>Let's get started!</p>\n<hr />\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":["const moment = require('moment');","pm.globals.set(\"today\", moment().format(\"YYYY-MM-DD\"));"],"id":"d6bfa9d7-6456-4e17-b4df-259407b45b70"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"36761786-777c-4612-adcc-1be455af4dac"}}],"_postman_id":"844ccf81-33dc-4fa3-8b7c-1ce0f2d7a75c"},{"name":"Platform management","item":[{"name":"Nodes","item":[{"name":"Retrieve firm nodes","id":"b4c9792d-8893-4075-a823-d2bcf87395c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/firm/node/list/{{firmId}}","description":"<p>This request retrieves all node records from your platform.</p>\n<p>The response only returns nodes that sit below the individual user requesting them. For example, if the user is assigned to <code>nodeId</code> 1, the request returns details of <code>nodeId</code> 1 and any nodes below it.</p>\n","urlObject":{"path":["firm","node","list","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"description":{"content":"<p>The parent node ID</p>\n","type":"text/plain"},"key":"parentNodeId","value":"<parentNodeId>"},{"disabled":true,"description":{"content":"<p>The node type </p>\n","type":"text/plain"},"key":"nodeType","value":"<nodeType>"},{"disabled":true,"key":"name","value":"<nodeName>"}],"variable":[]}},"response":[{"id":"9bc7ead0-1907-4601-b9a2-da5614468f39","name":"Example node structure","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/firm/node/list/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Default\",\n            \"name\": \"SECCI Invest Ltd\"\n        },\n        {\n            \"id\": \"1\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"SECCI Invest - clients\",\n            \"parentNodeId\": \"0\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"},{"id":"b518a98d-938e-478a-83fb-ad1a80b7bb23","name":"Example node structure 2","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/firm/node/list/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Dan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"13\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - James \",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"4\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Mart\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"7\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Jan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"6\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Peter\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"8\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Fran\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"5\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Steve\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"9\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Annabel\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"1\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Firm\",\n            \"name\": \"Active Advice Ltd\",\n            \"parentNodeId\": \"0\"\n        },\n        {\n            \"id\": \"0\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Default\",\n            \"name\": \"Seccl Investments Ltd\"\n        },\n        {\n            \"id\": \"10\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Neil \",\n            \"parentNodeId\": \"2\"\n        },\n        {\n            \"id\": \"11\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Simon\",\n            \"parentNodeId\": \"2\"\n        },\n        {\n            \"id\": \"12\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Veronica \",\n            \"parentNodeId\": \"2\"\n        },\n        {\n            \"id\": \"2\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Firm\",\n            \"name\": \"My Financial Planning Ltd\",\n            \"parentNodeId\": \"0\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 14\n    }\n}"},{"id":"d121dbcd-c92b-49eb-b249-2238feda9f41","name":"Retrieve nodes by nodeType","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/firm/node/list/{{firmId}}?nodeType=Client Bank","host":["{{apiRoute}}"],"path":["firm","node","list","{{firmId}}"],"query":[{"key":"nodeType","value":"Client Bank"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Dan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"13\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - James \",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"4\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Mart\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"7\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Jan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"6\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Peter\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"8\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Fran\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"5\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Steve\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"9\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Annabel\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"10\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Neil \",\n            \"parentNodeId\": \"2\"\n        },\n        {\n            \"id\": \"11\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Simon\",\n            \"parentNodeId\": \"2\"\n        },\n        {\n            \"id\": \"12\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"My Financial Planning - Veronica \",\n            \"parentNodeId\": \"2\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 14\n    }\n}"},{"id":"f9928592-471f-47ed-9b31-19ba34672aea","name":"Retrieve nodes by parent node ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/firm/node/list/{{firmId}}?parentNodeId=1","host":["{{apiRoute}}"],"path":["firm","node","list","{{firmId}}"],"query":[{"key":"parentNodeId","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"3\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Dan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"13\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - James \",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"4\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Mart\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"7\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Jan\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"6\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Peter\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"8\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Fran\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"5\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Steve\",\n            \"parentNodeId\": \"1\"\n        },\n        {\n            \"id\": \"9\",\n            \"firmId\": \"SECCI\",\n            \"nodeType\": \"Client Bank\",\n            \"name\": \"Active Advice - Annabel\",\n            \"parentNodeId\": \"1\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 8\n    }\n}"}],"_postman_id":"b4c9792d-8893-4075-a823-d2bcf87395c2"},{"name":"Retrieve firm node trading charges by id","id":"4f47ff54-79c4-4593-82d2-fbe0e1f0da23","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/node/tradingcharge/{{firmId}}/{{nodeId}}","description":"<p>This request retrieves trading charge for a specific node. It will first look for trading charges on this specific node, and if they dont exist, will traverse the node tree finding the first trading charges on the nearest parent.</p>\n","urlObject":{"path":["node","tradingcharge","{{firmId}}","{{nodeId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"75d4d098-2b88-4ea0-b28d-bedcb67abc5d","name":"Example charge structure","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/node/tradingcharge/{{firmId}}/{{nodeId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"[\n    {\n        \"instrumentTypes\": [\n            \"Equity\"\n        ],\n        \"tiers\": [\n            {\n                \"rate\": 0.0004\n            }\n        ],\n        \"minimumAmount\": 5\n    }\n]"}],"_postman_id":"4f47ff54-79c4-4593-82d2-fbe0e1f0da23"}],"id":"0a13714b-d3f4-4467-bd0d-4e83a34e098e","description":"<p>Nodes are used to separate data and functionality within a platform, such as:</p>\n<p>* Setting separate charging structures<br />* Paying out platform, adviser and discretionary manager fees to individual bank accounts<br />* Using different logos and regulatory footers on platform documents<br />* Retrieving management information on business segments</p>\n<p>When you create a client, you will need to specify the relevant node. This means that the client record is attached to that node, and all investment accounts and transactions attributed to that client are also attached to that node.</p>\n<p>When you create a user, you'll also need to specify the relevant node. The user then has access to the data and functionality of clients attached to that node, and those attached to nodes below.</p>\n<h4 id=\"creating-nodes\"><strong>Creating nodes</strong></h4>\n<p>We will create and update nodes for your platform.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/firm/node/list\n\n</code></pre>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"3e90fd93-6a0b-4bce-a20f-f837253f67b4"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"5d9f00dc-5a93-4b5b-b6b9-76a0d537dc78"}}],"_postman_id":"0a13714b-d3f4-4467-bd0d-4e83a34e098e"},{"name":"Platform users","item":[{"name":"Platform user management","item":[{"name":"Create a firm user","event":[{"listen":"prerequest","script":{"exec":["","pm.environment.set(\"userEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')"],"type":"text/javascript","id":"fc1ee696-6205-4150-9330-add43aec77a3"}},{"listen":"test","script":{"exec":["let json = pm.response.json()","","pm.environment.set('userId', json.data.id)"],"type":"text/javascript","id":"73932c1b-bcf1-4a29-bcb1-9efaae195cb3"}}],"id":"91ba10fc-9a17-475f-b955-c8d3f8aa7a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flinstone\",\n    \"email\": \"wilma.flinstone@seccl.tech\",\n    \"userType\": \"User\",\n    \"nodeId\": [\n        \"0\"\n    ]\n}"},"url":"{{apiRoute}}/user","description":"<p>This flow creates an individual platform user. The request returns the <code>userId</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong></p>\n<p>The unique identifier of the node that the user should be attached to</p>\n<hr />\n<p><code>userType</code> enum value <strong>Required</strong></p>\n<p>The type of user:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Machine</code></td>\n<td>The machine login used in your application. An API token generated with this <code>userType</code> will timeout after two hours of inactivity</td>\n</tr>\n<tr>\n<td><code>User</code></td>\n<td>The user login used to access our off-the-shelf user interfaces. An API token generated with this <code>userType</code> will timeout after ten minutes of inactivity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The first name of the user</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong></p>\n<p>The email address of the user</p>\n<p><strong>Note: this needs to be unique to other users and clients on the platform</strong></p>\n<hr />\n<p><code>restrictChildNodes</code> boolean <strong>Required</strong></p>\n<p>This indicates whether a user can view and access the data of nodes below it. The default is <code>false</code>. It's typically used where there is a third party DFM or investment manager operating portfolios on the platform</p>\n<hr />\n","urlObject":{"path":["user"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"5e205b1f-23c6-478e-a41d-ac1567666b07","name":"Create a firm user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flinstone\",\n    \"email\": \"wilma.flinstone@seccl.tech\",\n    \"userType\": \"User\",\n    \"nodeId\": [\n        \"0\"\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/user"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 11:49:36 GMT"},{"key":"x-amzn-RequestId","value":"03873847-a646-435c-8c6a-664dba48a1ad"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VkHIiFZyjoEFgVg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-NAs8KRCsCzrOkMWx3q3/Jn/QDYQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d7ebd0-77fc9ae74a40597831a54fa3;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 68126347056de2d05be3dd362ccba986.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"LgQPBAqU_-omonfr4dTCbqHhf691s3p88WEqRjSyQc0TY_EpAxiV9w=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"029B819\"\n    }\n}"}],"_postman_id":"91ba10fc-9a17-475f-b955-c8d3f8aa7a4a"},{"name":"Retrieve a firm user","id":"84330ef9-6999-490b-b6a8-0a2303c172ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/user/{{firmId}}/{{userId}}","description":"<p>This flow will allow you to retrieve a specific user record so you can check or update it. It returns the user object.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong></p>\n<p>The unique identifier of the node that the user should be attached to</p>\n<hr />\n<p><code>userType</code> enum value <strong>Required</strong></p>\n<p>The type of user:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Machine</code></td>\n<td>The machine login used in your application. An API token generated with this <code>userType</code> will timeout after two hours of inactivity</td>\n</tr>\n<tr>\n<td><code>User</code></td>\n<td>The user login used to access our off-the-shelf user interfaces. An API token generated with this <code>userType</code> will timeout after ten minutes of inactivity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The first name of the user</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong></p>\n<p>The email address of the user. Note: this needs to be unique to other users and clients on the platform</p>\n<hr />\n<p><code>restrictChildNodes</code> boolean <strong>Required</strong></p>\n<p>This indicates whether a user can view and access the data of nodes below it. The default is <code>false</code>. It's typically used where there is a third party DFM or investment manager operating portfolios on the platform</p>\n","urlObject":{"path":["user","{{firmId}}","{{userId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7b866470-5cf3-428b-a96e-5e3725baee93","name":"Retrieve firm user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/user/{{firmId}}/{{userId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"399"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 11:50:02 GMT"},{"key":"x-amzn-RequestId","value":"759a8856-6985-48a2-9f2f-d482464d3d6b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"399"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VkHMnH62joEFaoQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"18f-fyj0CNicn+IRQWIWWIyroIUm/bE\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d7ebea-32f24d671a7542233a544777;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 68126347056de2d05be3dd362ccba986.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Bq2cLp8YoMVDFfWoJqzYpk8qpRW0CUMFYKkQ-K9ez_CjEy-4p4zWPg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"029B819\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"userType\": \"User\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flinstone\",\n        \"email\": \"wilma.flinstone@seccl.tech\",\n        \"nodeName\": [\n            \"Seccl Invest\"\n        ],\n        \"_surname\": \"FLINSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-07-20T11:49:36.575Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"62d7ebd0278ec292d5d98cba\"\n    }\n}"}],"_postman_id":"84330ef9-6999-490b-b6a8-0a2303c172ec"},{"name":"List firm users","id":"50396f26-7603-45e9-9f25-2d1d1add847e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/user/{{firmId}}","description":"<p>This flow retrieves all user records, and returns all user objects.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong></p>\n<p>The unique identifier of the node that the user should be attached to</p>\n<hr />\n<p><code>userType</code> enum value <strong>Required</strong></p>\n<p>The type of user:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Machine</code></td>\n<td>The machine login used in your application. An API token generated with this <code>userType</code> will timeout after two hours of inactivity</td>\n</tr>\n<tr>\n<td><code>User</code></td>\n<td>The user login used to access our off-the-shelf user interfaces. An API token generated with this <code>userType</code> will timeout after ten minutes of inactivity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The first name of the user</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong></p>\n<p>The email address of the user. Note: this needs to be unique to other users and clients on the platform</p>\n<hr />\n<p><code>restrictChildNodes</code> boolean <strong>Required</strong></p>\n<p>This indicates whether a user can view and access the data of nodes below it. The default is <code>false</code>. It's typically used where there is a third party DFM or investment manager operating portfolios on the platform</p>\n","urlObject":{"path":["user","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"50396f26-7603-45e9-9f25-2d1d1add847e"},{"name":"Update firm user","id":"ecfe3d2e-3d10-4025-9b02-0a3c4781df03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"029B819\",\r\n    \"firmId\": \"SECCI\",\r\n    \"nodeId\": [\r\n        \"0\"\r\n    ],\r\n    \"userType\": \"User\",\r\n    \"firstName\": \"Wilma\",\r\n    \"surname\": \"Flinstone\",\r\n    \"email\": \"wilma.flinstone@seccl.tech\",\r\n    \"updateId\": \"62d7ebd0278ec292d5d98cba\",\r\n    \"restrictChildNodes\": true\r\n}"},"url":"{{apiRoute}}/user/{{firmId}}/{{userId}}","description":"<p>This flow allows you to update the record of a user, and returns a successful array.</p>\n<p>You can retrieve the latest <code>updateId</code> by performing a <code>GET</code> request on the relevant to be updated. Multiple fields can be updated at once. If the field to be updated is an array, the whole array will be overwritten.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm.</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong></p>\n<p>The unique identifier of the node that the user should be attached to</p>\n<hr />\n<p><code>userType</code> enum value <strong>Required</strong></p>\n<p>The type of user:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Machine</code></td>\n<td>The machine login used in your application. An API token generated with this <code>userType</code> will timeout after two hours of inactivity</td>\n</tr>\n<tr>\n<td><code>User</code></td>\n<td>The user login used to access our off-the-shelf user interfaces. An API token generated with this <code>userType</code> will timeout after ten minutes of inactivity.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The first name of the user</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong></p>\n<p>The email address of the user. Note: this needs to be unique to other users and clients on the platform</p>\n<hr />\n<p><code>restrictChildNodes</code> boolean <strong>Required</strong></p>\n<p>Indicates whether a user can view and access the data of nodes below it. The default is <code>false</code>. It's typically used where there is a third party DFM or investment manager operating portfolios on the platform.</p>\n<p><strong>Please note:</strong> <code>restrictChildNodes</code> flag is not supported for users setup on node 0</p>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n","urlObject":{"path":["user","{{firmId}}","{{userId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecfe3d2e-3d10-4025-9b02-0a3c4781df03"}],"id":"8744c057-5bfe-4aad-892f-5f783855231c","_postman_id":"8744c057-5bfe-4aad-892f-5f783855231c","description":""},{"name":"Create a decision maker","item":[{"name":"List nationalities","id":"f95ea62b-46bf-44d7-a15f-aa6240a9b331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{apiRoute}}/static/nationality","description":"<p>Retrieves a list of nationalities and the relevant identifiers. This is important to obtain National Identifier information needed in the <code>investmentDecsion</code> array.</p>\n<p>The <code>static</code> nationality endpoint provides a list of nationalities, the ISO country codes and the national identifier that the FCA requires for reporting when trading ETIs</p>\n<h5 id=\"understanding-the-priority\">Understanding the priority</h5>\n<p>This is logic used to determine which identifier is appropriate to report on any transactions under your client's name. Priority is scored and the relevant identifiers are listed in this order under the array.</p>\n<p>The rules for the FCA-preferred nationality are:</p>\n<ol>\n<li>An EEA (European Economic Area) nationality takes priority over a non-EEA nationality</li>\n<li>The nationality that comes first when the list of the client's nationalities is sorted alphabetically by the country code takes priority</li>\n<li>CONCAT is, in most cases, a last resort identifier that if required will be generated by Seccl in accordance with MiFIR/MiFID guidelines</li>\n</ol>\n<p><strong>Please note: CONCAT – a combination of the client's date of birth, first name, and surname – may only be used if the Priority 1 identifier shown in the nationalities checker is not applicable to the client</strong></p>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>id</code> string<br />The unique two-letter identifier for the nationality. This is case sensitive.=</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>code</code> string<br />A two-letter country code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the country</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adjective</code> string<br />The country descriptor</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>inEEA</code> boolean<br />This confirms whether or not a country is in the European Economic Area (EEA). Although the UK is not in the EU anymore, it is still reported as <code>inEEA: true</code> as per MiFIR/MiFID II rules</p>\n<hr />\n<p><code>identifiers</code> array<br />An array which captures all forms of national identifiers for the chosen country</p>\n<hr />\n<p><code>identifiers.name</code> string<br />The name of the national identifier. This will be National Insurance Number for British nationals and National Passport Number for all other nationalities</p>\n<hr />\n<p><code>identifiers.regex</code> string<br />A regular expression denoting validation for the national identifier</p>\n<hr />\n<p><code>identifiers.localeName</code> string<br />The name of the national identifier</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>identifiers.example</code> string<br />An example of the alphanumeric national identifier format</p>\n<hr />\n<p><code>identifiers.priority</code> integer</p>\n<p>The national identifier priority score</p>\n<hr />\n","urlObject":{"path":["static","nationality"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3808448c-d9f2-4360-a942-1acde6412cc7","name":"Retrieve list of nationalities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{apiRoute}}/static/nationality"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"AF\",\n            \"code\": \"AF\",\n            \"name\": \"Afghanistan\",\n            \"adjective\": \"Afghan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AX\",\n            \"code\": \"AX\",\n            \"name\": \"Åland Islands\",\n            \"adjective\": \"Ålandic\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AL\",\n            \"code\": \"AL\",\n            \"name\": \"Albania\",\n            \"adjective\": \"Albanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DZ\",\n            \"code\": \"DZ\",\n            \"name\": \"Algeria\",\n            \"adjective\": \"Algerian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AS\",\n            \"code\": \"AS\",\n            \"name\": \"American Samoa\",\n            \"adjective\": \"American Samoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AD\",\n            \"code\": \"AD\",\n            \"name\": \"Andorra\",\n            \"adjective\": \"Andorran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AO\",\n            \"code\": \"AO\",\n            \"name\": \"Angola\",\n            \"adjective\": \"Angolan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AI\",\n            \"code\": \"AI\",\n            \"name\": \"Anguilla\",\n            \"adjective\": \"Anguillan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AQ\",\n            \"code\": \"AQ\",\n            \"name\": \"Antarctica\",\n            \"adjective\": \"Antarctican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AG\",\n            \"code\": \"AG\",\n            \"name\": \"Antigua and Barbuda\",\n            \"adjective\": \"Antiguan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AR\",\n            \"code\": \"AR\",\n            \"name\": \"Argentina\",\n            \"adjective\": \"Argentinian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AM\",\n            \"code\": \"AM\",\n            \"name\": \"Armenia\",\n            \"adjective\": \"Armenian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AW\",\n            \"code\": \"AW\",\n            \"name\": \"Aruba\",\n            \"adjective\": \"Aruban\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AU\",\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"adjective\": \"Australian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AT\",\n            \"code\": \"AT\",\n            \"name\": \"Austria\",\n            \"adjective\": \"Austrian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"AZ\",\n            \"code\": \"AZ\",\n            \"name\": \"Azerbaijan\",\n            \"adjective\": \"Azerbaijani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BS\",\n            \"code\": \"BS\",\n            \"name\": \"Bahamas\",\n            \"adjective\": \"Bahamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BH\",\n            \"code\": \"BH\",\n            \"name\": \"Bahrain\",\n            \"adjective\": \"Bahraini\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BD\",\n            \"code\": \"BD\",\n            \"name\": \"Bangladesh\",\n            \"adjective\": \"Bangladeshi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BB\",\n            \"code\": \"BB\",\n            \"name\": \"Barbados\",\n            \"adjective\": \"Barbadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BY\",\n            \"code\": \"BY\",\n            \"name\": \"Belarus\",\n            \"adjective\": \"Belarusian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BE\",\n            \"code\": \"BE\",\n            \"name\": \"Belgium\",\n            \"adjective\": \"Belgian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Belgian National Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Numéro de registre national\",\n                    \"example\": \"99123112345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BZ\",\n            \"code\": \"BZ\",\n            \"name\": \"Belize\",\n            \"adjective\": \"Belizean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BJ\",\n            \"code\": \"BJ\",\n            \"name\": \"Benin\",\n            \"adjective\": \"Beninese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BM\",\n            \"code\": \"BM\",\n            \"name\": \"Bermuda\",\n            \"adjective\": \"Bermudan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BT\",\n            \"code\": \"BT\",\n            \"name\": \"Bhutan\",\n            \"adjective\": \"Bhutanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BO\",\n            \"code\": \"BO\",\n            \"name\": \"Bolivia\",\n            \"adjective\": \"Bolivian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BQ\",\n            \"code\": \"BQ\",\n            \"name\": \"Bonaire, Sint Eustatius and Saba\",\n            \"adjective\": \"Bonaire Dutch\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BA\",\n            \"code\": \"BA\",\n            \"name\": \"Bosnia and Herzegovina\",\n            \"adjective\": \"Bosnian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BW\",\n            \"code\": \"BW\",\n            \"name\": \"Botswana\",\n            \"adjective\": \"Botswanan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BV\",\n            \"code\": \"BV\",\n            \"name\": \"Bouvet Island\",\n            \"adjective\": \"Bouvet Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BR\",\n            \"code\": \"BR\",\n            \"name\": \"Brazil\",\n            \"adjective\": \"Brazilian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IO\",\n            \"code\": \"IO\",\n            \"name\": \"British Indian Ocean Territory\",\n            \"adjective\": \"British Indian Ocean Territory\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BN\",\n            \"code\": \"BN\",\n            \"name\": \"Brunei Darussalam\",\n            \"adjective\": \"Bruneian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BG\",\n            \"code\": \"BG\",\n            \"name\": \"Bulgaria\",\n            \"adjective\": \"Bulgarian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Uniform Civil Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Единен граждански номер\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BF\",\n            \"code\": \"BF\",\n            \"name\": \"Burkina Faso\",\n            \"adjective\": \"Burkinabè\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BI\",\n            \"code\": \"BI\",\n            \"name\": \"Burundi\",\n            \"adjective\": \"Burundian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KH\",\n            \"code\": \"KH\",\n            \"name\": \"Cambodia\",\n            \"adjective\": \"Cambodian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CM\",\n            \"code\": \"CM\",\n            \"name\": \"Cameroon\",\n            \"adjective\": \"Cameroonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CA\",\n            \"code\": \"CA\",\n            \"name\": \"Canada\",\n            \"adjective\": \"Canadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CV\",\n            \"code\": \"CV\",\n            \"name\": \"Capo Verde\",\n            \"adjective\": \"Cape Verdean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KY\",\n            \"code\": \"KY\",\n            \"name\": \"Cayman Islands\",\n            \"adjective\": \"Caymanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TD\",\n            \"code\": \"TD\",\n            \"name\": \"Chad\",\n            \"adjective\": \"Chadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CL\",\n            \"code\": \"CL\",\n            \"name\": \"Chile\",\n            \"adjective\": \"Chilean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CN\",\n            \"code\": \"CN\",\n            \"name\": \"China\",\n            \"adjective\": \"Chinese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CX\",\n            \"code\": \"CX\",\n            \"name\": \"Christmas Island\",\n            \"adjective\": \"Christmas Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CC\",\n            \"code\": \"CC\",\n            \"name\": \"Cocos (Keeling) Islands\",\n            \"adjective\": \"Cocos Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CO\",\n            \"code\": \"CO\",\n            \"name\": \"Colombia\",\n            \"adjective\": \"Colombian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KM\",\n            \"code\": \"KM\",\n            \"name\": \"Comoros\",\n            \"adjective\": \"Comoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CG\",\n            \"code\": \"CG\",\n            \"name\": \"Congo\",\n            \"adjective\": \"Congolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CK\",\n            \"code\": \"CK\",\n            \"name\": \"Cook Islands\",\n            \"adjective\": \"Cook Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CR\",\n            \"code\": \"CR\",\n            \"name\": \"Costa Rica\",\n            \"adjective\": \"Costa Rican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CI\",\n            \"code\": \"CI\",\n            \"name\": \"Côte d'Ivoire\",\n            \"adjective\": \"Ivorian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HR\",\n            \"code\": \"HR\",\n            \"name\": \"Croatia\",\n            \"adjective\": \"Croatian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^\\\\d{11}$\"\n                    ],\n                    \"localeName\": \"Osobni identifikacijski broj (OIB)\",\n                    \"example\": \"12345678901\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CU\",\n            \"code\": \"CU\",\n            \"name\": \"Cuba\",\n            \"adjective\": \"Cuban\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CW\",\n            \"code\": \"CW\",\n            \"name\": \"Curaçao\",\n            \"adjective\": \"Curaçaoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CY\",\n            \"code\": \"CY\",\n            \"name\": \"Cyprus\",\n            \"adjective\": \"Cypriot\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^(?:E\\\\d{6}|K\\\\d{8})$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"E123456\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CZ\",\n            \"code\": \"CZ\",\n            \"name\": \"Czechia\",\n            \"adjective\": \"Czech\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9]|6[0-2]|5[1-9]|8[0-2]|7[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{3,4}$\"\n                    ],\n                    \"localeName\": \"Czech Rodné číslo\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"číslo pasu\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"KP\",\n            \"code\": \"KP\",\n            \"name\": \"Democratic People's Republic of Korea\",\n            \"adjective\": \"North Korean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CD\",\n            \"code\": \"CD\",\n            \"name\": \"Democratic Republic of the Congo\",\n            \"adjective\": \"Congolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DK\",\n            \"code\": \"DK\",\n            \"name\": \"Denmark\",\n            \"adjective\": \"Danish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}-?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"CPR-nummer\",\n                    \"example\": \"3112991234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DJ\",\n            \"code\": \"DJ\",\n            \"name\": \"Djibouti\",\n            \"adjective\": \"Djiboutian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DM\",\n            \"code\": \"DM\",\n            \"name\": \"Dominica\",\n            \"adjective\": \"Dominican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DO\",\n            \"code\": \"DO\",\n            \"name\": \"Dominican Republic\",\n            \"adjective\": \"Dominican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EC\",\n            \"code\": \"EC\",\n            \"name\": \"Ecuador\",\n            \"adjective\": \"Ecuadorian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EG\",\n            \"code\": \"EG\",\n            \"name\": \"Egypt\",\n            \"adjective\": \"Egyptian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SV\",\n            \"code\": \"SV\",\n            \"name\": \"El Salvador\",\n            \"adjective\": \"El Salvadoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GQ\",\n            \"code\": \"GQ\",\n            \"name\": \"Equatorial Guinea\",\n            \"adjective\": \"Equatorial Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ER\",\n            \"code\": \"ER\",\n            \"name\": \"Eritrea\",\n            \"adjective\": \"Eritrean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EE\",\n            \"code\": \"EE\",\n            \"name\": \"Estonia\",\n            \"adjective\": \"Estonian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Estonian Personal Identification Code\",\n                    \"regex\": [\n                        \"^\\\\d{3}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Isikukood\",\n                    \"example\": \"19912311234\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"ET\",\n            \"code\": \"ET\",\n            \"name\": \"Ethiopia\",\n            \"adjective\": \"Ethiopian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FK\",\n            \"code\": \"FK\",\n            \"name\": \"Falkland Islands\",\n            \"adjective\": \"Falkland Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FO\",\n            \"code\": \"FO\",\n            \"name\": \"Faroe Islands\",\n            \"adjective\": \"Faroese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FM\",\n            \"code\": \"FM\",\n            \"name\": \"Micronesia, Federated States of\",\n            \"adjective\": \"Micronesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FJ\",\n            \"code\": \"FJ\",\n            \"name\": \"Fiji\",\n            \"adjective\": \"Fijian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FI\",\n            \"code\": \"FI\",\n            \"name\": \"Finland\",\n            \"adjective\": \"Finnish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}[\\\\+-A]?\\\\d{3}[A-Z]$\"\n                    ],\n                    \"localeName\": \"Henkilötunnus\",\n                    \"example\": \"311299+123X\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FR\",\n            \"code\": \"FR\",\n            \"name\": \"France\",\n            \"adjective\": \"French\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"GF\",\n            \"code\": \"GF\",\n            \"name\": \"French Guiana\",\n            \"adjective\": \"French Guianese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PF\",\n            \"code\": \"PF\",\n            \"name\": \"French Polynesia\",\n            \"adjective\": \"French Polynesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TF\",\n            \"code\": \"TF\",\n            \"name\": \"French Southern Territories\",\n            \"adjective\": \"French\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GA\",\n            \"code\": \"GA\",\n            \"name\": \"Gabon\",\n            \"adjective\": \"Gabonese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GM\",\n            \"code\": \"GM\",\n            \"name\": \"Gambia\",\n            \"adjective\": \"Gambian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GE\",\n            \"code\": \"GE\",\n            \"name\": \"Georgia\",\n            \"adjective\": \"Georgian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DE\",\n            \"code\": \"DE\",\n            \"name\": \"Germany\",\n            \"adjective\": \"German\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"GH\",\n            \"code\": \"GH\",\n            \"name\": \"Ghana\",\n            \"adjective\": \"Ghanaian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GI\",\n            \"code\": \"GI\",\n            \"name\": \"Gibraltar\",\n            \"adjective\": \"Gibraltarian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GR\",\n            \"code\": \"GR\",\n            \"name\": \"Greece\",\n            \"adjective\": \"Greek\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"10-digit Investor Share Code in the Dematerialized Securities System (DSS)\",\n                    \"regex\": [\n                        \"^\\\\d{10}$\"\n                    ],\n                    \"localeName\": \"10ψήφιος Κωδικός Μεριδίου Επενδυτή στο Σύστημα Αϋλων Τίτλων (DSS)\",\n                    \"example\": \"1234567890\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GL\",\n            \"code\": \"GL\",\n            \"name\": \"Greenland\",\n            \"adjective\": \"Greenlander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GD\",\n            \"code\": \"GD\",\n            \"name\": \"Grenada\",\n            \"adjective\": \"Grenadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GP\",\n            \"code\": \"GP\",\n            \"name\": \"Guadeloupe\",\n            \"adjective\": \"Guadeloupian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GU\",\n            \"code\": \"GU\",\n            \"name\": \"Guam\",\n            \"adjective\": \"Guamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GT\",\n            \"code\": \"GT\",\n            \"name\": \"Guatemala\",\n            \"adjective\": \"Guatemalan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GG\",\n            \"code\": \"GG\",\n            \"name\": \"Guernsey\",\n            \"adjective\": \"Giernesi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GN\",\n            \"code\": \"GN\",\n            \"name\": \"Guinea\",\n            \"adjective\": \"Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GW\",\n            \"code\": \"GW\",\n            \"name\": \"Guinea-Bissau\",\n            \"adjective\": \"Bissau-Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GY\",\n            \"code\": \"GY\",\n            \"name\": \"Guyana\",\n            \"adjective\": \"Guyanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HT\",\n            \"code\": \"HT\",\n            \"name\": \"Haiti\",\n            \"adjective\": \"Haitian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HM\",\n            \"code\": \"HM\",\n            \"name\": \"Heard Island and McDonald Islands\",\n            \"adjective\": \"Heard Islander and McDonald Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VA\",\n            \"code\": \"VA\",\n            \"name\": \"Holy See (Vatican City State)\",\n            \"adjective\": \"Vatican Citizen\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HN\",\n            \"code\": \"HN\",\n            \"name\": \"Honduras\",\n            \"adjective\": \"Honduran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HK\",\n            \"code\": \"HK\",\n            \"name\": \"Hong Kong\",\n            \"adjective\": \"Hong Konger\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HU\",\n            \"code\": \"HU\",\n            \"name\": \"Hungary\",\n            \"adjective\": \"Hungarian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IS\",\n            \"code\": \"IS\",\n            \"name\": \"Iceland\",\n            \"adjective\": \"Icelandic\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}-?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Kennitala\",\n                    \"example\": \"3112991234\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IN\",\n            \"code\": \"IN\",\n            \"name\": \"India\",\n            \"adjective\": \"Indian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ID\",\n            \"code\": \"ID\",\n            \"name\": \"Indonesia\",\n            \"adjective\": \"Indonesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IR\",\n            \"code\": \"IR\",\n            \"name\": \"Iran\",\n            \"adjective\": \"Iranian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IQ\",\n            \"code\": \"IQ\",\n            \"name\": \"Iraq\",\n            \"adjective\": \"Iraqi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IE\",\n            \"code\": \"IE\",\n            \"name\": \"Ireland\",\n            \"adjective\": \"Irish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IM\",\n            \"code\": \"IM\",\n            \"name\": \"Isle of Man\",\n            \"adjective\": \"Manx\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IL\",\n            \"code\": \"IL\",\n            \"name\": \"Israel\",\n            \"adjective\": \"Israeli\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IT\",\n            \"code\": \"IT\",\n            \"name\": \"Italy\",\n            \"adjective\": \"Italian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Fiscal Code\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[A-Z]{6}\\\\d{2}([A-EHLMPRST])(3[01]|[12]\\\\d|0[1-9]|7[01]|[56]\\\\d|4[1-9])([A-Z]{1}\\\\d{3})[A-Z]{1}$\"\n                    ],\n                    \"localeName\": \"Codice Fiscale\",\n                    \"example\": \"ABCDEF99A31A123A\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JM\",\n            \"code\": \"JM\",\n            \"name\": \"Jamaica\",\n            \"adjective\": \"Jamaican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JP\",\n            \"code\": \"JP\",\n            \"name\": \"Japan\",\n            \"adjective\": \"Japanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JE\",\n            \"code\": \"JE\",\n            \"name\": \"Jersey\",\n            \"adjective\": \"Jersian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JO\",\n            \"code\": \"JO\",\n            \"name\": \"Jordan\",\n            \"adjective\": \"Jordanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KZ\",\n            \"code\": \"KZ\",\n            \"name\": \"Kazakhstan\",\n            \"adjective\": \"Kazakhstani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KE\",\n            \"code\": \"KE\",\n            \"name\": \"Kenya\",\n            \"adjective\": \"Kenyan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KI\",\n            \"code\": \"KI\",\n            \"name\": \"Kiribati\",\n            \"adjective\": \"I-Kiribati\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"XK\",\n            \"code\": \"XK\",\n            \"name\": \"Kosovo\",\n            \"adjective\": \"Kosovar\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KW\",\n            \"code\": \"KW\",\n            \"name\": \"Kuwait\",\n            \"adjective\": \"Kuwaiti\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KG\",\n            \"code\": \"KG\",\n            \"name\": \"Kyrgyzstan\",\n            \"adjective\": \"Kyrgyzstani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LA\",\n            \"code\": \"LA\",\n            \"name\": \"Laos\",\n            \"adjective\": \"Laotian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LV\",\n            \"code\": \"LV\",\n            \"name\": \"Latvia\",\n            \"adjective\": \"Latvian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Code\",\n                    \"regex\": [\n                        \"^\\\\d{6}-?\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Personas kods\",\n                    \"example\": \"123456-12345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LB\",\n            \"code\": \"LB\",\n            \"name\": \"Lebanon\",\n            \"adjective\": \"Lebanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LS\",\n            \"code\": \"LS\",\n            \"name\": \"Lesotho\",\n            \"adjective\": \"Mosotho\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LR\",\n            \"code\": \"LR\",\n            \"name\": \"Liberia\",\n            \"adjective\": \"Liberian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LY\",\n            \"code\": \"LY\",\n            \"name\": \"Libya\",\n            \"adjective\": \"Libyan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LI\",\n            \"code\": \"LI\",\n            \"name\": \"Liechtenstein\",\n            \"adjective\": \"Liechtensteiner\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z]\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Ausweisnummer\",\n                    \"example\": \"A12345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"Liechtenstein Identity Card\",\n                    \"regex\": [\n                        \"^[A-Z]{2}\\\\d{8}$\"\n                    ],\n                    \"localeName\": \"Identitätskarte Liechtenstein\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"LT\",\n            \"code\": \"LT\",\n            \"name\": \"Lithuania\",\n            \"adjective\": \"Lithuanian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Code\",\n                    \"priority\": 0,\n                    \"localeName\": \"Asmens kodas\",\n                    \"regex\": [\n                        \"^[3456]\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"example\": \"39912311234\"\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"Paso numeris\",\n                    \"example\": \"12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"LU\",\n            \"code\": \"LU\",\n            \"name\": \"Luxembourg\",\n            \"adjective\": \"Luxembourgish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"MO\",\n            \"code\": \"MO\",\n            \"name\": \"Macao\",\n            \"adjective\": \"Macanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MG\",\n            \"code\": \"MG\",\n            \"name\": \"Madagascar\",\n            \"adjective\": \"Malagasy\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MW\",\n            \"code\": \"MW\",\n            \"name\": \"Malawi\",\n            \"adjective\": \"Malawian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MY\",\n            \"code\": \"MY\",\n            \"name\": \"Malaysia\",\n            \"adjective\": \"Malaysian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MV\",\n            \"code\": \"MV\",\n            \"name\": \"Maldives\",\n            \"adjective\": \"Maldivian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ML\",\n            \"code\": \"ML\",\n            \"name\": \"Mali\",\n            \"adjective\": \"Malian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MT\",\n            \"code\": \"MT\",\n            \"name\": \"Malta\",\n            \"adjective\": \"Maltese\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^\\\\d{7}[ABGHLMPZ]$\"\n                    ],\n                    \"localeName\": \"Numru ta' Identifikazzjoni Nazzjonali\",\n                    \"example\": \"1234567A\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"Numru tal-passaport\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MH\",\n            \"code\": \"MH\",\n            \"name\": \"Marshall Islands\",\n            \"adjective\": \"Marshallese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MQ\",\n            \"code\": \"MQ\",\n            \"name\": \"Martinique\",\n            \"adjective\": \"Martiniquais\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MR\",\n            \"code\": \"MR\",\n            \"name\": \"Mauritania\",\n            \"adjective\": \"Mauritanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MU\",\n            \"code\": \"MU\",\n            \"name\": \"Mauritius\",\n            \"adjective\": \"Mauritian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"YT\",\n            \"code\": \"YT\",\n            \"name\": \"Mayotte\",\n            \"adjective\": \"Mahoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MX\",\n            \"code\": \"MX\",\n            \"name\": \"Mexico\",\n            \"adjective\": \"Mexican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MD\",\n            \"code\": \"MD\",\n            \"name\": \"Moldova\",\n            \"adjective\": \"Moldovan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MC\",\n            \"code\": \"MC\",\n            \"name\": \"Monaco\",\n            \"adjective\": \"Monégasque\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MN\",\n            \"code\": \"MN\",\n            \"name\": \"Mongolia\",\n            \"adjective\": \"Mongolian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ME\",\n            \"code\": \"ME\",\n            \"name\": \"Montenegro\",\n            \"adjective\": \"Montenegrin\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MS\",\n            \"code\": \"MS\",\n            \"name\": \"Montserrat\",\n            \"adjective\": \"Montserratian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MA\",\n            \"code\": \"MA\",\n            \"name\": \"Morocco\",\n            \"adjective\": \"Moroccan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MZ\",\n            \"code\": \"MZ\",\n            \"name\": \"Mozambique\",\n            \"adjective\": \"Mozambican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MM\",\n            \"code\": \"MM\",\n            \"name\": \"Myanmar\",\n            \"adjective\": \"Burmese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NA\",\n            \"code\": \"NA\",\n            \"name\": \"Namibia\",\n            \"adjective\": \"Namibian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NR\",\n            \"code\": \"NR\",\n            \"name\": \"Nauru\",\n            \"adjective\": \"Nauruan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NP\",\n            \"code\": \"NP\",\n            \"name\": \"Nepal\",\n            \"adjective\": \"Nepalese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NL\",\n            \"code\": \"NL\",\n            \"name\": \"Netherlands\",\n            \"adjective\": \"Dutch\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^(?:(?![O])[A-Z]){2}(?:(?![O])[A-Z\\\\d]){6}\\\\d$\"\n                    ],\n                    \"localeName\": \"Paspoortnummer\",\n                    \"example\": \"XR1001R58\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^(?:(?![O])[A-Z]){2}(?:(?![O])[A-Z\\\\d]){6}\\\\d$\"\n                    ],\n                    \"localeName\": \"Nederlandse identiteitskaart\",\n                    \"example\": \"XR1001R58\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"NC\",\n            \"code\": \"NC\",\n            \"name\": \"New Caledonia\",\n            \"adjective\": \"New Caledonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NZ\",\n            \"code\": \"NZ\",\n            \"name\": \"New Zealand\",\n            \"adjective\": \"New Zealander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NI\",\n            \"code\": \"NI\",\n            \"name\": \"Nicaragua\",\n            \"adjective\": \"Nicaraguan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NE\",\n            \"code\": \"NE\",\n            \"name\": \"Niger\",\n            \"adjective\": \"Nigerien\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NG\",\n            \"code\": \"NG\",\n            \"name\": \"Nigeria\",\n            \"adjective\": \"Nigerian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NU\",\n            \"code\": \"NU\",\n            \"name\": \"Niue\",\n            \"adjective\": \"Niuean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NF\",\n            \"code\": \"NF\",\n            \"name\": \"Norfolk Island\",\n            \"adjective\": \"Norfolk Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MP\",\n            \"code\": \"MP\",\n            \"name\": \"Northern Mariana Islands\",\n            \"adjective\": \"Northern Mariana Islanders\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MK\",\n            \"code\": \"MK\",\n            \"name\": \"North Macedonia\",\n            \"adjective\": \"Macedonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NO\",\n            \"code\": \"NO\",\n            \"name\": \"Norway\",\n            \"adjective\": \"Norwegian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{7}$\"\n                    ],\n                    \"localeName\": \"Fødselsnummer\",\n                    \"example\": \"31129912345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"OM\",\n            \"code\": \"OM\",\n            \"name\": \"Oman\",\n            \"adjective\": \"Omani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PK\",\n            \"code\": \"PK\",\n            \"name\": \"Pakistan\",\n            \"adjective\": \"Pakistani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PW\",\n            \"code\": \"PW\",\n            \"name\": \"Palau\",\n            \"adjective\": \"Palauan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PS\",\n            \"code\": \"PS\",\n            \"name\": \"Palestine, State of\",\n            \"adjective\": \"Palestinian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PA\",\n            \"code\": \"PA\",\n            \"name\": \"Panama\",\n            \"adjective\": \"Panamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PG\",\n            \"code\": \"PG\",\n            \"name\": \"Papua New Guinea\",\n            \"adjective\": \"Papuan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PY\",\n            \"code\": \"PY\",\n            \"name\": \"Paraguay\",\n            \"adjective\": \"Paraguayan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PE\",\n            \"code\": \"PE\",\n            \"name\": \"Peru\",\n            \"adjective\": \"Peruvian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PH\",\n            \"code\": \"PH\",\n            \"name\": \"Philippines\",\n            \"adjective\": \"Filipino\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PN\",\n            \"code\": \"PN\",\n            \"name\": \"Pitcairn\",\n            \"adjective\": \"Pitcairner\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PL\",\n            \"code\": \"PL\",\n            \"name\": \"Poland\",\n            \"adjective\": \"Polish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^\\\\d{11}$\"\n                    ],\n                    \"localeName\": \"PESEL\",\n                    \"example\": \"12345678901\"\n                },\n                {\n                    \"name\": \"Tax Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^\\\\d{10}$\"\n                    ],\n                    \"localeName\": \"Numer identyfikacji podatkowej\",\n                    \"example\": \"1234567890\"\n                }\n            ]\n        },\n        {\n            \"id\": \"PT\",\n            \"code\": \"PT\",\n            \"name\": \"Portugal\",\n            \"adjective\": \"Portuguese\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Tax Number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^([1-356]\\\\d|45|7[0-2]|9[0189])\\\\d{7}$\"\n                    ],\n                    \"localeName\": \"Número de Identificação Fiscal\",\n                    \"example\": \"123456789\"\n                },\n                {\n                    \"name\": \"Passport Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^[A-Z]{1,2}\\\\d{6}$\"\n                    ],\n                    \"localeName\": \"Passaporte\",\n                    \"example\": \"A123456\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"PR\",\n            \"code\": \"PR\",\n            \"name\": \"Puerto Rico\",\n            \"adjective\": \"Puerto Rican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"QA\",\n            \"code\": \"QA\",\n            \"name\": \"Qatar\",\n            \"adjective\": \"Qatari\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CF\",\n            \"code\": \"CF\",\n            \"name\": \"Republic of Central Africa\",\n            \"adjective\": \"Central African\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KR\",\n            \"code\": \"KR\",\n            \"name\": \"Republic of Korea\",\n            \"adjective\": \"South Korean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RE\",\n            \"code\": \"RE\",\n            \"name\": \"Réunion\",\n            \"adjective\": \"Réunionese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RO\",\n            \"code\": \"RO\",\n            \"name\": \"Romania\",\n            \"adjective\": \"Romanian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Numeric Code\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[1-9]\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{6}$\"\n                    ],\n                    \"localeName\": \"Cod Numeric Personal (CNP)\",\n                    \"example\": \"1991231123456\"\n                },\n                {\n                    \"name\": \"Passport Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^\\\\d{8,9}$\"\n                    ],\n                    \"localeName\": \"Numărul Pașaportului\",\n                    \"example\": \"123456789\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"RU\",\n            \"code\": \"RU\",\n            \"name\": \"Russia\",\n            \"adjective\": \"Russian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RW\",\n            \"code\": \"RW\",\n            \"name\": \"Rwanda\",\n            \"adjective\": \"Rwandan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BL\",\n            \"code\": \"BL\",\n            \"name\": \"Saint Barthélemy\",\n            \"adjective\": \"Barthélemois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SH\",\n            \"code\": \"SH\",\n            \"name\": \"Saint Helena, Ascension and Tristan da Cunha\",\n            \"adjective\": \"Saint Helenian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KN\",\n            \"code\": \"KN\",\n            \"name\": \"Saint Kitts and Nevis\",\n            \"adjective\": \"Kittitian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LC\",\n            \"code\": \"LC\",\n            \"name\": \"Saint Lucia\",\n            \"adjective\": \"Saint Lucian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MF\",\n            \"code\": \"MF\",\n            \"name\": \"Saint Martin (French part)\",\n            \"adjective\": \"Saint-Martinois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PM\",\n            \"code\": \"PM\",\n            \"name\": \"Saint Pierre and Miquelon\",\n            \"adjective\": \"Miquelonnais\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VC\",\n            \"code\": \"VC\",\n            \"name\": \"Saint Vincent and the Grenadines\",\n            \"adjective\": \"Vincentian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"WS\",\n            \"code\": \"WS\",\n            \"name\": \"Samoa\",\n            \"adjective\": \"Samoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SM\",\n            \"code\": \"SM\",\n            \"name\": \"San Marino\",\n            \"adjective\": \"Sammarinese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ST\",\n            \"code\": \"ST\",\n            \"name\": \"São Tomé and Príncipe\",\n            \"adjective\": \"São Toméan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SA\",\n            \"code\": \"SA\",\n            \"name\": \"Saudi Arabia\",\n            \"adjective\": \"Saudi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SN\",\n            \"code\": \"SN\",\n            \"name\": \"Senegal\",\n            \"adjective\": \"Senegalese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RS\",\n            \"code\": \"RS\",\n            \"name\": \"Serbia\",\n            \"adjective\": \"Serbian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SC\",\n            \"code\": \"SC\",\n            \"name\": \"Seychelles\",\n            \"adjective\": \"Seychellois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SL\",\n            \"code\": \"SL\",\n            \"name\": \"Sierra Leone\",\n            \"adjective\": \"Sierra Leonean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SG\",\n            \"code\": \"SG\",\n            \"name\": \"Singapore\",\n            \"adjective\": \"Singaporean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SX\",\n            \"code\": \"SX\",\n            \"name\": \"Sint Maarten (Dutch part)\",\n            \"adjective\": \"Sint Maartener\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SK\",\n            \"code\": \"SK\",\n            \"name\": \"Slovakia\",\n            \"adjective\": \"Slovakian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9]|6[0-2]|5[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Rodné číslo\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"SI\",\n            \"code\": \"SI\",\n            \"name\": \"Slovenia\",\n            \"adjective\": \"Slovenian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{3}([1-9]\\\\d)\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Enotna matična številka občana (EMŠO)\",\n                    \"example\": \"3112999121234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SB\",\n            \"code\": \"SB\",\n            \"name\": \"Solomon Islands\",\n            \"adjective\": \"Solomon Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SO\",\n            \"code\": \"SO\",\n            \"name\": \"Somalia\",\n            \"adjective\": \"Somalian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZA\",\n            \"code\": \"ZA\",\n            \"name\": \"South Africa\",\n            \"adjective\": \"South African\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GS\",\n            \"code\": \"GS\",\n            \"name\": \"South Georgia and the South Sandwich Islands\",\n            \"adjective\": \"South Georgia Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SS\",\n            \"code\": \"SS\",\n            \"name\": \"South Sudan\",\n            \"adjective\": \"South Sudanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ES\",\n            \"code\": \"ES\",\n            \"name\": \"Spain\",\n            \"adjective\": \"Spanish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Tax Identification Number\",\n                    \"priority\": 0,\n                    \"localeName\": \"Código de identificación fiscal\",\n                    \"regex\": [\n                        \"^(?:[LK]\\\\d{7}|\\\\d{8})(?![IÑOU])[A-Z]$\"\n                    ],\n                    \"example\": \"12345678A\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LK\",\n            \"code\": \"LK\",\n            \"name\": \"Sri Lanka\",\n            \"adjective\": \"Sri Lankan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SD\",\n            \"code\": \"SD\",\n            \"name\": \"Sudan\",\n            \"adjective\": \"Sudanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SR\",\n            \"code\": \"SR\",\n            \"name\": \"Suriname\",\n            \"adjective\": \"Surinamese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SJ\",\n            \"code\": \"SJ\",\n            \"name\": \"Svalbard\",\n            \"adjective\": \"Svalbard resident\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SZ\",\n            \"code\": \"SZ\",\n            \"name\": \"Swaziland\",\n            \"adjective\": \"Swazi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SE\",\n            \"code\": \"SE\",\n            \"name\": \"Sweden\",\n            \"adjective\": \"Swedish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Number\",\n                    \"regex\": [\n                        \"^(\\\\d{2})?\\\\d{2}(0[1-9]|1[012])(0[1-9]|[12]\\\\d|3[01])[+-]?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Personligt identitetsnummer\",\n                    \"example\": \"209912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CH\",\n            \"code\": \"CH\",\n            \"name\": \"Switzerland\",\n            \"adjective\": \"Swiss\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SY\",\n            \"code\": \"SY\",\n            \"name\": \"Syrian Arab Republic\",\n            \"adjective\": \"Syrian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TW\",\n            \"code\": \"TW\",\n            \"name\": \"Taiwan\",\n            \"adjective\": \"Taiwanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TJ\",\n            \"code\": \"TJ\",\n            \"name\": \"Tajikistan\",\n            \"adjective\": \"Tajikistani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TZ\",\n            \"code\": \"TZ\",\n            \"name\": \"Tanzania, United Republic of\",\n            \"adjective\": \"Tanzanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TH\",\n            \"code\": \"TH\",\n            \"name\": \"Thailand\",\n            \"adjective\": \"Thai\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TL\",\n            \"code\": \"TL\",\n            \"name\": \"Timor Lest\",\n            \"adjective\": \"Timorese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TG\",\n            \"code\": \"TG\",\n            \"name\": \"Togo\",\n            \"adjective\": \"Togolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TK\",\n            \"code\": \"TK\",\n            \"name\": \"Tokelau\",\n            \"adjective\": \"Tokelauan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TO\",\n            \"code\": \"TO\",\n            \"name\": \"Tonga\",\n            \"adjective\": \"Tongan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TT\",\n            \"code\": \"TT\",\n            \"name\": \"Trinidad and Tobago\",\n            \"adjective\": \"Trinidadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TN\",\n            \"code\": \"TN\",\n            \"name\": \"Tunisia\",\n            \"adjective\": \"Tunisian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TR\",\n            \"code\": \"TR\",\n            \"name\": \"Turkey\",\n            \"adjective\": \"Turkish\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TM\",\n            \"code\": \"TM\",\n            \"name\": \"Turkmenistan\",\n            \"adjective\": \"Turkmen\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TC\",\n            \"code\": \"TC\",\n            \"name\": \"Turks and Caicos Islands\",\n            \"adjective\": \"Turks and Caicos Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TV\",\n            \"code\": \"TV\",\n            \"name\": \"Tuvalu\",\n            \"adjective\": \"Tuvaluan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UG\",\n            \"code\": \"UG\",\n            \"name\": \"Uganda\",\n            \"adjective\": \"Uganda\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UA\",\n            \"code\": \"UA\",\n            \"name\": \"Ukraine\",\n            \"adjective\": \"Ukrainian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AE\",\n            \"code\": \"AE\",\n            \"name\": \"United Arab Emirates\",\n            \"adjective\": \"Emirati\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GB\",\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\",\n            \"adjective\": \"British\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[A-CEGHJ-PR-TW-Z]{1}[A-CEGHJ-NPR-TW-Z]{1}[\\\\d]{6}[A-DFM]{1}$\"\n                    ],\n                    \"localeName\": \"National Insurance Number\",\n                    \"example\": \"QQ123456C\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UM\",\n            \"code\": \"UM\",\n            \"name\": \"United States Minor Outlying Islands\",\n            \"adjective\": \"American Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"US\",\n            \"code\": \"US\",\n            \"name\": \"United States of America\",\n            \"adjective\": \"American\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VI\",\n            \"code\": \"VI\",\n            \"name\": \"United States Virgin Islands\",\n            \"adjective\": \"American Virgin Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UY\",\n            \"code\": \"UY\",\n            \"name\": \"Uruguay\",\n            \"adjective\": \"Uruguayan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UZ\",\n            \"code\": \"UZ\",\n            \"name\": \"Uzbekistan\",\n            \"adjective\": \"Uzbek\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VU\",\n            \"code\": \"VU\",\n            \"name\": \"Vanuatu\",\n            \"adjective\": \"Ni-Vanuatu\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VE\",\n            \"code\": \"VE\",\n            \"name\": \"Venezuela\",\n            \"adjective\": \"Venezuelan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VN\",\n            \"code\": \"VN\",\n            \"name\": \"Vietnam\",\n            \"adjective\": \"Vietnamese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VG\",\n            \"code\": \"VG\",\n            \"name\": \"Virgin Islands, British\",\n            \"adjective\": \"British Virgin Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"WF\",\n            \"code\": \"WF\",\n            \"name\": \"Wallis and Futuna\",\n            \"adjective\": \"Wallis and Futuna Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EH\",\n            \"code\": \"EH\",\n            \"name\": \"Western Sahara\",\n            \"adjective\": \"Sahrawi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"YE\",\n            \"code\": \"YE\",\n            \"name\": \"Yemen\",\n            \"adjective\": \"Yemeni\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZM\",\n            \"code\": \"ZM\",\n            \"name\": \"Zambia\",\n            \"adjective\": \"Zambian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZW\",\n            \"code\": \"ZW\",\n            \"name\": \"Zimbabwe\",\n            \"adjective\": \"Zimbabwean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"f95ea62b-46bf-44d7-a15f-aa6240a9b331"},{"name":"Create a DFM platform user","event":[{"listen":"prerequest","script":{"exec":["","pm.environment.set(\"userEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')"],"type":"text/javascript","id":"ccf2374f-a01a-4526-96a4-28aba79c2978"}},{"listen":"test","script":{"exec":["let json = pm.response.json()","","pm.environment.set('userId', json.data.id)"],"type":"text/javascript","id":"57ac269e-0e51-41e7-899d-46cf2103fd97"}}],"id":"74da6928-0a9b-4dde-a7e2-1f605deed5fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"firstName\": \"Velma\",\n    \"surname\": \"Zoinks\",\n    \"email\": \"vzoinks@dfm.com\",\n    \"userType\": \"User\",\n    \"nodeId\": [\n        \"2\"\n    ],\n    \"scopes\": [\n        {\n            \"scope\": \"Client\",\n            \"ranges\": []\n        },\n        {\n            \"scope\": \"Account\",\n            \"ranges\": []\n        },\n        {\n            \"scope\": \"Model\",\n            \"ranges\": [\n                \"read\",\n                \"readWrite\",\n                \"action\"\n            ]\n        },\n        {\n            \"scope\": \"User\",\n            \"ranges\": [\n                \"read\",\n                \"readWrite\"\n            ]\n        },\n        {\n            \"scope\": \"Recommendation\",\n            \"ranges\": []\n        },\n        {\n            \"scope\": \"Instrument\",\n            \"ranges\": [\n                \"read\",\n                \"readWrite\"\n            ]\n        }\n    ],\n    \"investmentDecision\": {\n        \"firmLei\": \"12932932493211234567\",\n        \"firmCountry\": \"GB\",\n        \"personId\": \"AB197283D\",\n        \"personIdType\": \"NINO\",\n        \"personCountry\": \"GB\"\n    }\n}"},"url":"{{apiRoute}}/user","description":"<p>This flow creates an individual platform user with discretionary (DFM) permissions. There are several fields that must be included in addition to those when setting up a standard user (see 'Create firm user').</p>\n<p>Returns the <code>userId</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong>  </p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The first name of the user</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the user</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong></p>\n<p>The email address of the user</p>\n<p><strong>Note: this needs to be unique to other users and clients on the platform</strong></p>\n<hr />\n<p><code>userType</code> string <strong>Required</strong></p>\n<p>The type of user. For a Decision maker, set to <code>User</code>:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>User</code></td>\n<td>The user login used to access our off-the-shelf user interfaces. An API token generated with this <code>userType</code> will timeout after ten minutes of inactivity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>nodeId</code> array <strong>Required</strong></p>\n<p>The unique identifier of the node that the user should be attached to</p>\n<hr />\n<p><code>scopes</code> array <strong>Required</strong></p>\n<p>The levels of access a user has. These are <code>read</code>, <code>read/write</code> and <code>action</code>. The scopes can be implemented across different areas of the system outlined below:</p>\n<hr />\n<p><code>scopes.scope</code> string <strong>Required</strong></p>\n<p>The area of the system which the user has access to.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Client</code></td>\n<td>The ability to edit and create a client</td>\n</tr>\n<tr>\n<td><code>Account</code></td>\n<td>The ability to edit and create an account</td>\n</tr>\n<tr>\n<td><code>Model</code></td>\n<td>The ability to edit and create a model. This is strictly for DFMs.</td>\n</tr>\n<tr>\n<td><code>User</code></td>\n<td>The ability to edit and create a model. This is strictly for DFMs.</td>\n</tr>\n<tr>\n<td><code>Instrument</code></td>\n<td>The ability to view instruments and request for new assets in your universe.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>scopes.ranges</code> string <strong>Required</strong></p>\n<p>The levels of access a user has. These are <code>read</code>, <code>read/write</code> and <code>action</code>.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>read</code></td>\n<td>The ability to view</td>\n</tr>\n<tr>\n<td><code>readWrite</code></td>\n<td>The ability to view and edit for example, updating an account with a new email address</td>\n</tr>\n<tr>\n<td><code>action</code></td>\n<td>The ability to carry out an action for example, creating a client record on the system</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision</code> array <strong>Required</strong></p>\n<p>An array capturing all the national identifier information for the DFM - both the firm and the firm user. All fields are mandatory.</p>\n<hr />\n<p><code>investmentDecision.firmLei</code> numerical string <strong>Required</strong></p>\n<p>A 20-digit numerical identifier assigned to a DFM</p>\n<hr />\n<p><code>investmentDecision.firmCountry</code> string <strong>Required</strong></p>\n<p>A two-letter country code denoting the firm's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision.personId</code> alphanumerical string <strong>Required</strong></p>\n<p>The National Identifier for the firm user/decision maker. For GB nationals this is in the format XX123456X</p>\n<hr />\n<p><code>investmentDecision.personIdType</code> string <strong>Required</strong></p>\n<p>The type of National Identifier provided for the firm user/decision maker. For GB nationals this is NINO (National Insurance Number)</p>\n<hr />\n<p><code>investmentDecision.personCountry</code> string <strong>Required</strong></p>\n<p>A two-letter country code denoting the firm user/decision maker's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"path":["user"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"915f29ad-babc-468d-85f3-b5133f69798a","name":"Create a DFM platform user","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"firstName\": \"Velma\",\n    \"surname\": \"Zoinks\",\n    \"email\": \"vzoinks@dfm.com\",\n    \"userType\": \"User\",\n    \"nodeId\": [\n        \"2\"\n    ],\n\n    \"investmentDecision\": {\n        \"firmLei\": \"12932932493211234567\",\n        \"firmCountry\": \"GB\",\n        \"personId\": \"AB197283D\",\n        \"personIdType\": \"NINO\",\n        \"personCountry\": \"GB\"\n    }\n}"},"url":"{{apiRoute}}/user"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 21 Sep 2022 09:57:15 GMT"},{"key":"x-amzn-RequestId","value":"7f7a401c-ad12-4ab1-bb1f-66b7037adf17"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YzfvREsKDoEFS8w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-YulG1ruJ4mvfUvFXNceDAN8cBqg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-632adffb-56a378b212eff73a1de25c5b;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 04bb33465149b34afca4988622dca584.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"vMlXQ_E2DCSP9w9GfMEaOyJKr3ss2rxb_YzUCdB_iXqUpmP-A7RvRw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"029B855\"\n    }\n}"}],"_postman_id":"74da6928-0a9b-4dde-a7e2-1f605deed5fa"},{"name":"Retrieve a DFM platform user","id":"fe6d7552-97c3-4e7a-9cb1-200ae416092b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/user/{{firmId}}/{{userId}}","description":"<p>This request retrieves a platform user record using their <code>userId</code>.</p>\n","urlObject":{"path":["user","{{firmId}}","{{userId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2578e75e-7241-4bfa-b625-65cea165062d","name":"Retrieve a DFM platform user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/user/{{firmId}}/029B855"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"533"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 21 Sep 2022 10:25:05 GMT"},{"key":"x-amzn-RequestId","value":"84e8b60f-a6bd-4ba9-a485-b47a6bd29f9a"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"533"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Yzj0MEV0DoEFtdA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"215-I0OMpdn/flHegRjwCyqpwCalaF0\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-632ae681-169050f6453bbb4141919222;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4278118a12a0d89e17a517194fb2e732.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"QTPuKgtmQOYCBkgT8R5OU8drCbyn_4KnDe4s_XtuQHuuJPAkkgX1Lg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"029B855\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": [\n            \"2\"\n        ],\n        \"userType\": \"User\",\n        \"firstName\": \"Velma\",\n        \"surname\": \"Zoinks\",\n        \"email\": \"vzoinks@dfm.com\",\n        \"investmentDecision\": {\n            \"firmLei\": \"12932932493211234567\",\n            \"firmCountry\": \"GB\",\n            \"personId\": \"AB197283D\",\n            \"personIdType\": \"NINO\",\n            \"personCountry\": \"GB\"\n        },\n        \"nodeName\": [\n            \"Seccl Invest - Adviser\"\n        ],\n        \"_surname\": \"ZOINKS\",\n        \"_firstName\": \"VELMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-21T09:57:15.202Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"632adffb4d1a002086b995c5\"\n    }\n}"}],"_postman_id":"fe6d7552-97c3-4e7a-9cb1-200ae416092b"}],"id":"b47d1e8b-b895-4f01-883d-c4e700af8301","description":"<p>You can also create a specific type of firm user with discretionary (DFM) permissions. </p>\n<p>This may be because you would like to manage your client’s investments separately. For instance they may be a high-net-worth investor with specific investment goals and needs. </p>\n<p><strong>Please note:</strong> This is only a pre-requisite for setting up a Bespoke DFM investment strategy and is <em>not</em> needed for DFM Model Portfolios as the model records hold the Decision Maker details.</p>\n","_postman_id":"b47d1e8b-b895-4f01-883d-c4e700af8301"}],"id":"2783bedc-547c-48bd-8fbd-20af8d5cbb69","description":"<p>Users refer to people accessing the platform services as staff, including the platform operations team, administrators, advisers and paraplanners.</p>\n<p>There are two types of users:</p>\n<ul>\n<li><strong>Machine user:</strong> A user accessing Seccl's services via the API. All firms will have a machine user who can access the Seccl API via a system login</li>\n<li><strong>User:</strong> An individual accessing our services via the off-the-shelf professional user interface</li>\n</ul>\n<p>If you are accessing Seccl's services exclusively via the API, you will have a single machine user login for your application.</p>\n<p>You will be responsible for managing the various users accessing your platform services.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/user\n\n</code></pre>","_postman_id":"2783bedc-547c-48bd-8fbd-20af8d5cbb69"},{"name":"Assets and prices","item":[{"name":"Assets","item":[{"name":"Retrieve master asset universe","event":[{"listen":"test","script":{"id":"43626a4f-0a0b-4058-9927-6f1c350cc1fb","exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"id\", data.data[0].id);"],"type":"text/javascript","packages":{}}}],"id":"84d357ce-6b3e-4592-b96c-e99c13fcac34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{apiRoute}}/masterinstrument/{{firmId}}/","description":"<p>These list assets are available from Seccl's Master Universe and are available to add to your platform's asset universe.</p>\n<p><strong>Please note: the Master Universe asset list in the staging environment differs to the Master Universe asset list in the production environment.</strong></p>\n","urlObject":{"path":["masterinstrument","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"isin","value":"<isin>"},{"disabled":true,"key":"instrumentType","value":"<instrumentType>"},{"disabled":true,"key":"ticker","value":"<ticker>"},{"disabled":true,"key":"idOrName","value":"<name>"},{"disabled":true,"key":"pageSize","value":"10"},{"disabled":true,"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"4a2222ec-ef0b-4dd2-bea1-d97a32dc2e34","name":"Retrieve assets in master universe","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{apiRoute}}/masterinstrument/{{firmId}}","host":["{{apiRoute}}"],"path":["masterinstrument","{{firmId}}"],"query":[{"key":"idOrName","value":"van","disabled":true},{"key":"isin","value":"GB00BFBFZ140","disabled":true},{"key":"instrumentType","value":"ETF","disabled":true},{"key":"currency","value":"EUR","disabled":true},{"key":"ticker","value":"H4ZG","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"95099"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 15:58:25 GMT"},{"key":"x-amzn-RequestId","value":"fd45aae8-818c-4da5-b696-98bf30492882"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"95099"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VkrlOFTUDoEFyXQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1737b-XMXrj5QRoKoUCWiSf/wdff8q6IE\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d82621-2721207f46974b33232f104b;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8566cb770d0695bb6bffb61a26f5b400.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"98Grctq3qesSSQ8Vs8S6j2M-kajeVmPjfWt0x4eF5IsZKFfoNola2Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"26MM1\",\n            \"firmId\": \"SCUST\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"description\": \"Pacific Basin Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720733\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"firmAccessProhibited\": true,\n            \"currentPrice\": {\n                \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"bid\": 1.33,\n                \"ask\": 1.33,\n                \"mid\": 1.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB15\",\n                \"mexId\": \"RBPB5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T08:39:31.156Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 6,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"624c0043ee1c0c4accade3e0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS CONTINENTAL EURPN SPCLIST 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Continental European Specialist 5 Inc\",\n            \"description\": \"Continental Eurpn Spclist 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720519\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 22.51,\n                \"ask\": 22.51,\n                \"mid\": 22.51\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB09\",\n                \"mexId\": \"RBE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.111Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125386e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST PAC BASIN&GBL EMG MKT EQ 1\",\n            \"longName\": \"NatWest Pacific Basin & Global Emerging Markets Equity 1\",\n            \"description\": \"Pac Basin&Gbl Emg Mkt Eq 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008274259\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.85,\n                \"ask\": 20.85,\n                \"mid\": 20.85\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND65\",\n                \"mexId\": \"NWPBI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.207Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253870\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 6 Inc\",\n            \"description\": \"US Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719289\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.93,\n                \"ask\": 15.93,\n                \"mid\": 15.93\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB07\",\n                \"mexId\": \"RBNA6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.236Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W PITYOULISH\",\n            \"longName\": \"S&W Pityoulish\",\n            \"description\": \"Pityoulish\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R91P57\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-09-04T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 139.4,\n                \"ask\": 139.4,\n                \"mid\": 139.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"D2T0\",\n                \"mexId\": \"SWBAAH\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.247Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538bc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W DEUCALION\",\n            \"longName\": \"S&W Deucalion\",\n            \"description\": \"Deucalion\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0032637927\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2003-04-09T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1892,\n                \"ask\": 1892,\n                \"mid\": 1892\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT19\",\n                \"mexId\": \"WLDU\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.836Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK EQUITY PROG 4\",\n            \"longName\": \"Coutts UK Equity Prog 4\",\n            \"description\": \"UK Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254079\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.43,\n                \"ask\": 12.43,\n                \"mid\": 12.43\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD78\",\n                \"mexId\": \"QCUPI4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.920Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253858\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I GBP\",\n            \"longName\": \"Fund IM Truestone Global Impact I GBP\",\n            \"description\": \"IM Trustne Gbl Impct I GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4R4T055\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 92.6921,\n                \"ask\": 92.6921,\n                \"mid\": 92.6921\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F8\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.213Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253884\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE INV EUROPEAN TRUST II\",\n            \"longName\": \"Standard Life Investments European Trust II\",\n            \"description\": \"European Trust II\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1432509\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2006-06-21T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 159,\n                \"ask\": 159,\n                \"mid\": 159\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"EP97\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.693Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS UK SPEC EQUITY INCOME 5 INC\",\n            \"longName\": \"Royal Bank of Scotland UK Specialist Equity Income 5 Inc\",\n            \"description\": \"UK Spec Equity Income 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MQ07\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.544,\n                \"ask\": 9.544,\n                \"mid\": 9.544\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6Q2\",\n                \"mexId\": \"RBUSE5\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.325Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538aa\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE BALN R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Balanced Ret Acc GBP\",\n            \"description\": \"Stirling House Baln R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1674\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0275,\n                \"ask\": 1.0275,\n                \"mid\": 1.0275\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZY\",\n                \"mexId\": \"HTNGRE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.739Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S5\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S5\",\n            \"description\": \"Inflation Lk UK Sovereign Bd S5\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X233\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-02T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.24,\n                \"ask\": 11.24,\n                \"mid\": 11.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCG0\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.778Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253890\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 5 Inc\",\n            \"description\": \"Japan Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720626\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.33,\n                \"ask\": 12.33,\n                \"mid\": 12.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB12\",\n                \"mexId\": \"RBJE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.707Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPEC EQUITY INCOME 1 INC\",\n            \"longName\": \"NatWest UK Specialist Equity Income 1 Inc\",\n            \"description\": \"UK Spec Equity Income 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247ML51\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.569,\n                \"ask\": 9.569,\n                \"mid\": 9.569\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6P8\",\n                \"mexId\": \"NWUSE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.649Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253840\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST JAPAN EQUITY INCOME 1\",\n            \"longName\": \"NatWest Japan Equity Income 1\",\n            \"description\": \"Japan Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273848\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.143,\n                \"ask\": 8.143,\n                \"mid\": 8.143\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND59\",\n                \"mexId\": \"NWJEI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.412Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS PACIFIC BASIN PROG 4\",\n            \"longName\": \"Coutts Pacific Basin Prog 4\",\n            \"description\": \"Pacific Basin Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008260241\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.82,\n                \"ask\": 20.82,\n                \"mid\": 20.82\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD71\",\n                \"mexId\": \"QCPBI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.919Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125386a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 5 Inc\",\n            \"description\": \"US Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720402\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.49,\n                \"ask\": 15.49,\n                \"mid\": 15.49\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB06\",\n                \"mexId\": \"RBNA5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.136Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MML\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS JAPAN EQUITY PROG 4\",\n            \"longName\": \"Coutts Japan Equity Prog 4\",\n            \"description\": \"Japan Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008255605\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.522,\n                \"ask\": 8.522,\n                \"mid\": 8.522\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD66\",\n                \"mexId\": \"QCJPRI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.814Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253868\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S USD\",\n            \"longName\": \"Fund IM Truestone Global Impact S USD\",\n            \"description\": \"IM Trustne Gbl Impct S USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T70B05\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 93.8308,\n                \"ask\": 93.8308,\n                \"mid\": 93.8308\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F9\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.293Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253886\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNL\",\n            \"updateId\": \"5b767670a297f5106e742386\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST INFLATN LK UK SOVGN BD S2 GBP\",\n            \"longName\": \"NatWest Inflation Link UK Sovereign Bond S2 GBP\",\n            \"description\": \"Inflatn Lk UK Sovgn Bd S2 GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8WZ99\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1.112,\n                \"ask\": 1.112,\n                \"mid\": 1.112\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCF7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2018-08-17T07:17:04.060Z\",\n                \"userFirmId\": \"SHARED\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DFNSV R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Defensive Ret Inc GBP\",\n            \"description\": \"Stirling House Dfnsv R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1344\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0036,\n                \"ask\": 1.0036,\n                \"mid\": 1.0036\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JL9P\",\n                \"mexId\": \"HTOSED\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.647Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 6 Inc\",\n            \"description\": \"Japan Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719628\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.81,\n                \"ask\": 12.81,\n                \"mid\": 12.81\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB13\",\n                \"mexId\": \"RBJE6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.811Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d700012538a0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNS\",\n            \"updateId\": \"62b43297c7ebaa2592a5bffc\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS STERLING BOND 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Sterling Bond 5 Inc\",\n            \"description\": \"Sterling Bond 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720956\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.948,\n                \"ask\": 9.948,\n                \"mid\": 9.948\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB18\",\n                \"mexId\": \"RBSB5I\"\n            },\n            \"ocfEstimated\": 0.0025,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-23T09:29:59.619Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 1855,\n                \"application\": \"CoreAPI\"\n            }\n        },\n        {\n            \"id\": \"26MPC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DYNAMIC R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Dynamic Ret Acc GBP\",\n            \"description\": \"Stirling House Dynamic R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1898\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0262,\n                \"ask\": 1.0262,\n                \"mid\": 1.0262\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10C\",\n                \"mexId\": \"HTDYCI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.151Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538ba\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST CONTINENTAL EUROPEAN 1 INC\",\n            \"longName\": \"NatWest Continental European 1 Inc\",\n            \"description\": \"Continental European 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273285\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.24,\n                \"ask\": 15.24,\n                \"mid\": 15.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND55\",\n                \"mexId\": \"NWCE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.187Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 6 Inc\",\n            \"description\": \"Pacific Basin Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719842\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 36.45,\n                \"ask\": 36.45,\n                \"mid\": 36.45\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB16\",\n                \"mexId\": \"RBPB6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.095Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253848\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GIG BOND S2\",\n            \"longName\": \"NatWest GIG Bond S2\",\n            \"description\": \"GIG Bond S2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X787\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.73,\n                \"ask\": 10.73,\n                \"mid\": 10.73\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C0V5\",\n                \"mexId\": \"NWGIG2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.456Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253862\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS UK SPEC EQUITY INCOME 6 INC\",\n            \"longName\": \"Royal Bank of Scotland UK Specialist Equity Income 6 Inc\",\n            \"description\": \"UK Spec Equity Income 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MR14\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.08,\n                \"ask\": 10.08,\n                \"mid\": 10.08\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6Q3\",\n                \"mexId\": \"RBUSE6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.409Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538ac\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST JAPAN EQUITY INCOME 2\",\n            \"longName\": \"NatWest Japan Equity Income 2\",\n            \"description\": \"Japan Equity Income 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008287293\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.533,\n                \"ask\": 8.533,\n                \"mid\": 8.533\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND60\",\n                \"mexId\": \"NWJEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.531Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253850\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MND\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I EUR\",\n            \"longName\": \"Fund IM Truestone Global Impact I EUR\",\n            \"description\": \"IM Trustne Gbl Impct I EUR\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4XHLM49\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"EUR\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 96.8521,\n                \"ask\": 96.8521,\n                \"mid\": 96.8521\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"EUR\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.591Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"EUR\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE GROWTH R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Growth Ret Acc GBP\",\n            \"description\": \"Stirling House Growth R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1450\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0382,\n                \"ask\": 1.0382,\n                \"mid\": 1.0382\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10A\",\n                \"mexId\": \"HTWOGS\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.931Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SOVEREIGN BOND IDX INC 1\",\n            \"longName\": \"NatWest UK Sovereign Bond Index Income 1\",\n            \"description\": \"UK Sovereign Bond Idx Inc 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008268202\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.15,\n                \"ask\": 10.15,\n                \"mid\": 10.15\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND68\",\n                \"mexId\": \"NWSBI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.334Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS NORTH AMERICAN EQUITY PROG 4\",\n            \"longName\": \"Coutts North American Equity Prog 4\",\n            \"description\": \"North American Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254855\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.73,\n                \"ask\": 11.73,\n                \"mid\": 11.73\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD69\",\n                \"mexId\": \"QCNPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.652Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253866\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE BALN R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Balanced Ret Inc GBP\",\n            \"description\": \"Stirling House Baln R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1781\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0208,\n                \"ask\": 1.0208,\n                \"mid\": 1.0208\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZZ\",\n                \"mexId\": \"HTRLNG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.832Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE GROWTH R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Growth Ret Inc GBP\",\n            \"description\": \"Stirling House Growth R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1567\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0279,\n                \"ask\": 1.0279,\n                \"mid\": 1.0279\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10B\",\n                \"mexId\": \"HTSEWR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.027Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538b8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"BARCLAYS AQUILA EMRG MKTS INC\",\n            \"longName\": \"Barclays Funds Aquila Emerging Markets Inc\",\n            \"description\": \"Aquila Emrg Mkts Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B06XZJ66\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-30T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-14T00:00:00.000Z\",\n                \"bid\": 391.4,\n                \"ask\": 381.1,\n                \"mid\": 386.25,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FVE8\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.727Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DFNSV R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Defensive Ret Acc GBP\",\n            \"description\": \"Stirling House Dfnsv R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1237\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0022,\n                \"ask\": 1.0022,\n                \"mid\": 1.0022\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZW\",\n                \"mexId\": \"HTSEIV\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.534Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538ae\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPECIALIST EQUITY 1 INC\",\n            \"longName\": \"NatWest UK Specialist Equity 1 Inc\",\n            \"description\": \"UK Specialist Equity 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4L38\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.65,\n                \"ask\": 18.65,\n                \"mid\": 18.65\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"NS10\",\n                \"mexId\": \"QCSE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.631Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253852\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK SPECIALIST EQUITY 4\",\n            \"longName\": \"Coutts UK Specialist Equity 4\",\n            \"description\": \"UK Specialist Equity 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4S07\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.84,\n                \"ask\": 18.84,\n                \"mid\": 18.84\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"YA97\",\n                \"mexId\": \"QCSE4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.907Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253844\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST US SPECIALIST EQUITY 2 INC\",\n            \"longName\": \"NatWest US Specialist Equity 2 Inc\",\n            \"description\": \"US Specialist Equity 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008276072\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.77,\n                \"ask\": 11.77,\n                \"mid\": 11.77\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND63\",\n                \"mexId\": \"NWNAEI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.135Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL INV GRADE BD S1\",\n            \"longName\": \"NatWest Global Investment Grade Bond S1\",\n            \"description\": \"Global Inv Grade Bd S1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X670\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.67,\n                \"ask\": 10.67,\n                \"mid\": 10.67\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C0V4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.553Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253864\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK EQUITY INCOME 2\",\n            \"longName\": \"NatWest UK Equity Income 2\",\n            \"description\": \"UK Equity Income 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008274812\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.46,\n                \"ask\": 12.46,\n                \"mid\": 12.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND71\",\n                \"mexId\": \"NWUEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.931Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S GBP\",\n            \"longName\": \"Fund IM Truestone Global Impact S GBP\",\n            \"description\": \"IM Trustne Gbl Impct S GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4W5ZM74\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 91.4301,\n                \"ask\": 91.4301,\n                \"mid\": 91.4301\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.110Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253882\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SOVEREIGN BOND IDX INC 2\",\n            \"longName\": \"NatWest UK Sovereign Bond Index Income 2\",\n            \"description\": \"UK Sovereign Bond Idx Inc 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008275223\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.26,\n                \"ask\": 10.26,\n                \"mid\": 10.26\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND69\",\n                \"mexId\": \"NWSBI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.431Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST CONTINENTAL EUROPEAN 2 INC\",\n            \"longName\": \"NatWest Continental European 2 Inc\",\n            \"description\": \"Continental European 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008282807\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.8,\n                \"ask\": 15.8,\n                \"mid\": 15.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND57\",\n                \"mexId\": \"NWCEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.314Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST US SPECIALIST EQUITY 1 INC\",\n            \"longName\": \"NatWest US Specialist Equity 1 Inc\",\n            \"description\": \"US Specialist Equity 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273061\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.46,\n                \"ask\": 11.46,\n                \"mid\": 11.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND61\",\n                \"mexId\": \"NWNAE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.034Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"BARCLAYS AQUILA EMRG MKTS ACC\",\n            \"longName\": \"Barclays Funds Aquila Emerging Markets Acc\",\n            \"description\": \"Aquila Emrg Mkts Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B06Y0X80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-30T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-14T00:00:00.000Z\",\n                \"bid\": 542,\n                \"ask\": 527.8,\n                \"mid\": 534.9,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FVE7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.633Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253878\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK EQUITY INCOME 1\",\n            \"longName\": \"NatWest UK Equity Income 1\",\n            \"description\": \"UK Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008267238\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.46,\n                \"ask\": 12.46,\n                \"mid\": 12.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND72\",\n                \"mexId\": \"NWUKE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.017Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253880\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I USD\",\n            \"longName\": \"Fund IM Truestone Global Impact I USD\",\n            \"description\": \"IM Trustne Gbl Impct I USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T5QW79\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 95.2069,\n                \"ask\": 95.2069,\n                \"mid\": 95.2069\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G0\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.394Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253888\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S EUR\",\n            \"longName\": \"Fund IM Truestone Global Impact S EUR\",\n            \"description\": \"IM Trustne Gbl Impct S EUR\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T5B330\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"EUR\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 95.5222,\n                \"ask\": 95.5222,\n                \"mid\": 95.5222\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"EUR\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.493Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"EUR\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST INFLATN LK UK SOVGN BD S1 GBP\",\n            \"longName\": \"NatWest Inflation Link UK Sovereign Bond S1 GBP\",\n            \"description\": \"Inflatn Lk UK Sovgn Bd S1 GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8WY82\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.02,\n                \"ask\": 11.02,\n                \"mid\": 11.02\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCF6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.114Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d70001253896\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS STERLING BOND 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Sterling Bond 6 Inc\",\n            \"description\": \"Sterling Bond 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720170\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10,\n                \"ask\": 10,\n                \"mid\": 10\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB19\",\n                \"mexId\": \"RBS5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.915Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d700012538a2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPEC EQUITY INCOME 2 INC\",\n            \"longName\": \"NatWest UK Specialist Equity Income 2 Inc\",\n            \"description\": \"UK Spec Equity Income 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MM68\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.08,\n                \"ask\": 10.08,\n                \"mid\": 10.08\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6P9\",\n                \"mexId\": \"NWUSG2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.771Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253842\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPECIALIST EQUITY 2 INC\",\n            \"longName\": \"NatWest UK Specialist Equity 2 Inc\",\n            \"description\": \"UK Specialist Equity 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4P75\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.82,\n                \"ask\": 18.82,\n                \"mid\": 18.82\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"NS11\",\n                \"mexId\": \"QCST2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.719Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253854\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS CONTINENTAL EUROPEAN PROG 4\",\n            \"longName\": \"Coutts Continental European Prog 4\",\n            \"description\": \"Continental European Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008255266\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.75,\n                \"ask\": 15.75,\n                \"mid\": 15.75\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD62\",\n                \"mexId\": \"QCCEPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.418Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253874\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"MONTELLO INCOME GBP\",\n            \"longName\": \"Montello Pvt Fin Grl Ptnrs Income GBP\",\n            \"description\": \"Income GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B648C163\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2010-05-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1000,\n                \"ask\": 1000,\n                \"mid\": 1000\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"KVE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.535Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253876\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S6\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S6\",\n            \"description\": \"Inflation Lk UK Sovereign Bd S6\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X340\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-02T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.11,\n                \"ask\": 11.11,\n                \"mid\": 11.11\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCG1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253892\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS STERLING BOND PROG 4\",\n            \"longName\": \"Coutts Sterling Bond Prog 4\",\n            \"description\": \"Sterling Bond Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254418\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.1,\n                \"ask\": 10.1,\n                \"mid\": 10.1\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD74\",\n                \"mexId\": \"QCSBI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.973Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253894\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK EQUITY PROG 3\",\n            \"longName\": \"Coutts UK Equity Prog 3\",\n            \"description\": \"UK Equity Prog 3\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008139858\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.44,\n                \"ask\": 12.44,\n                \"mid\": 12.44\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD77\",\n                \"mexId\": \"QCUEPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.817Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253856\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL EMG MKTS EQUITY S2\",\n            \"longName\": \"NatWest Global Emerging Markets Equity S2\",\n            \"description\": \"Global Emg Mkts Equity S2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8XR80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 10.37,\n                \"ask\": 10.37,\n                \"mid\": 10.37\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C6F2\",\n                \"mexId\": \"NWGEMT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.356Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253860\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST PAC BASIN&GBL EMG MKT EQ 2\",\n            \"longName\": \"NatWest Pacific Basin & Global Emerging Markets Equity 2\",\n            \"description\": \"Pac Basin&Gbl Emg Mkt Eq 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008290016\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.66,\n                \"ask\": 20.66,\n                \"mid\": 20.66\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND66\",\n                \"mexId\": \"NWPBI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.315Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253872\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL EMG MKTS EQUITY S1\",\n            \"longName\": \"NatWest Global Emerging Markets Equity S1\",\n            \"description\": \"Global Emg Mkts Equity S1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8XQ73\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 10.8,\n                \"ask\": 10.8,\n                \"mid\": 10.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C6F1\",\n                \"mexId\": \"NWGEMO\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.258Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS CONTINENTAL EURPN SPCLIST 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Continental European Specialist 6 Inc\",\n            \"description\": \"Continental Eurpn Spclist 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719404\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 23.13,\n                \"ask\": 23.13,\n                \"mid\": 23.13\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB10\",\n                \"mexId\": \"RBCE6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.017Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125386c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W PLAIN ANDREWS\",\n            \"longName\": \"S&W Plain Andrews\",\n            \"description\": \"Plain Andrews\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B00NV387\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-04-06T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 137.9,\n                \"ask\": 137.9,\n                \"mid\": 137.9,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT24\",\n                \"mexId\": \"WLPA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.376Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538be\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W JETWAVE ACC\",\n            \"longName\": \"S&W Jetwave Acc\",\n            \"description\": \"Jetwave Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0033714139\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2003-12-19T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 196,\n                \"ask\": 179.5,\n                \"mid\": 187.75,\n                \"yield\": 2.53\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"KK26\",\n                \"mexId\": \"3KJETA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.234Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538ce\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT JAPAN GROWTH\",\n            \"longName\": \"HSBC Gbl PPUT Japan Growth\",\n            \"description\": \"PPUT Japan Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917538\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 31.48,\n                \"ask\": 31.48,\n                \"mid\": 31.48,\n                \"yield\": 0.83\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB56\",\n                \"mexId\": \"MDJPC\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.614Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538fa\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W KNOTTS INVESTMENT INC\",\n            \"longName\": \"S&W Knotts Investment Inc\",\n            \"description\": \"Knotts Investment Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B23X1065\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-09-17T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 136.4,\n                \"ask\": 136.4,\n                \"mid\": 136.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6O9\",\n                \"mexId\": \"SWKI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.827Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"AVIVA INV GBL DISTRIB BD A INC\",\n            \"longName\": \"Aviva Investors UK Fd Serv Global Distribution Bond A Inc\",\n            \"description\": \"Gbl Distrib Bd A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"XS0204463235\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-02-28T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 71.77,\n                \"ask\": 71.77,\n                \"mid\": 71.77\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"VU96\",\n                \"mexId\": \"CUBAB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.971Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d70001253902\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"FALCON PROPERTY\",\n            \"longName\": \"Falcon Property Property\",\n            \"description\": \"Property\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007050155\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-10-31T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2013-06-28T00:00:00.000Z\",\n                \"bid\": 2276,\n                \"ask\": 2113,\n                \"mid\": 2194.5,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FM60\",\n                \"mexId\": \"F3FP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.267Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253930\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB GREATER CH EQ ADVISER $\",\n            \"longName\": \"Neuberger Berman Europe Greater China Equity Adviser USD\",\n            \"description\": \"Greater Ch Eq Adviser $\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B543WZ88\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-07-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 14.39,\n                \"ask\": 14.39,\n                \"mid\": 14.39\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"China/Greater China\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FUI6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.090Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538dc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W KELWAY\",\n            \"longName\": \"S&W Kelway\",\n            \"description\": \"Kelway\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1N8ZF75\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-01-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 107.9,\n                \"ask\": 107.9,\n                \"mid\": 107.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"K331\",\n                \"mexId\": \"SWBAAE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.130Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538cc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB SHRT DURHIGH YLDBD I ACC GBP\",\n            \"longName\": \"Neuberger Berman Europe Short Duration High Yield Bond Inst Acc GBP\",\n            \"description\": \"Shrt DurHigh YldBd I Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B7FN4H78\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2011-12-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.62,\n                \"ask\": 11.62,\n                \"mid\": 11.62\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Sterling High Yield\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"0P9B\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.787Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB DIVERSIFIED CURR ADV USD\",\n            \"longName\": \"Neuberger Berman Europe Diversified Currency Advisor USD\",\n            \"description\": \"Diversified Curr Adv USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B3L3LT42\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-02-25T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.31,\n                \"ask\": 10.31,\n                \"mid\": 10.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Specialist\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"IFF6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.968Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538da\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT BRITISH\",\n            \"longName\": \"HSBC Gbl PPUT British\",\n            \"description\": \"PPUT British\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917314\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 323,\n                \"ask\": 323,\n                \"mid\": 323,\n                \"yield\": 2.52\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB54\",\n                \"mexId\": \"MDB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.055Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538ee\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MS1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BAL BRIDGE P INC\",\n            \"longName\": \"Standard Life Wealth Balanced Bridge P Inc\",\n            \"description\": \"Bal Bridge P Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B79DGQ66\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-12-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 106.2,\n                \"ask\": 106.2,\n                \"mid\": 106.2\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"GQJF\",\n                \"mexId\": \"RSNBBP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.543Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253936\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT FAR EAST ACC\",\n            \"longName\": \"Scottish Mutual Invest Far East Acc\",\n            \"description\": \"Far East Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007888562\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1987-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 523.84,\n                \"ask\": 496.34,\n                \"mid\": 510.09,\n                \"yield\": 1.55\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE65\",\n                \"mexId\": \"SMFEA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.314Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT NORTH AMERICAN INC\",\n            \"longName\": \"Scottish Mutual Invest North American Inc\",\n            \"description\": \"North American Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007888018\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1985-04-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1023.12,\n                \"ask\": 969.43,\n                \"mid\": 996.275,\n                \"yield\": 0.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North America\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE60\",\n                \"mexId\": \"SMNAMI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.629Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BRIDGE\",\n            \"longName\": \"Standard Life Wealth Bridge\",\n            \"description\": \"Bridge\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0006441181\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1994-02-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 215.9,\n                \"ask\": 215.9,\n                \"mid\": 215.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RZ09\",\n                \"mexId\": \"RSB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.170Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d7000125392e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT UK ALL SHARE INDEX\",\n            \"longName\": \"Scottish Mutual Invest UK All Share Index\",\n            \"description\": \"UK All Share Index\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004387865\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 261.49,\n                \"ask\": 243.26,\n                \"mid\": 252.375,\n                \"yield\": 3.22\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SG45\",\n                \"mexId\": \"SMUKOS\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.673Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W WORLDWIDE\",\n            \"longName\": \"S&W Worldwide\",\n            \"description\": \"Worldwide\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008528035\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1999-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 139.1,\n                \"ask\": 128.5,\n                \"mid\": 133.8,\n                \"yield\": 0.61\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BP56\",\n                \"mexId\": \"CGWW\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W JAY INC\",\n            \"longName\": \"S&W Jay Inc\",\n            \"description\": \"Jay Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B02Y7H58\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-09-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 145.4,\n                \"ask\": 145.4,\n                \"mid\": 145.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT27\",\n                \"mexId\": \"WLJAY\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.230Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538de\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQH\",\n            \"firmId\": \"SCUST\",\n            \"shortName\": \"HSBC FSAVC NORTH AMERICA\",\n            \"longName\": \"HSBC Gbl FSAVC North America\",\n            \"description\": \"FSAVC North America\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919245\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 191.2,\n                \"ask\": 191.2,\n                \"mid\": 191.2,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"M270\",\n                \"mexId\": \"MDFNA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T08:32:57.547Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"624bfeb9ee1c0c4accade3d6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT MANAGED\",\n            \"longName\": \"HSBC Gbl PPUT Managed\",\n            \"description\": \"PPUT Managed\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917645\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 179.5,\n                \"ask\": 179.5,\n                \"mid\": 179.5,\n                \"yield\": 1.13\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB57\",\n                \"mexId\": \"MDPM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.792Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538fe\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W MF\",\n            \"longName\": \"S&W MF\",\n            \"description\": \"MF\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1N8ZG82\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-01-22T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 124.8,\n                \"ask\": 124.8,\n                \"mid\": 124.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BDX2\",\n                \"mexId\": \"SWBAAF\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.348Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W SKYE INC\",\n            \"longName\": \"S&W Skye Inc\",\n            \"description\": \"Skye Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B043GD97\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-11-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 207,\n                \"ask\": 195.6,\n                \"mid\": 201.3,\n                \"yield\": 1.59\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT31\",\n                \"mexId\": \"WLSKYE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.723Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT FAR EAST INC\",\n            \"longName\": \"Scottish Mutual Invest Far East Inc\",\n            \"description\": \"Far East Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007890865\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1987-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 359.73,\n                \"ask\": 340.84,\n                \"mid\": 350.285,\n                \"yield\": 1.55\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE53\",\n                \"mexId\": \"SMFEAI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.402Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC JAPAN GROWTH\",\n            \"longName\": \"HSBC Gbl FSAVC Japan Growth\",\n            \"description\": \"FSAVC Japan Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919138\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 32.68,\n                \"ask\": 30.83,\n                \"mid\": 31.755,\n                \"yield\": 0.76\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB58\",\n                \"mexId\": \"MDFJP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.172Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538f0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT MONEY MARKET\",\n            \"longName\": \"HSBC Gbl PPUT Money Market\",\n            \"description\": \"PPUT Money Market\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917199\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-08-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 163.2,\n                \"ask\": 163.2,\n                \"mid\": 163.2,\n                \"yield\": 0.45\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB52\",\n                \"mexId\": \"MDMM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.817Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538ea\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W CHARITY VALUE AND INCOME INC\",\n            \"longName\": \"S&W Charity Value and Income Inc\",\n            \"description\": \"Charity Value and Income Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1YJPL53\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-06-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 93.3,\n                \"ask\": 92.69,\n                \"mid\": 92.995,\n                \"yield\": 3.86\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ABP9\",\n                \"mexId\": \"WLCVAI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.436Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HERIOT GLOBAL B ACC\",\n            \"longName\": \"Dundas Heriot Global B Acc\",\n            \"description\": \"Heriot Global B Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B67F3D33\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-03-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 100.23,\n                \"ask\": 100.23,\n                \"mid\": 100.23\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ICHD\",\n                \"mexId\": \"QEACVG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:01.179Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746d8587d7000125391c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC BRITISH\",\n            \"longName\": \"HSBC Gbl FSAVC British\",\n            \"description\": \"FSAVC British\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919021\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 306.2,\n                \"ask\": 288.9,\n                \"mid\": 297.55,\n                \"yield\": 2.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"M269\",\n                \"mexId\": \"MDFB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.453Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253934\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MS3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BAL BRIDGE\",\n            \"longName\": \"Standard Life Wealth Balanced Bridge\",\n            \"description\": \"Bal Bridge\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004833660\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-12-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 134.9,\n                \"ask\": 134.9,\n                \"mid\": 134.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BS77\",\n                \"mexId\": \"RSBBR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.809Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d7000125393a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W BRYN SIRIOL INC\",\n            \"longName\": \"S&W Bryn Siriol Inc\",\n            \"description\": \"Bryn Siriol Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B05HXM80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-06T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 164.6,\n                \"ask\": 164.6,\n                \"mid\": 164.6\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JU68\",\n                \"mexId\": \"SWBSI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d70001253916\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W STARHUNTER MANAGED ACC\",\n            \"longName\": \"S&W Starhunter Managed Acc\",\n            \"description\": \"Starhunter Managed Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004945621\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1995-09-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 299.9,\n                \"ask\": 280.9,\n                \"mid\": 290.4,\n                \"yield\": 0.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BJ31\",\n                \"mexId\": \"SWCAAR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.032Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538ca\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"THE SECOND MANAGED GROWTH\",\n            \"longName\": \"Cazenove Invest The Second Managed Growth\",\n            \"description\": \"The Second Managed Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030234578\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-02-27T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 102.1,\n                \"ask\": 102.1,\n                \"mid\": 102.1\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TI40\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.475Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"FRHLD INC ATHRSD FDR TST I ACC\",\n            \"longName\": \"TIME Freehold Income Authorised Feeder Trust I Acc\",\n            \"description\": \"Frhld Inc Athrsd Fdr Tst I Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B94RFB51\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-04-25T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-13T00:00:00.000Z\",\n                \"bid\": 4.3838,\n                \"ask\": 4.3838,\n                \"mid\": 4.3838\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Not yet assigned\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JBZF\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.530Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HERIOT GLOBAL A INC\",\n            \"longName\": \"Dundas Heriot Global A Inc\",\n            \"description\": \"Heriot Global A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B835GN22\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-03-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 98.32,\n                \"ask\": 98.32,\n                \"mid\": 98.32\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ICHC\",\n                \"mexId\": \"QENTVA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:09:03.348Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a09f6f8bde11ab31144716\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.00734,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0073,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"26MPJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB US SMALL CAP ADVISER ACC USD\",\n            \"longName\": \"Neuberger Berman Europe US Small Cap Adviser Acc USD\",\n            \"description\": \"US Small Cap Adviser Acc USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B64QTZ34\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2011-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.88,\n                \"ask\": 12.88,\n                \"mid\": 12.88\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North American Smaller Companies\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"04JT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.671Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VIRGIN PENSION GROWTH\",\n            \"longName\": \"Virgin Money Unit Tst Mgr Pension Growth\",\n            \"description\": \"Pension Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0009264523\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1996-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 263.2,\n                \"ask\": 263.2,\n                \"mid\": 263.2,\n                \"yield\": 0.65\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"VI03\",\n                \"mexId\": \"V7PG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:01.464Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746d8587d70001253922\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC MANAGED\",\n            \"longName\": \"HSBC Gbl FSAVC Managed\",\n            \"description\": \"FSAVC Managed\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005918833\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 179.6,\n                \"ask\": 169.5,\n                \"mid\": 174.55,\n                \"yield\": 1.05\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB49\",\n                \"mexId\": \"MDFPM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.347Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538f4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        }\n    ],\n    \"meta\": {\n        \"count\": 34466,\n        \"page\": 1,\n        \"pageSize\": 100\n    }\n}"},{"id":"8cdc3243-2822-45e7-906b-71d126c76b5c","name":"Query by ISIN","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{apiRoute}}/masterinstrument/{{firmId}}/?isin=GB00B3TYHH97","host":["{{apiRoute}}"],"path":["masterinstrument","{{firmId}}",""],"query":[{"key":"idOrName","value":"van","disabled":true},{"key":"isin","value":"GB00BFBFZ140","disabled":true},{"key":"instrumentType","value":"ETF","disabled":true},{"key":"currency","value":"EUR","disabled":true},{"key":"ticker","value":"H4ZG","disabled":true},{"key":"isin","value":"GB00B3TYHH97"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1166"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 15:59:43 GMT"},{"key":"x-amzn-RequestId","value":"dafc3638-4378-4c54-8616-537a3ef5e43f"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1166"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VkrxbFJKDoEFq_g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"48e-xmHNfh7wRzeMTYTBJOFIlzAylsc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d8266f-6a4d2b2e23e4d7a4225c9522;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8566cb770d0695bb6bffb61a26f5b400.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"nIPa6OdORzV1A0DsEL8Bw_5bvq-06fTt5AnH5O2NWMBHvFvjTTOCyQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"275F1\",\n            \"updateId\": \"62a0a1718bde11ab31144b5a\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 60% Equity Acc\",\n            \"description\": \"LifeStrategy 60% Equi Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B3TYHH97\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"firmAccessProhibited\": true,\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 196.2,\n                \"ask\": 196.2,\n                \"mid\": 196.2,\n                \"yield\": 0.0152\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDQ\",\n                \"mexId\": \"VVLFST\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:17:37.045Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"},{"id":"17cb27ae-3777-4238-b325-fc5a27c5bae5","name":"Query by name","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{apiRoute}}/masterinstrument/{{firmId}}/?idOrName=van","host":["{{apiRoute}}"],"path":["masterinstrument","{{firmId}}",""],"query":[{"key":"isin","value":"GB00BFBFZ140","disabled":true},{"key":"currency","value":"EUR","disabled":true},{"key":"ticker","value":"H4ZG","disabled":true},{"key":"idOrName","value":"van"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"41462"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:00:09 GMT"},{"key":"x-amzn-RequestId","value":"4de2b518-2d7f-45d6-b376-9878bd49bb89"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"41462"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Vkr1YGRIDoEF8HQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"a1f6-7up1PCvFXbgSz1IrhJ1nX+s/4Tg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d82688-2b6513dd19babd732aedfb56;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8566cb770d0695bb6bffb61a26f5b400.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"K4rxWwsYeIXOvCHMh8imKnKuqtAMJae99VIvEjspgsEJ5MStoo0EaA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"26QHF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE DVPEUR XUK EQIDX A\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE Developed Europe ex UK Equity Index Acc\",\n            \"description\": \"FTSE DvpEur XUK EqIdx A\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B5B71H80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 170.4624,\n                \"ask\": 170.4624,\n                \"mid\": 170.4624\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD1\",\n                \"mexId\": \"VVDEEU\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:10:52.871Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a09fdc8bde11ab31144802\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0003\n            }\n        },\n        {\n            \"id\": \"2744P\",\n            \"updateId\": \"62a0a19d8bde11ab31144bb6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 40% EQUI INC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 40% Equity Inc\",\n            \"description\": \"LifeStrategy 40% Equi Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B41F6L43\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 115.6171,\n                \"ask\": 115.6171,\n                \"mid\": 115.6171\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDP\",\n                \"mexId\": \"VVLFSI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:21.087Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"2744N\",\n            \"updateId\": \"62a0a1a18bde11ab31144bbe\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 40% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 40% Equity Acc\",\n            \"description\": \"LifeStrategy 40% Equi Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B3ZHN960\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 178.6,\n                \"ask\": 178.6,\n                \"mid\": 178.6,\n                \"yield\": 0.014\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDO\",\n                \"mexId\": \"VVLFSU\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:25.286Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"27426\",\n            \"updateId\": \"62a0a1a38bde11ab31144bc2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 20% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 20% Equity Acc\",\n            \"description\": \"LifeStrategy 20% Equi Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4NXY349\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 162,\n                \"ask\": 162,\n                \"mid\": 162,\n                \"yield\": 0.015\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 0%-35% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDM\",\n                \"mexId\": \"VVLFSE\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:27.217Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"27428\",\n            \"updateId\": \"62a0a1a48bde11ab31144bc4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 100% EQ ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 100% Equity Acc\",\n            \"description\": \"LifeStrategy 100% Eq Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B41XG308\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 232.3,\n                \"ask\": 232.3,\n                \"mid\": 232.3,\n                \"yield\": 0.0181\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDV\",\n                \"mexId\": \"VVLSRU\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:28.020Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"27427\",\n            \"updateId\": \"62a0a14e8bde11ab31144b10\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 20% EQUI INC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 20% Equity Inc\",\n            \"description\": \"LifeStrategy 20% Equi Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4620290\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 113.9015,\n                \"ask\": 113.9015,\n                \"mid\": 113.9015\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 0%-35% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDN\",\n                \"mexId\": \"VVLFSQ\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:17:02.499Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"27429\",\n            \"updateId\": \"62a0a1488bde11ab31144b04\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 100% EQ INC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 100% Equity Inc\",\n            \"description\": \"LifeStrategy 100% Eq Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B545NX97\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 203.5,\n                \"ask\": 203.5,\n                \"mid\": 203.5,\n                \"yield\": 0.0184\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDW\",\n                \"mexId\": \"VVLSRI\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:56.841Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"275F1\",\n            \"updateId\": \"62a0a1718bde11ab31144b5a\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 60% Equity Acc\",\n            \"description\": \"LifeStrategy 60% Equi Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B3TYHH97\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 196.2,\n                \"ask\": 196.2,\n                \"mid\": 196.2,\n                \"yield\": 0.0152\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDQ\",\n                \"mexId\": \"VVLFST\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:17:37.045Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"275FD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD EMG MKTS STK IDX A GBP\",\n            \"longName\": \"Vanguard Investment Series Emerging Markets Stock Index Acc GBP\",\n            \"description\": \"Emg Mkts Stk Idx A GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B50MZ724\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2006-06-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 227.1836,\n                \"ask\": 227.1836,\n                \"mid\": 227.1836,\n                \"yield\": 0.0124\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global Emerging Markets\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPE5\",\n                \"mexId\": \"VIEMKT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:17:43.512Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1778bde11ab31144b68\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0023,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0001\n            }\n        },\n        {\n            \"id\": \"27597\",\n            \"updateId\": \"62a0a12c8bde11ab31144ac6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE UK EQ INC IDX A\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE UK Equity Income Index Acc\",\n            \"description\": \"FTSE UK Eq Inc Idx A\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B59G4H82\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2018-06-08T00:00:00.000Z\",\n                \"bid\": 268.61,\n                \"ask\": 268.61,\n                \"mid\": 268.61\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"executionMethod\": \"Automatic\",\n            \"automaticExecutionRoute\": \"Calastone\",\n            \"defaultDepot\": \"Allfunds\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 0,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Equity Income\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPC7\",\n                \"mexId\": \"VVUEIN\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:28.895Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0014,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0008\n            }\n        },\n        {\n            \"id\": \"27649\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD UK LONG DURGLT ID ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd UK Long Duration Gilt Index Acc\",\n            \"description\": \"UK Long DurGlt Id Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4M89245\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-02-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-15T00:00:00.000Z\",\n                \"bid\": 217.7267,\n                \"ask\": 217.7267,\n                \"mid\": 217.7267,\n                \"yield\": 0.014\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Gilts\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MEC7\",\n                \"mexId\": \"VVUKLD\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:29.765Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a12d8bde11ab31144ac8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"27599\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE DVP WLD EX UK EQIDX A\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE Developed World ex UK Equity Index Acc\",\n            \"description\": \"FTSE Dvp Wld Ex UK EqIdx A\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B59G4Q73\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 183.4614,\n                \"ask\": 183.4614,\n                \"mid\": 183.4614\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPC9\",\n                \"mexId\": \"VVDVWE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:17:55.341Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1838bde11ab31144b80\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0014,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"27598\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE UK EQ INC IDX I\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE UK Equity Income Index Inc\",\n            \"description\": \"FTSE UK Eq Inc Idx I\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B5B74684\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-15T00:00:00.000Z\",\n                \"bid\": 164.2215,\n                \"ask\": 164.2215,\n                \"mid\": 164.2215,\n                \"yield\": 0.057\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Equity Income\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPC8\",\n                \"mexId\": \"VVUKEI\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:32.568Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1308bde11ab31144ace\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0014,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0008\n            }\n        },\n        {\n            \"id\": \"2759B\",\n            \"updateId\": \"62a0a1338bde11ab31144ad4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE DVP WLD EX UK EQIDX I\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE Developed World ex UK Equity Index Inc\",\n            \"description\": \"FTSE Dvp Wld Ex UK EqIdx I\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B5B74F71\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 321.4,\n                \"ask\": 321.4,\n                \"mid\": 321.4,\n                \"yield\": 0.0187\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD0\",\n                \"mexId\": \"VVDWEU\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:35.245Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 5,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0014,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"275J3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD GBL SMALL-CAP IDX ACCGBP\",\n            \"longName\": \"Vanguard Investment Series Global Small-Cap Index Acc GBP\",\n            \"description\": \"Gbl Small-Cap Idx AccGBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B3X1NT05\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-12-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 304.6303,\n                \"ask\": 304.6303,\n                \"mid\": 304.6303,\n                \"yield\": 0.0098\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I2X3\",\n                \"mexId\": \"VIGSCA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:09.170Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1918bde11ab31144b9c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0031,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"275NR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD GBL BD IDX HDG A GBP\",\n            \"longName\": \"Vanguard Investment Series Global Bond Index Hedge Acc GBP\",\n            \"description\": \"Gbl Bd Idx Hdg A GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B50W2R13\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2008-03-31T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 130.3005,\n                \"ask\": 130.3005,\n                \"mid\": 130.3005\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global Bonds\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD9\",\n                \"mexId\": \"VIGBBD\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:39.504Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1378bde11ab31144ade\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0015,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0015\n            }\n        },\n        {\n            \"id\": \"2756G\",\n            \"updateId\": \"62a0a18e8bde11ab31144b96\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 80% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc\",\n            \"description\": \"LifeStrategy 80% Equi Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4PQW151\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"bid\": 212.1,\n                \"ask\": 212.1,\n                \"mid\": 212.1,\n                \"yield\": 0.0168\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDT\",\n                \"mexId\": \"VVLSRE\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"ocfEstimated\": 0.0025,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:06.006Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 7,\n                \"application\": \"CoreAPI\"\n            },\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"2756H\",\n            \"updateId\": \"62a0a1ba8bde11ab31144bf8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 80% EQUI INC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Inc\",\n            \"description\": \"LifeStrategy 80% Equi Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4KWNF91\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 118.5023,\n                \"ask\": 118.5023,\n                \"mid\": 118.5023\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDU\",\n                \"mexId\": \"VVLSRQ\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:50.645Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"275H1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD PAC XJ STK IDX A GBP\",\n            \"longName\": \"Vanguard Investment Series Pacific ex Japan Stock Index Acc GBP\",\n            \"description\": \"Pac XJ Stk Idx A GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B523L313\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2005-07-22T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 177.1498,\n                \"ask\": 177.1498,\n                \"mid\": 177.1498\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPE1\",\n                \"mexId\": \"VIPFEJ\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:16:40.435Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1388bde11ab31144ae0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0016,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0003\n            }\n        },\n        {\n            \"id\": \"27648\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD SRI EUROPEAN STK INC GBP\",\n            \"longName\": \"Vanguard Investment Series SRI European Stock Inc GBP\",\n            \"description\": \"SRI European Stk Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B76VTR58\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2010-06-29T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 124.0259,\n                \"ask\": 124.0259,\n                \"mid\": 124.0259\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Including UK\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"0GDS\",\n                \"mexId\": \"VIANDU\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:18:58.911Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1c28bde11ab31144c08\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0014,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"275F2\",\n            \"updateId\": \"62a0a1ca8bde11ab31144c18\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI INC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 60% Equity Inc\",\n            \"description\": \"LifeStrategy 60% Equi Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4R2F348\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 117.1431,\n                \"ask\": 117.1431,\n                \"mid\": 117.1431\n            },\n            \"executionMethod\": \"Dealer\",\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ACDS\",\n                \"mexId\": \"VVLFSY\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:19:06.777Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"CoreAPI\"\n            },\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0005\n            }\n        },\n        {\n            \"id\": \"275J1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD UK INVT GR BD IDX ACC GBP\",\n            \"longName\": \"Vanguard Investment Series UK Investment Grade Bond Index Acc GBP\",\n            \"description\": \"UK Invt Gr Bd Idx Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B1S74Q32\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2007-03-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 74.7067,\n                \"ask\": 74.7067,\n                \"mid\": 74.7067\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Sterling Corporate Bond\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD5\",\n                \"mexId\": \"VIUKGB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:19:25.253Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1dd8bde11ab31144c42\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": -0.0001\n            }\n        },\n        {\n            \"id\": \"2765H\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD UK INFLA LKD GLT ID ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd UK Inflation Linked Gilt Index Acc\",\n            \"description\": \"UK Infla Lkd Glt Id Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B45Q9038\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-02-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 127.1683,\n                \"ask\": 127.1683,\n                \"mid\": 127.1683\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Index - Linked Gilts\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MEC5\",\n                \"mexId\": \"VVUILG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:19:07.683Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1cb8bde11ab31144c1a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0001\n            }\n        },\n        {\n            \"id\": \"2765J\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD UK INFLA LKD GLT ID INC\",\n            \"longName\": \"Vanguard Investments UK Ltd UK Inflation Linked Gilt Index Inc\",\n            \"description\": \"UK Infla Lkd Glt Id Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B467FS56\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-02-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 126.5984,\n                \"ask\": 126.5984,\n                \"mid\": 126.5984\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Index - Linked Gilts\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MEC6\",\n                \"mexId\": \"VVUILT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:19:09.351Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1cd8bde11ab31144c1e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0001\n            }\n        },\n        {\n            \"id\": \"2776S\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD US EQUITY INDEX I\",\n            \"longName\": \"Vanguard Investments UK Ltd US Equity Index Inc\",\n            \"description\": \"US Equity Index I\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B5B74S01\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 446.4,\n                \"ask\": 446.4,\n                \"mid\": 446.4,\n                \"yield\": 0.0148\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North America\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD4\",\n                \"mexId\": \"VVUSEQ\",\n                \"accumulationOrIncome\": \"Income\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:20:31.146Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a21f8bde11ab31144cd6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.001,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"2776R\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD US EQUITY INDEX A\",\n            \"longName\": \"Vanguard Investments UK Ltd US Equity Index Acc\",\n            \"description\": \"US Equity Index A\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B5B71Q71\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"bid\": 518.5,\n                \"ask\": 518.5,\n                \"mid\": 518.5,\n                \"yield\": 0.0146\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North America\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD3\",\n                \"mexId\": \"VVUSEI\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:20:09.248Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a2098bde11ab31144ca6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.001,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"27783\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD FTSE U.K. ALL SHARE INDEX\",\n            \"longName\": \"Vanguard Investments UK Ltd FTSE U.K. All Share Index\",\n            \"description\": \"FTSE U.K. All Share Index\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B3X7QG63\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-12-04T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 148.2047,\n                \"ask\": 148.2047,\n                \"mid\": 148.2047\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"HRP3\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:19:54.476Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a1fa8bde11ab31144c86\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0006,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0003\n            }\n        },\n        {\n            \"id\": \"278MN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VANGUARD UK GOVT BOND IDX ACC GBP\",\n            \"longName\": \"Vanguard Investment Series UK Government Bond Index Acc GBP\",\n            \"description\": \"UK Govt Bond Idx Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B1S75374\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 128.2263,\n                \"ask\": 128.2263,\n                \"mid\": 128.2263\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Gilts\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FPD7\",\n                \"mexId\": \"VIUKGO\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:22:30.844Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a0a2968bde11ab31144de0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0012,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0003\n            }\n        },\n        {\n            \"id\": \"27JMM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"ADVANTEST CORP\",\n            \"longName\": \"Advantest Corp\",\n            \"instrumentType\": \"Equity\",\n            \"isin\": \"JP3122400009\",\n            \"ticker\": \"VAN\",\n            \"mic\": \"XFRA\",\n            \"currency\": \"EUR\",\n            \"countryOfIssue\": \"DE\",\n            \"countryOfIncorporation\": \"JP\",\n            \"status\": \"Active\",\n            \"defaultDepot\": \"Crest\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"JPY\",\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:27:26.712Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d79ae8587d7000125933a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"EUR\"\n        },\n        {\n            \"id\": \"297L5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard FTSE 100 Index Unit Trust Acc\",\n            \"longName\": \"Vanguard FTSE 100 Index Unit Trust Acc\",\n            \"description\": \"Vanguard FTSE 100 Index Unit Trust Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BD3RZ368\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": false,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-02-16T00:00:00.000Z\",\n                \"bid\": 135.3526,\n                \"ask\": 135.3526,\n                \"mid\": 135.3526,\n                \"yield\": 0.0337\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VRXXC\",\n                \"accumulationOrIncome\": \"Accumulation\"\n            },\n            \"ocfCalculated\": 0.0006,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-17T11:51:21.947Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"620e36b9007fda0009f43258\"\n        },\n        {\n            \"id\": \"2983B\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2065 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2065 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2065 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BF38WX24\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 133.3704,\n                \"ask\": 133.3704,\n                \"mid\": 133.3704,\n                \"yield\": 0.0128\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVNMB\"\n            },\n            \"ocfCalculated\": 0.0034,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:38:45.291Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622618f57ba66100094ce3c8\"\n        },\n        {\n            \"id\": \"2983C\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2020 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2020 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2020 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VJ593\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 155.6613,\n                \"ask\": 155.6613,\n                \"mid\": 155.6613,\n                \"yield\": 0.0128\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXB\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:39:49.434Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622619357ba66100094ce3c9\"\n        },\n        {\n            \"id\": \"2983D\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2025 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2025 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2025 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VJB58\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 161.4632,\n                \"ask\": 161.4632,\n                \"mid\": 161.4632,\n                \"yield\": 0.0147\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXC\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:03.255Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622619437ba66100094ce3ca\"\n        },\n        {\n            \"id\": \"2983F\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2030 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2030 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2030 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VJD72\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 166.3206,\n                \"ask\": 166.3206,\n                \"mid\": 166.3206,\n                \"yield\": 0.0144\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXD\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:11.210Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6226194b7ba66100094ce3cb\"\n        },\n        {\n            \"id\": \"2983G\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2035 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2035 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2035 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VJH11\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 170.6264,\n                \"ask\": 170.6264,\n                \"mid\": 170.6264,\n                \"yield\": 0.0152\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXE\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:18.551Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622619527ba66100094ce3cc\"\n        },\n        {\n            \"id\": \"2983H\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2040 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2040 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2040 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VK781\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 175.3422,\n                \"ask\": 175.3422,\n                \"mid\": 175.3422,\n                \"yield\": 0.0147\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXF\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:30.695Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6226195e7ba66100094ce3cd\"\n        },\n        {\n            \"id\": \"2983J\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2045 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2045 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2045 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VK898\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 178.4631,\n                \"ask\": 178.4631,\n                \"mid\": 178.4631,\n                \"yield\": 0.0152\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXG\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:37.800Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622619657ba66100094ce3ce\"\n        },\n        {\n            \"id\": \"2983K\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2050 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2050 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2050 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VKT06\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 178.7746,\n                \"ask\": 178.7746,\n                \"mid\": 178.7746,\n                \"yield\": 0.0146\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXH\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:44.422Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6226196c7ba66100094ce3cf\"\n        },\n        {\n            \"id\": \"2983L\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2055 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2055 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2055 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BZ6VKV28\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 179.1912,\n                \"ask\": 179.1912,\n                \"mid\": 179.1912,\n                \"yield\": 0.0155\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVXXI\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:51.518Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"622619737ba66100094ce3d0\"\n        },\n        {\n            \"id\": \"2983M\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"Vanguard Target Retirement 2060 Fund Acc\",\n            \"longName\": \"Vanguard Target Retirement 2060 Fund Acc\",\n            \"description\": \"Vanguard Target Retirement 2060 Fund Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00BF38WW17\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-03-03T00:00:00.000Z\",\n                \"bid\": 133.4019,\n                \"ask\": 133.4019,\n                \"mid\": 133.4019,\n                \"yield\": 0.0134\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 2,\n            \"incomeCurrency\": \"GBP\",\n            \"taxDetails\": [\n                {\n                    \"taxDomicile\": \"GB\",\n                    \"reportCategory\": \"UK Dividend\"\n                }\n            ],\n            \"fundDetail\": {\n                \"mexId\": \"VVNMA\"\n            },\n            \"ocfCalculated\": 0.0024,\n            \"restricted\": false,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-07T14:40:59.854Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6226197b7ba66100094ce3d1\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 40\n    }\n}"},{"id":"74ee729c-6e92-4f4b-82ea-3f86d7befc49","name":"Query by instrument type","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{apiRoute}}/masterinstrument/{{firmId}}/?instrumentType=Fund","host":["{{apiRoute}}"],"path":["masterinstrument","{{firmId}}",""],"query":[{"key":"isin","value":"GB00BFBFZ140","disabled":true},{"key":"instrumentType","value":"ETF","disabled":true},{"key":"currency","value":"EUR","disabled":true},{"key":"ticker","value":"H4ZG","disabled":true},{"key":"instrumentType","value":"Fund"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"95099"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:00:54 GMT"},{"key":"x-amzn-RequestId","value":"3f83f85d-29f0-4319-b459-b5f29dec4927"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"95099"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Vkr8cF3JDoEF2Mg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1737b-FvgSqZxYjBlaK3A84t/wKkCYSto\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d826b5-1796a91642d3c18e42b3c0bc;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8566cb770d0695bb6bffb61a26f5b400.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"BuKJEiUuRhBT7jh-9G2AKktD-GaJ7ZdWuAZoV1y81BSnflKkt_SIuQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"26MM1\",\n            \"firmId\": \"SCUST\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"description\": \"Pacific Basin Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720733\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"bid\": 1.33,\n                \"ask\": 1.33,\n                \"mid\": 1.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB15\",\n                \"mexId\": \"RBPB5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T08:39:31.156Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 6,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"624c0043ee1c0c4accade3e0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS CONTINENTAL EURPN SPCLIST 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Continental European Specialist 5 Inc\",\n            \"description\": \"Continental Eurpn Spclist 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720519\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 22.51,\n                \"ask\": 22.51,\n                \"mid\": 22.51\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB09\",\n                \"mexId\": \"RBE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.111Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125386e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST PAC BASIN&GBL EMG MKT EQ 1\",\n            \"longName\": \"NatWest Pacific Basin & Global Emerging Markets Equity 1\",\n            \"description\": \"Pac Basin&Gbl Emg Mkt Eq 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008274259\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.85,\n                \"ask\": 20.85,\n                \"mid\": 20.85\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND65\",\n                \"mexId\": \"NWPBI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.207Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253870\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 6 Inc\",\n            \"description\": \"US Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719289\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.93,\n                \"ask\": 15.93,\n                \"mid\": 15.93\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB07\",\n                \"mexId\": \"RBNA6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.236Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W PITYOULISH\",\n            \"longName\": \"S&W Pityoulish\",\n            \"description\": \"Pityoulish\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R91P57\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-09-04T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 139.4,\n                \"ask\": 139.4,\n                \"mid\": 139.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"D2T0\",\n                \"mexId\": \"SWBAAH\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.247Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538bc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W DEUCALION\",\n            \"longName\": \"S&W Deucalion\",\n            \"description\": \"Deucalion\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0032637927\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2003-04-09T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1892,\n                \"ask\": 1892,\n                \"mid\": 1892\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT19\",\n                \"mexId\": \"WLDU\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.836Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK EQUITY PROG 4\",\n            \"longName\": \"Coutts UK Equity Prog 4\",\n            \"description\": \"UK Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254079\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.43,\n                \"ask\": 12.43,\n                \"mid\": 12.43\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD78\",\n                \"mexId\": \"QCUPI4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.920Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253858\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I GBP\",\n            \"longName\": \"Fund IM Truestone Global Impact I GBP\",\n            \"description\": \"IM Trustne Gbl Impct I GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4R4T055\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 92.6921,\n                \"ask\": 92.6921,\n                \"mid\": 92.6921\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F8\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.213Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253884\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE INV EUROPEAN TRUST II\",\n            \"longName\": \"Standard Life Investments European Trust II\",\n            \"description\": \"European Trust II\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1432509\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2006-06-21T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 159,\n                \"ask\": 159,\n                \"mid\": 159\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"EP97\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.693Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS UK SPEC EQUITY INCOME 5 INC\",\n            \"longName\": \"Royal Bank of Scotland UK Specialist Equity Income 5 Inc\",\n            \"description\": \"UK Spec Equity Income 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MQ07\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.544,\n                \"ask\": 9.544,\n                \"mid\": 9.544\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6Q2\",\n                \"mexId\": \"RBUSE5\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.325Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538aa\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE BALN R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Balanced Ret Acc GBP\",\n            \"description\": \"Stirling House Baln R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1674\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0275,\n                \"ask\": 1.0275,\n                \"mid\": 1.0275\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZY\",\n                \"mexId\": \"HTNGRE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.739Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S5\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S5\",\n            \"description\": \"Inflation Lk UK Sovereign Bd S5\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X233\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-02T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.24,\n                \"ask\": 11.24,\n                \"mid\": 11.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCG0\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.778Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253890\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 5 Inc\",\n            \"description\": \"Japan Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720626\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.33,\n                \"ask\": 12.33,\n                \"mid\": 12.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB12\",\n                \"mexId\": \"RBJE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.707Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPEC EQUITY INCOME 1 INC\",\n            \"longName\": \"NatWest UK Specialist Equity Income 1 Inc\",\n            \"description\": \"UK Spec Equity Income 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247ML51\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.569,\n                \"ask\": 9.569,\n                \"mid\": 9.569\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6P8\",\n                \"mexId\": \"NWUSE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.649Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253840\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST JAPAN EQUITY INCOME 1\",\n            \"longName\": \"NatWest Japan Equity Income 1\",\n            \"description\": \"Japan Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273848\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.143,\n                \"ask\": 8.143,\n                \"mid\": 8.143\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND59\",\n                \"mexId\": \"NWJEI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.412Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS PACIFIC BASIN PROG 4\",\n            \"longName\": \"Coutts Pacific Basin Prog 4\",\n            \"description\": \"Pacific Basin Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008260241\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.82,\n                \"ask\": 20.82,\n                \"mid\": 20.82\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD71\",\n                \"mexId\": \"QCPBI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.919Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125386a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 5 Inc\",\n            \"description\": \"US Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720402\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.49,\n                \"ask\": 15.49,\n                \"mid\": 15.49\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB06\",\n                \"mexId\": \"RBNA5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.136Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MML\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS JAPAN EQUITY PROG 4\",\n            \"longName\": \"Coutts Japan Equity Prog 4\",\n            \"description\": \"Japan Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008255605\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.522,\n                \"ask\": 8.522,\n                \"mid\": 8.522\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD66\",\n                \"mexId\": \"QCJPRI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.814Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253868\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S USD\",\n            \"longName\": \"Fund IM Truestone Global Impact S USD\",\n            \"description\": \"IM Trustne Gbl Impct S USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T70B05\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 93.8308,\n                \"ask\": 93.8308,\n                \"mid\": 93.8308\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F9\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.293Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253886\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNL\",\n            \"updateId\": \"5b767670a297f5106e742386\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST INFLATN LK UK SOVGN BD S2 GBP\",\n            \"longName\": \"NatWest Inflation Link UK Sovereign Bond S2 GBP\",\n            \"description\": \"Inflatn Lk UK Sovgn Bd S2 GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8WZ99\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1.112,\n                \"ask\": 1.112,\n                \"mid\": 1.112\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCF7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2018-08-17T07:17:04.060Z\",\n                \"userFirmId\": \"SHARED\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DFNSV R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Defensive Ret Inc GBP\",\n            \"description\": \"Stirling House Dfnsv R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1344\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0036,\n                \"ask\": 1.0036,\n                \"mid\": 1.0036\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JL9P\",\n                \"mexId\": \"HTOSED\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.647Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 6 Inc\",\n            \"description\": \"Japan Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719628\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.81,\n                \"ask\": 12.81,\n                \"mid\": 12.81\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB13\",\n                \"mexId\": \"RBJE6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.811Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d700012538a0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNS\",\n            \"updateId\": \"62b43297c7ebaa2592a5bffc\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS STERLING BOND 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Sterling Bond 5 Inc\",\n            \"description\": \"Sterling Bond 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720956\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.948,\n                \"ask\": 9.948,\n                \"mid\": 9.948\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB18\",\n                \"mexId\": \"RBSB5I\"\n            },\n            \"ocfEstimated\": 0.0025,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-23T09:29:59.619Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 1855,\n                \"application\": \"CoreAPI\"\n            }\n        },\n        {\n            \"id\": \"26MPC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DYNAMIC R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Dynamic Ret Acc GBP\",\n            \"description\": \"Stirling House Dynamic R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1898\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0262,\n                \"ask\": 1.0262,\n                \"mid\": 1.0262\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10C\",\n                \"mexId\": \"HTDYCI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.151Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538ba\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST CONTINENTAL EUROPEAN 1 INC\",\n            \"longName\": \"NatWest Continental European 1 Inc\",\n            \"description\": \"Continental European 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273285\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.24,\n                \"ask\": 15.24,\n                \"mid\": 15.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND55\",\n                \"mexId\": \"NWCE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.187Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 6 Inc\",\n            \"description\": \"Pacific Basin Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719842\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 36.45,\n                \"ask\": 36.45,\n                \"mid\": 36.45\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB16\",\n                \"mexId\": \"RBPB6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.095Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253848\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GIG BOND S2\",\n            \"longName\": \"NatWest GIG Bond S2\",\n            \"description\": \"GIG Bond S2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X787\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.73,\n                \"ask\": 10.73,\n                \"mid\": 10.73\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C0V5\",\n                \"mexId\": \"NWGIG2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.456Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253862\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS UK SPEC EQUITY INCOME 6 INC\",\n            \"longName\": \"Royal Bank of Scotland UK Specialist Equity Income 6 Inc\",\n            \"description\": \"UK Spec Equity Income 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MR14\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.08,\n                \"ask\": 10.08,\n                \"mid\": 10.08\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6Q3\",\n                \"mexId\": \"RBUSE6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.409Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538ac\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST JAPAN EQUITY INCOME 2\",\n            \"longName\": \"NatWest Japan Equity Income 2\",\n            \"description\": \"Japan Equity Income 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008287293\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.533,\n                \"ask\": 8.533,\n                \"mid\": 8.533\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND60\",\n                \"mexId\": \"NWJEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.531Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253850\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MND\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I EUR\",\n            \"longName\": \"Fund IM Truestone Global Impact I EUR\",\n            \"description\": \"IM Trustne Gbl Impct I EUR\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4XHLM49\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"EUR\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 96.8521,\n                \"ask\": 96.8521,\n                \"mid\": 96.8521\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"EUR\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.591Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"EUR\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE GROWTH R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Growth Ret Acc GBP\",\n            \"description\": \"Stirling House Growth R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1450\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0382,\n                \"ask\": 1.0382,\n                \"mid\": 1.0382\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10A\",\n                \"mexId\": \"HTWOGS\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.931Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SOVEREIGN BOND IDX INC 1\",\n            \"longName\": \"NatWest UK Sovereign Bond Index Income 1\",\n            \"description\": \"UK Sovereign Bond Idx Inc 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008268202\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.15,\n                \"ask\": 10.15,\n                \"mid\": 10.15\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND68\",\n                \"mexId\": \"NWSBI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.334Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS NORTH AMERICAN EQUITY PROG 4\",\n            \"longName\": \"Coutts North American Equity Prog 4\",\n            \"description\": \"North American Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254855\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.73,\n                \"ask\": 11.73,\n                \"mid\": 11.73\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD69\",\n                \"mexId\": \"QCNPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.652Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253866\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE BALN R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Balanced Ret Inc GBP\",\n            \"description\": \"Stirling House Baln R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1781\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0208,\n                \"ask\": 1.0208,\n                \"mid\": 1.0208\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZZ\",\n                \"mexId\": \"HTRLNG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.832Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE GROWTH R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Growth Ret Inc GBP\",\n            \"description\": \"Stirling House Growth R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1567\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0279,\n                \"ask\": 1.0279,\n                \"mid\": 1.0279\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10B\",\n                \"mexId\": \"HTSEWR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.027Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538b8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"BARCLAYS AQUILA EMRG MKTS INC\",\n            \"longName\": \"Barclays Funds Aquila Emerging Markets Inc\",\n            \"description\": \"Aquila Emrg Mkts Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B06XZJ66\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-30T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-14T00:00:00.000Z\",\n                \"bid\": 391.4,\n                \"ask\": 381.1,\n                \"mid\": 386.25,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FVE8\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.727Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DFNSV R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Defensive Ret Acc GBP\",\n            \"description\": \"Stirling House Dfnsv R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1237\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0022,\n                \"ask\": 1.0022,\n                \"mid\": 1.0022\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZW\",\n                \"mexId\": \"HTSEIV\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.534Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538ae\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPECIALIST EQUITY 1 INC\",\n            \"longName\": \"NatWest UK Specialist Equity 1 Inc\",\n            \"description\": \"UK Specialist Equity 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4L38\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.65,\n                \"ask\": 18.65,\n                \"mid\": 18.65\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"NS10\",\n                \"mexId\": \"QCSE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.631Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253852\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK SPECIALIST EQUITY 4\",\n            \"longName\": \"Coutts UK Specialist Equity 4\",\n            \"description\": \"UK Specialist Equity 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4S07\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.84,\n                \"ask\": 18.84,\n                \"mid\": 18.84\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"YA97\",\n                \"mexId\": \"QCSE4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.907Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253844\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST US SPECIALIST EQUITY 2 INC\",\n            \"longName\": \"NatWest US Specialist Equity 2 Inc\",\n            \"description\": \"US Specialist Equity 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008276072\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.77,\n                \"ask\": 11.77,\n                \"mid\": 11.77\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND63\",\n                \"mexId\": \"NWNAEI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.135Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL INV GRADE BD S1\",\n            \"longName\": \"NatWest Global Investment Grade Bond S1\",\n            \"description\": \"Global Inv Grade Bd S1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X670\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.67,\n                \"ask\": 10.67,\n                \"mid\": 10.67\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C0V4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.553Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253864\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK EQUITY INCOME 2\",\n            \"longName\": \"NatWest UK Equity Income 2\",\n            \"description\": \"UK Equity Income 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008274812\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.46,\n                \"ask\": 12.46,\n                \"mid\": 12.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND71\",\n                \"mexId\": \"NWUEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.931Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S GBP\",\n            \"longName\": \"Fund IM Truestone Global Impact S GBP\",\n            \"description\": \"IM Trustne Gbl Impct S GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4W5ZM74\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 91.4301,\n                \"ask\": 91.4301,\n                \"mid\": 91.4301\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.110Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253882\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SOVEREIGN BOND IDX INC 2\",\n            \"longName\": \"NatWest UK Sovereign Bond Index Income 2\",\n            \"description\": \"UK Sovereign Bond Idx Inc 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008275223\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.26,\n                \"ask\": 10.26,\n                \"mid\": 10.26\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND69\",\n                \"mexId\": \"NWSBI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.431Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST CONTINENTAL EUROPEAN 2 INC\",\n            \"longName\": \"NatWest Continental European 2 Inc\",\n            \"description\": \"Continental European 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008282807\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.8,\n                \"ask\": 15.8,\n                \"mid\": 15.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND57\",\n                \"mexId\": \"NWCEI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.314Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST US SPECIALIST EQUITY 1 INC\",\n            \"longName\": \"NatWest US Specialist Equity 1 Inc\",\n            \"description\": \"US Specialist Equity 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273061\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.46,\n                \"ask\": 11.46,\n                \"mid\": 11.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND61\",\n                \"mexId\": \"NWNAE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.034Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"BARCLAYS AQUILA EMRG MKTS ACC\",\n            \"longName\": \"Barclays Funds Aquila Emerging Markets Acc\",\n            \"description\": \"Aquila Emrg Mkts Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B06Y0X80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2009-06-30T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-14T00:00:00.000Z\",\n                \"bid\": 542,\n                \"ask\": 527.8,\n                \"mid\": 534.9,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FVE7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.633Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253878\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK EQUITY INCOME 1\",\n            \"longName\": \"NatWest UK Equity Income 1\",\n            \"description\": \"UK Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008267238\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.46,\n                \"ask\": 12.46,\n                \"mid\": 12.46\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND72\",\n                \"mexId\": \"NWUKE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.017Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253880\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I USD\",\n            \"longName\": \"Fund IM Truestone Global Impact I USD\",\n            \"description\": \"IM Trustne Gbl Impct I USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T5QW79\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 95.2069,\n                \"ask\": 95.2069,\n                \"mid\": 95.2069\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G0\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.394Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253888\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S EUR\",\n            \"longName\": \"Fund IM Truestone Global Impact S EUR\",\n            \"description\": \"IM Trustne Gbl Impct S EUR\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T5B330\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"EUR\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 95.5222,\n                \"ask\": 95.5222,\n                \"mid\": 95.5222\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"EUR\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6G1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.493Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"EUR\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST INFLATN LK UK SOVGN BD S1 GBP\",\n            \"longName\": \"NatWest Inflation Link UK Sovereign Bond S1 GBP\",\n            \"description\": \"Inflatn Lk UK Sovgn Bd S1 GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8WY82\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.02,\n                \"ask\": 11.02,\n                \"mid\": 11.02\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCF6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.114Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d70001253896\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS STERLING BOND 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Sterling Bond 6 Inc\",\n            \"description\": \"Sterling Bond 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720170\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10,\n                \"ask\": 10,\n                \"mid\": 10\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB19\",\n                \"mexId\": \"RBS5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.915Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d700012538a2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPEC EQUITY INCOME 2 INC\",\n            \"longName\": \"NatWest UK Specialist Equity Income 2 Inc\",\n            \"description\": \"UK Spec Equity Income 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MM68\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.08,\n                \"ask\": 10.08,\n                \"mid\": 10.08\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6P9\",\n                \"mexId\": \"NWUSG2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.771Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253842\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPECIALIST EQUITY 2 INC\",\n            \"longName\": \"NatWest UK Specialist Equity 2 Inc\",\n            \"description\": \"UK Specialist Equity 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B04X4P75\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 18.82,\n                \"ask\": 18.82,\n                \"mid\": 18.82\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"NS11\",\n                \"mexId\": \"QCST2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.719Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253854\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS CONTINENTAL EUROPEAN PROG 4\",\n            \"longName\": \"Coutts Continental European Prog 4\",\n            \"description\": \"Continental European Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008255266\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.75,\n                \"ask\": 15.75,\n                \"mid\": 15.75\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD62\",\n                \"mexId\": \"QCCEPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.418Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253874\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"MONTELLO INCOME GBP\",\n            \"longName\": \"Montello Pvt Fin Grl Ptnrs Income GBP\",\n            \"description\": \"Income GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B648C163\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2010-05-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1000,\n                \"ask\": 1000,\n                \"mid\": 1000\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"KVE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.535Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253876\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S6\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S6\",\n            \"description\": \"Inflation Lk UK Sovereign Bd S6\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X340\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-02T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.11,\n                \"ask\": 11.11,\n                \"mid\": 11.11\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCG1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253892\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS STERLING BOND PROG 4\",\n            \"longName\": \"Coutts Sterling Bond Prog 4\",\n            \"description\": \"Sterling Bond Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254418\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.1,\n                \"ask\": 10.1,\n                \"mid\": 10.1\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD74\",\n                \"mexId\": \"QCSBI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.973Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253894\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK EQUITY PROG 3\",\n            \"longName\": \"Coutts UK Equity Prog 3\",\n            \"description\": \"UK Equity Prog 3\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008139858\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.44,\n                \"ask\": 12.44,\n                \"mid\": 12.44\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD77\",\n                \"mexId\": \"QCUEPI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.817Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253856\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL EMG MKTS EQUITY S2\",\n            \"longName\": \"NatWest Global Emerging Markets Equity S2\",\n            \"description\": \"Global Emg Mkts Equity S2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8XR80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 10.37,\n                \"ask\": 10.37,\n                \"mid\": 10.37\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C6F2\",\n                \"mexId\": \"NWGEMT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.356Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253860\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST PAC BASIN&GBL EMG MKT EQ 2\",\n            \"longName\": \"NatWest Pacific Basin & Global Emerging Markets Equity 2\",\n            \"description\": \"Pac Basin&Gbl Emg Mkt Eq 2\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008290016\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.66,\n                \"ask\": 20.66,\n                \"mid\": 20.66\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND66\",\n                \"mexId\": \"NWPBI2\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.315Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253872\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST GLOBAL EMG MKTS EQUITY S1\",\n            \"longName\": \"NatWest Global Emerging Markets Equity S1\",\n            \"description\": \"Global Emg Mkts Equity S1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8XQ73\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-06-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 10.8,\n                \"ask\": 10.8,\n                \"mid\": 10.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"C6F1\",\n                \"mexId\": \"NWGEMO\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.258Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125385e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS CONTINENTAL EURPN SPCLIST 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Continental European Specialist 6 Inc\",\n            \"description\": \"Continental Eurpn Spclist 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719404\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 23.13,\n                \"ask\": 23.13,\n                \"mid\": 23.13\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB10\",\n                \"mexId\": \"RBCE6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.017Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125386c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W PLAIN ANDREWS\",\n            \"longName\": \"S&W Plain Andrews\",\n            \"description\": \"Plain Andrews\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B00NV387\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-04-06T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 137.9,\n                \"ask\": 137.9,\n                \"mid\": 137.9,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT24\",\n                \"mexId\": \"WLPA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.376Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538be\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W JETWAVE ACC\",\n            \"longName\": \"S&W Jetwave Acc\",\n            \"description\": \"Jetwave Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0033714139\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2003-12-19T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 196,\n                \"ask\": 179.5,\n                \"mid\": 187.75,\n                \"yield\": 2.53\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"KK26\",\n                \"mexId\": \"3KJETA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.234Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538ce\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT JAPAN GROWTH\",\n            \"longName\": \"HSBC Gbl PPUT Japan Growth\",\n            \"description\": \"PPUT Japan Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917538\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 31.48,\n                \"ask\": 31.48,\n                \"mid\": 31.48,\n                \"yield\": 0.83\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB56\",\n                \"mexId\": \"MDJPC\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.614Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538fa\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPK\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W KNOTTS INVESTMENT INC\",\n            \"longName\": \"S&W Knotts Investment Inc\",\n            \"description\": \"Knotts Investment Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B23X1065\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-09-17T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 136.4,\n                \"ask\": 136.4,\n                \"mid\": 136.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6O9\",\n                \"mexId\": \"SWKI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.827Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQR\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"AVIVA INV GBL DISTRIB BD A INC\",\n            \"longName\": \"Aviva Investors UK Fd Serv Global Distribution Bond A Inc\",\n            \"description\": \"Gbl Distrib Bd A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"XS0204463235\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-02-28T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 71.77,\n                \"ask\": 71.77,\n                \"mid\": 71.77\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"VU96\",\n                \"mexId\": \"CUBAB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.971Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d70001253902\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"FALCON PROPERTY\",\n            \"longName\": \"Falcon Property Property\",\n            \"description\": \"Property\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007050155\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-10-31T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2013-06-28T00:00:00.000Z\",\n                \"bid\": 2276,\n                \"ask\": 2113,\n                \"mid\": 2194.5,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FM60\",\n                \"mexId\": \"F3FP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.267Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253930\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB GREATER CH EQ ADVISER $\",\n            \"longName\": \"Neuberger Berman Europe Greater China Equity Adviser USD\",\n            \"description\": \"Greater Ch Eq Adviser $\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B543WZ88\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-07-14T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 14.39,\n                \"ask\": 14.39,\n                \"mid\": 14.39\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"China/Greater China\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"FUI6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.090Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538dc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPN\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W KELWAY\",\n            \"longName\": \"S&W Kelway\",\n            \"description\": \"Kelway\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1N8ZF75\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-01-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 107.9,\n                \"ask\": 107.9,\n                \"mid\": 107.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"K331\",\n                \"mexId\": \"SWBAAE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.130Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538cc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB SHRT DURHIGH YLDBD I ACC GBP\",\n            \"longName\": \"Neuberger Berman Europe Short Duration High Yield Bond Inst Acc GBP\",\n            \"description\": \"Shrt DurHigh YldBd I Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B7FN4H78\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2011-12-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.62,\n                \"ask\": 11.62,\n                \"mid\": 11.62\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Sterling High Yield\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"0P9B\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.787Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB DIVERSIFIED CURR ADV USD\",\n            \"longName\": \"Neuberger Berman Europe Diversified Currency Advisor USD\",\n            \"description\": \"Diversified Curr Adv USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B3L3LT42\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2009-02-25T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 10.31,\n                \"ask\": 10.31,\n                \"mid\": 10.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Specialist\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"IFF6\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.968Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538da\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT BRITISH\",\n            \"longName\": \"HSBC Gbl PPUT British\",\n            \"description\": \"PPUT British\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917314\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 323,\n                \"ask\": 323,\n                \"mid\": 323,\n                \"yield\": 2.52\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB54\",\n                \"mexId\": \"MDB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.055Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538ee\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MS1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BAL BRIDGE P INC\",\n            \"longName\": \"Standard Life Wealth Balanced Bridge P Inc\",\n            \"description\": \"Bal Bridge P Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B79DGQ66\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-12-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 106.2,\n                \"ask\": 106.2,\n                \"mid\": 106.2\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"GQJF\",\n                \"mexId\": \"RSNBBP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.543Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253936\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT FAR EAST ACC\",\n            \"longName\": \"Scottish Mutual Invest Far East Acc\",\n            \"description\": \"Far East Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007888562\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1987-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 523.84,\n                \"ask\": 496.34,\n                \"mid\": 510.09,\n                \"yield\": 1.55\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE65\",\n                \"mexId\": \"SMFEA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.314Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT NORTH AMERICAN INC\",\n            \"longName\": \"Scottish Mutual Invest North American Inc\",\n            \"description\": \"North American Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007888018\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1985-04-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1023.12,\n                \"ask\": 969.43,\n                \"mid\": 996.275,\n                \"yield\": 0.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North America\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE60\",\n                \"mexId\": \"SMNAMI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.629Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BRIDGE\",\n            \"longName\": \"Standard Life Wealth Bridge\",\n            \"description\": \"Bridge\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0006441181\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1994-02-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 215.9,\n                \"ask\": 215.9,\n                \"mid\": 215.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RZ09\",\n                \"mexId\": \"RSB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.170Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d7000125392e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT UK ALL SHARE INDEX\",\n            \"longName\": \"Scottish Mutual Invest UK All Share Index\",\n            \"description\": \"UK All Share Index\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004387865\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 261.49,\n                \"ask\": 243.26,\n                \"mid\": 252.375,\n                \"yield\": 3.22\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SG45\",\n                \"mexId\": \"SMUKOS\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.673Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W WORLDWIDE\",\n            \"longName\": \"S&W Worldwide\",\n            \"description\": \"Worldwide\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008528035\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1999-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 139.1,\n                \"ask\": 128.5,\n                \"mid\": 133.8,\n                \"yield\": 0.61\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BP56\",\n                \"mexId\": \"CGWW\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538d8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W JAY INC\",\n            \"longName\": \"S&W Jay Inc\",\n            \"description\": \"Jay Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B02Y7H58\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-09-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 145.4,\n                \"ask\": 145.4,\n                \"mid\": 145.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT27\",\n                \"mexId\": \"WLJAY\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.230Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538de\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQH\",\n            \"firmId\": \"SCUST\",\n            \"shortName\": \"HSBC FSAVC NORTH AMERICA\",\n            \"longName\": \"HSBC Gbl FSAVC North America\",\n            \"description\": \"FSAVC North America\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919245\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 191.2,\n                \"ask\": 191.2,\n                \"mid\": 191.2,\n                \"yield\": 0\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"M270\",\n                \"mexId\": \"MDFNA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T08:32:57.547Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"624bfeb9ee1c0c4accade3d6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT MANAGED\",\n            \"longName\": \"HSBC Gbl PPUT Managed\",\n            \"description\": \"PPUT Managed\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917645\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 179.5,\n                \"ask\": 179.5,\n                \"mid\": 179.5,\n                \"yield\": 1.13\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB57\",\n                \"mexId\": \"MDPM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.792Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538fe\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W MF\",\n            \"longName\": \"S&W MF\",\n            \"description\": \"MF\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1N8ZG82\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-01-22T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-03T00:00:00.000Z\",\n                \"bid\": 124.8,\n                \"ask\": 124.8,\n                \"mid\": 124.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BDX2\",\n                \"mexId\": \"SWBAAF\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.348Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W SKYE INC\",\n            \"longName\": \"S&W Skye Inc\",\n            \"description\": \"Skye Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B043GD97\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2004-11-16T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 207,\n                \"ask\": 195.6,\n                \"mid\": 201.3,\n                \"yield\": 1.59\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT31\",\n                \"mexId\": \"WLSKYE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.723Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQ7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"SCOT MUT FAR EAST INC\",\n            \"longName\": \"Scottish Mutual Invest Far East Inc\",\n            \"description\": \"Far East Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0007890865\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1987-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 359.73,\n                \"ask\": 340.84,\n                \"mid\": 350.285,\n                \"yield\": 1.55\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"SE53\",\n                \"mexId\": \"SMFEAI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.402Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538e2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC JAPAN GROWTH\",\n            \"longName\": \"HSBC Gbl FSAVC Japan Growth\",\n            \"description\": \"FSAVC Japan Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919138\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 32.68,\n                \"ask\": 30.83,\n                \"mid\": 31.755,\n                \"yield\": 0.76\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB58\",\n                \"mexId\": \"MDFJP\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.172Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538f0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC PPUT MONEY MARKET\",\n            \"longName\": \"HSBC Gbl PPUT Money Market\",\n            \"description\": \"PPUT Money Market\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005917199\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-08-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 163.2,\n                \"ask\": 163.2,\n                \"mid\": 163.2,\n                \"yield\": 0.45\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB52\",\n                \"mexId\": \"MDMM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:58.817Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746a8587d700012538ea\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W CHARITY VALUE AND INCOME INC\",\n            \"longName\": \"S&W Charity Value and Income Inc\",\n            \"description\": \"Charity Value and Income Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1YJPL53\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-06-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 93.3,\n                \"ask\": 92.69,\n                \"mid\": 92.995,\n                \"yield\": 3.86\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ABP9\",\n                \"mexId\": \"WLCVAI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.436Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HERIOT GLOBAL B ACC\",\n            \"longName\": \"Dundas Heriot Global B Acc\",\n            \"description\": \"Heriot Global B Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B67F3D33\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-03-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 100.23,\n                \"ask\": 100.23,\n                \"mid\": 100.23\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ICHD\",\n                \"mexId\": \"QEACVG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:01.179Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746d8587d7000125391c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRS\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC BRITISH\",\n            \"longName\": \"HSBC Gbl FSAVC British\",\n            \"description\": \"FSAVC British\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005919021\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 306.2,\n                \"ask\": 288.9,\n                \"mid\": 297.55,\n                \"yield\": 2.31\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"M269\",\n                \"mexId\": \"MDFB\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.453Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d70001253934\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MS3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE WEALTH BAL BRIDGE\",\n            \"longName\": \"Standard Life Wealth Balanced Bridge\",\n            \"description\": \"Bal Bridge\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004833660\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1998-12-23T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 134.9,\n                \"ask\": 134.9,\n                \"mid\": 134.9\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BS77\",\n                \"mexId\": \"RSBBR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:02.809Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746e8587d7000125393a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W BRYN SIRIOL INC\",\n            \"longName\": \"S&W Bryn Siriol Inc\",\n            \"description\": \"Bryn Siriol Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B05HXM80\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2005-01-06T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 164.6,\n                \"ask\": 164.6,\n                \"mid\": 164.6\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JU68\",\n                \"mexId\": \"SWBSI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.878Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d70001253916\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W STARHUNTER MANAGED ACC\",\n            \"longName\": \"S&W Starhunter Managed Acc\",\n            \"description\": \"Starhunter Managed Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0004945621\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1995-09-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n                \"bid\": 299.9,\n                \"ask\": 280.9,\n                \"mid\": 290.4,\n                \"yield\": 0.8\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"BJ31\",\n                \"mexId\": \"SWCAAR\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:57.032Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74698587d700012538ca\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"THE SECOND MANAGED GROWTH\",\n            \"longName\": \"Cazenove Invest The Second Managed Growth\",\n            \"description\": \"The Second Managed Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030234578\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-02-27T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 102.1,\n                \"ask\": 102.1,\n                \"mid\": 102.1\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TI40\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.475Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MR5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"FRHLD INC ATHRSD FDR TST I ACC\",\n            \"longName\": \"TIME Freehold Income Authorised Feeder Trust I Acc\",\n            \"description\": \"Frhld Inc Athrsd Fdr Tst I Acc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B94RFB51\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-04-25T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-13T00:00:00.000Z\",\n                \"bid\": 4.3838,\n                \"ask\": 4.3838,\n                \"mid\": 4.3838\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Not yet assigned\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JBZF\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:00.530Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746c8587d7000125390e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HERIOT GLOBAL A INC\",\n            \"longName\": \"Dundas Heriot Global A Inc\",\n            \"description\": \"Heriot Global A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B835GN22\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-03-20T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 98.32,\n                \"ask\": 98.32,\n                \"mid\": 98.32\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ICHC\",\n                \"mexId\": \"QENTVA\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-08T13:09:03.348Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62a09f6f8bde11ab31144716\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.00734,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0073,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"26MPJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NB US SMALL CAP ADVISER ACC USD\",\n            \"longName\": \"Neuberger Berman Europe US Small Cap Adviser Acc USD\",\n            \"description\": \"US Small Cap Adviser Acc USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"IE00B64QTZ34\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"IE\",\n            \"countryOfIncorporation\": \"IE\",\n            \"issueDate\": \"2011-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.88,\n                \"ask\": 12.88,\n                \"mid\": 12.88\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"North American Smaller Companies\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"04JT\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.671Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538c4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MRH\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"VIRGIN PENSION GROWTH\",\n            \"longName\": \"Virgin Money Unit Tst Mgr Pension Growth\",\n            \"description\": \"Pension Growth\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0009264523\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1996-11-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 263.2,\n                \"ask\": 263.2,\n                \"mid\": 263.2,\n                \"yield\": 0.65\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"VI03\",\n                \"mexId\": \"V7PG\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:05:01.464Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746d8587d70001253922\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MQJ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HSBC FSAVC MANAGED\",\n            \"longName\": \"HSBC Gbl FSAVC Managed\",\n            \"description\": \"FSAVC Managed\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0005918833\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"1988-07-01T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 179.6,\n                \"ask\": 169.5,\n                \"mid\": 174.55,\n                \"yield\": 1.05\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Personal Pensions\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"MB49\",\n                \"mexId\": \"MDFPM\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:59.347Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d746b8587d700012538f4\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        }\n    ],\n    \"meta\": {\n        \"count\": 10906,\n        \"page\": 1,\n        \"pageSize\": 100\n    }\n}"},{"id":"c9389514-83af-463c-8dba-084c1be28531","name":"Add pagination","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":{"raw":"{{apiRoute}}/masterinstrument/{{firmId}}/?page=1&pageSize=25","host":["{{apiRoute}}"],"path":["masterinstrument","{{firmId}}",""],"query":[{"key":"isin","value":"GB00BFBFZ140","disabled":true},{"key":"instrumentType","value":"ETF","disabled":true},{"key":"currency","value":"EUR","disabled":true},{"key":"ticker","value":"H4ZG","disabled":true},{"key":"page","value":"1"},{"key":"pageSize","value":"25"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23894"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:01:31 GMT"},{"key":"x-amzn-RequestId","value":"93f13c41-d366-487b-b1bc-e133445d0804"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23894"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VksCVEkyDoEFjMQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"5d56-CpBsACDoYUizhfPMSmnW/vSRkho\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d826db-4e3c35ca6efadbe86bd0e7f4;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8566cb770d0695bb6bffb61a26f5b400.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"1j7zUOPTFxf6EoiQCTI4oi2xKWZhV8D3bAZG2p0zmB5prhBJy5Su6Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"26MM1\",\n            \"firmId\": \"SCUST\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"description\": \"Pacific Basin Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720733\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"bid\": 1.33,\n                \"ask\": 1.33,\n                \"mid\": 1.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB15\",\n                \"mexId\": \"RBPB5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T08:39:31.156Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 6,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"624c0043ee1c0c4accade3e0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS CONTINENTAL EURPN SPCLIST 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Continental European Specialist 5 Inc\",\n            \"description\": \"Continental Eurpn Spclist 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720519\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 22.51,\n                \"ask\": 22.51,\n                \"mid\": 22.51\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB09\",\n                \"mexId\": \"RBE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.111Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125386e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST PAC BASIN&GBL EMG MKT EQ 1\",\n            \"longName\": \"NatWest Pacific Basin & Global Emerging Markets Equity 1\",\n            \"description\": \"Pac Basin&Gbl Emg Mkt Eq 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008274259\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.85,\n                \"ask\": 20.85,\n                \"mid\": 20.85\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND65\",\n                \"mexId\": \"NWPBI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.207Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d70001253870\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP2\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 6 Inc\",\n            \"description\": \"US Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719289\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.93,\n                \"ask\": 15.93,\n                \"mid\": 15.93\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB07\",\n                \"mexId\": \"RBNA6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.236Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a8\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MPD\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W PITYOULISH\",\n            \"longName\": \"S&W Pityoulish\",\n            \"description\": \"Pityoulish\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R91P57\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-09-04T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 139.4,\n                \"ask\": 139.4,\n                \"mid\": 139.4\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"D2T0\",\n                \"mexId\": \"SWBAAH\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.247Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538bc\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN4\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"S&W DEUCALION\",\n            \"longName\": \"S&W Deucalion\",\n            \"description\": \"Deucalion\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0032637927\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2003-04-09T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1892,\n                \"ask\": 1892,\n                \"mid\": 1892\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"TT19\",\n                \"mexId\": \"WLDU\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:52.836Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74648587d7000125387c\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMB\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS UK EQUITY PROG 4\",\n            \"longName\": \"Coutts UK Equity Prog 4\",\n            \"description\": \"UK Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008254079\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-13T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 12.43,\n                \"ask\": 12.43,\n                \"mid\": 12.43\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD78\",\n                \"mexId\": \"QCUPI4\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.920Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d70001253858\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN8\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT I GBP\",\n            \"longName\": \"Fund IM Truestone Global Impact I GBP\",\n            \"description\": \"IM Trustne Gbl Impct I GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4R4T055\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 92.6921,\n                \"ask\": 92.6921,\n                \"mid\": 92.6921\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F8\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.213Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253884\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNF\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"STAN LIFE INV EUROPEAN TRUST II\",\n            \"longName\": \"Standard Life Investments European Trust II\",\n            \"description\": \"European Trust II\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B1432509\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2006-06-21T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 159,\n                \"ask\": 159,\n                \"mid\": 159\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"EP97\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.693Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d7000125388e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS UK SPEC EQUITY INCOME 5 INC\",\n            \"longName\": \"Royal Bank of Scotland UK Specialist Equity Income 5 Inc\",\n            \"description\": \"UK Spec Equity Income 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247MQ07\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.544,\n                \"ask\": 9.544,\n                \"mid\": 9.544\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6Q2\",\n                \"mexId\": \"RBUSE5\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.325Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538aa\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP7\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE BALN R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Balanced Ret Acc GBP\",\n            \"description\": \"Stirling House Baln R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1674\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0275,\n                \"ask\": 1.0275,\n                \"mid\": 1.0275\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I0ZY\",\n                \"mexId\": \"HTNGRE\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.739Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b2\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNG\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S5\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S5\",\n            \"description\": \"Inflation Lk UK Sovereign Bd S5\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8X233\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-02T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 11.24,\n                \"ask\": 11.24,\n                \"mid\": 11.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCG0\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.778Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253890\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNP\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 5 Inc\",\n            \"description\": \"Japan Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720626\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.33,\n                \"ask\": 12.33,\n                \"mid\": 12.33\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB12\",\n                \"mexId\": \"RBJE5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.707Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d7000125389e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MLQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST UK SPEC EQUITY INCOME 1 INC\",\n            \"longName\": \"NatWest UK Specialist Equity Income 1 Inc\",\n            \"description\": \"UK Spec Equity Income 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B247ML51\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2007-10-05T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.569,\n                \"ask\": 9.569,\n                \"mid\": 9.569\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"A6P8\",\n                \"mexId\": \"NWUSE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:49.649Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74618587d70001253840\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM5\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST JAPAN EQUITY INCOME 1\",\n            \"longName\": \"NatWest Japan Equity Income 1\",\n            \"description\": \"Japan Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273848\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.143,\n                \"ask\": 8.143,\n                \"mid\": 8.143\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND59\",\n                \"mexId\": \"NWJEI1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.412Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384e\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MMM\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS PACIFIC BASIN PROG 4\",\n            \"longName\": \"Coutts Pacific Basin Prog 4\",\n            \"description\": \"Pacific Basin Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008260241\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 20.82,\n                \"ask\": 20.82,\n                \"mid\": 20.82\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD71\",\n                \"mexId\": \"QCPBI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.919Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d7000125386a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP1\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 5 Inc\",\n            \"description\": \"US Specialist Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720402\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.49,\n                \"ask\": 15.49,\n                \"mid\": 15.49\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB06\",\n                \"mexId\": \"RBNA5I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.136Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538a6\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MML\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"COUTTS JAPAN EQUITY PROG 4\",\n            \"longName\": \"Coutts Japan Equity Prog 4\",\n            \"description\": \"Japan Equity Prog 4\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008255605\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 8.522,\n                \"ask\": 8.522,\n                \"mid\": 8.522\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Japan\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CD66\",\n                \"mexId\": \"QCJPRI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:51.814Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74638587d70001253868\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MN9\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"IM TRUSTNE GBL IMPCT S USD\",\n            \"longName\": \"Fund IM Truestone Global Impact S USD\",\n            \"description\": \"IM Trustne Gbl Impct S USD\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B4T70B05\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"USD\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2011-03-15T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-01-15T00:00:00.000Z\",\n                \"bid\": 93.8308,\n                \"ask\": 93.8308,\n                \"mid\": 93.8308\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"USD\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"N6F9\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:53.293Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74658587d70001253886\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"USD\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNL\",\n            \"updateId\": \"5b767670a297f5106e742386\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST INFLATN LK UK SOVGN BD S2 GBP\",\n            \"longName\": \"NatWest Inflation Link UK Sovereign Bond S2 GBP\",\n            \"description\": \"Inflatn Lk UK Sovgn Bd S2 GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B2R8WZ99\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2008-07-07T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 1.112,\n                \"ask\": 1.112,\n                \"mid\": 1.112\n            },\n            \"stampable\": false,\n            \"ptm\": false,\n            \"nationalityDeclaration\": false,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"CCF7\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2018-08-17T07:17:04.060Z\",\n                \"userFirmId\": \"SHARED\",\n                \"userId\": \"029B3F3\",\n                \"version\": 2,\n                \"application\": \"CoreAPI\"\n            },\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MP6\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DFNSV R INC GBP\",\n            \"longName\": \"Host Capital Stirling House Defensive Ret Inc GBP\",\n            \"description\": \"Stirling House Dfnsv R Inc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1344\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0036,\n                \"ask\": 1.0036,\n                \"mid\": 1.0036\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"JL9P\",\n                \"mexId\": \"HTOSED\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:55.647Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74678587d700012538b0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNQ\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS JAPAN SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Japan Specialist Equity 6 Inc\",\n            \"description\": \"Japan Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030719628\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 12.81,\n                \"ask\": 12.81,\n                \"mid\": 12.81\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB13\",\n                \"mexId\": \"RBJE6I\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:54.811Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74668587d700012538a0\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MNS\",\n            \"updateId\": \"62b43297c7ebaa2592a5bffc\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"RBS STERLING BOND 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Sterling Bond 5 Inc\",\n            \"description\": \"Sterling Bond 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0030720956\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2001-10-10T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 9.948,\n                \"ask\": 9.948,\n                \"mid\": 9.948\n            },\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"RB18\",\n                \"mexId\": \"RBSB5I\"\n            },\n            \"ocfEstimated\": 0.0025,\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-23T09:29:59.619Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 1855,\n                \"application\": \"CoreAPI\"\n            }\n        },\n        {\n            \"id\": \"26MPC\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"HC STIRLING HOUSE DYNAMIC R ACC GBP\",\n            \"longName\": \"Host Capital Stirling House Dynamic Ret Acc GBP\",\n            \"description\": \"Stirling House Dynamic R Acc GBP\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB00B99R1898\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2013-02-18T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n                \"bid\": 1.0262,\n                \"ask\": 1.0262,\n                \"mid\": 1.0262\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"I10C\",\n                \"mexId\": \"HTDYCI\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:56.151Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74688587d700012538ba\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        },\n        {\n            \"id\": \"26MM3\",\n            \"firmId\": \"SECCL\",\n            \"shortName\": \"NATWEST CONTINENTAL EUROPEAN 1 INC\",\n            \"longName\": \"NatWest Continental European 1 Inc\",\n            \"description\": \"Continental European 1 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"isin\": \"GB0008273285\",\n            \"mic\": \"XOFF\",\n            \"primaryMarket\": true,\n            \"currency\": \"GBP\",\n            \"countryOfIssue\": \"GB\",\n            \"countryOfIncorporation\": \"GB\",\n            \"issueDate\": \"2000-07-03T00:00:00.000Z\",\n            \"status\": \"Active\",\n            \"currentPrice\": {\n                \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n                \"bid\": 15.24,\n                \"ask\": 15.24,\n                \"mid\": 15.24\n            },\n            \"defaultDepot\": \"Allfunds\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"settlementPeriod\": 4,\n            \"incomeCurrency\": \"GBP\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"fundDetail\": {\n                \"citiCode\": \"ND55\",\n                \"mexId\": \"NWCE1\"\n            },\n            \"auditDetails\": {\n                \"updateDate\": \"2017-06-23T20:04:50.187Z\",\n                \"userFirmId\": \"SCUST\",\n                \"userId\": \"029B3F5\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"594d74628587d7000125384a\",\n            \"executionMethod\": \"Dealer\",\n            \"defaultSettlementCurrency\": \"GBP\",\n            \"ocfEstimated\": 0.0025\n        }\n    ],\n    \"meta\": {\n        \"count\": 34466,\n        \"page\": 1,\n        \"pageSize\": 25\n    }\n}"}],"_postman_id":"84d357ce-6b3e-4592-b96c-e99c13fcac34"},{"name":"Add asset to firm","event":[{"listen":"test","script":{"id":"20ea6134-4eb0-447f-a708-42014851f4ea","exec":[""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"07036e3d-463d-45ea-9308-8fca3e4b16b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{assetId}}\",\n    \"availableToNodeId\": [\"0\"]\n}"},"url":"{{apiRoute}}/asset/","description":"<p>This flow adds an asset to the platform asset universe, making it available to trade, or to add to a <code>model</code> or <code>recurringOrders</code> allocation.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>availableToNodeId</code> array <strong>Optional</strong></p>\n<p>The nodeId(s) where the asset is made available. This will make the asset available to all sub-nodes as well</p>\n<p><strong>Examples:</strong></p>\n<ul>\n<li><p><code>\"availableToNodeId\": [\"0\"]</code> - all nodes, default if not provided</p>\n</li>\n<li><p><code>\"availableToNodeId\": [\"2\", \"3\"]</code> - select nodes (sub-nodes will inherit access)</p>\n</li>\n</ul>\n<hr />\n","urlObject":{"path":["asset",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c95394e1-b0c5-4779-9115-8bb87f1cfbb7","name":"Add asset to firm","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{assetId}}\"\n}"},"url":"{{apiRoute}}/asset/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 17:01:45 GMT"},{"key":"x-amzn-RequestId","value":"7af2e215-17ff-4fe3-b722-992a452bf873"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Vk025HCgjoEF7Rw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17-/Kk1LhBfqi0WHaYLviuRbslvP84\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d834f8-5ee5081b11d767300d4b35ad;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c297fc1c701a784a294131e9afa72b22.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"I6swcejJaPPCxGM2jkPZnkmv9V9B-8yVegaME02ZpglFcE6ijsNWHQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"275F1\"\n    }\n}"},{"id":"bf42c36c-16c2-4387-b080-abb5f878fb51","name":"Add asset to firm node","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"COOPR\",\n    \"id\": \"275F1\",\n    \"availableToNodeId\": [\n        \"1\"\n    ]\n}"},"url":"{{apiRoute}}/asset/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 17:03:33 GMT"},{"key":"x-amzn-RequestId","value":"2e10ff9b-7b56-45b5-96db-a7cbd5f81ec7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Vk1H0Fe8joEFgFw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17-/Kk1LhBfqi0WHaYLviuRbslvP84\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d83565-3d26d10d4b0b14a125a5bfa6;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c297fc1c701a784a294131e9afa72b22.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Ic9qlsa_fAYyVZqsz9MmMhahHnXNmP4wSw52DAv56o7R1UWn-28oJg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"275F1\"\n    }\n}"}],"_postman_id":"07036e3d-463d-45ea-9308-8fca3e4b16b9"},{"name":"Retrieve platform asset universe","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)",""],"type":"text/javascript","id":"31e413ad-3ec4-470d-b287-a9b95b0883fe"}}],"id":"e08798f0-533b-4be2-9cc3-f059b4602021","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}","description":"<p>This flow allows you to retrieve assets in your platform asset universe.</p>\n","urlObject":{"path":["asset","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"pageSize","value":"10"},{"disabled":true,"key":"idOrName","value":"van"},{"disabled":true,"key":"isin","value":"GB00BFBFZ140"},{"disabled":true,"key":"instrumentType","value":"Fund"},{"disabled":true,"key":"currency","value":"GBP"},{"disabled":true,"key":"ticker","value":"H4ZG"}],"variable":[]}},"response":[{"id":"7167a89d-7517-41ac-9194-f12a79870ecc","name":"Retrieve platform asset universe","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"43414"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 17:07:59 GMT"},{"key":"x-amzn-RequestId","value":"901f94f4-bb02-4f72-b9a5-43a31bd49cc2"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"43414"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Vk1xSFiNDoEFiVQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"a996-81HoLoY7HxklhmiLeQvM61Aky60\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d8366e-44c1c5da71e62d9706c5f101;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c499c5bd7a2c5201de6b25f3c79376f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"pJqNUu2wAozQyudrXlowjdo1j3bRHQUEdQ-ItsVU39OYkjI7hKyf-Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"282S2\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"SE0005676160\",\n            \"shortName\": \"ARCAM AB\",\n            \"longName\": \"Arcam AB\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"MAC1\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"firmAccessProhibited\": true,\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-22T09:24:17.742Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 3,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"626274410932eb7266d54883\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"customName\": \"ARCAM calum test\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26S35\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00BDRZN764\",\n            \"shortName\": \"CAZENOVE UK CORPORATE BOND S INC\",\n            \"longName\": \"Cazenove Invest UK Corporate Bond S Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Sterling Corporate Bond\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-28T14:40:11.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60d9df4b13fe0d00091148fe\",\n            \"ask\": 49.81,\n            \"bid\": 49.81,\n            \"mid\": 49.81,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26NKP\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B3WYRF43\",\n            \"shortName\": \"CF MORANT WRIGHT NIPPON YIELD A ACC\",\n            \"longName\": \"Capita Financial Managers Morant Wright Nippon Yield A Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"CGAANA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Japan\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:30:57.046Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1d1083dd7000746b283\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 222.05,\n            \"ask\": 222.05,\n            \"mid\": 222.05\n        },\n        {\n            \"id\": \"26P94\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B2Q8TP98\",\n            \"shortName\": \"CIRILIUM MODERATE R ACC\",\n            \"longName\": \"Henderson Global Investors Ltd Cirilium Moderate R Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"NTIMA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-10-21T11:12:33.609Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f9017a1cf2c6d0008603951\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 78.49,\n            \"ask\": 78.49,\n            \"mid\": 78.49,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"283PF\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"JP3311540003\",\n            \"shortName\": \"CYBERLINKS CO LTD\",\n            \"longName\": \"Cyberlinks Co Ltd\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"6CY\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-02T15:32:14.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"61faa3fe8bf87900090005aa\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"286Q5\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"LU0292097747\",\n            \"shortName\": \"DBX FTSE ALL-SHARE (DR)\",\n            \"longName\": \"db x-trackers FTSE All-Share UCITS ETF DR\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"XASX\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"ETFL\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"ETFS\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:19.473Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"622b89fbdd46cd000ab91eac\",\n            \"ask\": 4.41,\n            \"bid\": 4.41,\n            \"mid\": 4.41,\n            \"minimumTransferUnit\": 1,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n            \"ptm\": false,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampable\": false,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27GQB\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0002374006\",\n            \"shortName\": \"DIAGEO PLC\",\n            \"longName\": \"Diageo PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"GUI\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T10:11:58.736Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea6afee13b6d10008a4d3e4\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2\n        },\n        {\n            \"id\": \"284PF\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0002374006\",\n            \"shortName\": \"DIAGEO PLC\",\n            \"longName\": \"Diageo PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"DGE\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"FE00\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"SET0\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T10:15:50.892Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea6b0d613b6d10008a4d3e6\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ptm\": true,\n            \"stampable\": true,\n            \"stampCountry\": \"GB\",\n            \"priceDate\": \"2019-11-15T00:00:00.000Z\",\n            \"bid\": 30.96,\n            \"ask\": 30.97,\n            \"mid\": 30.965\n        },\n        {\n            \"id\": \"26R5N\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B732BR50\",\n            \"shortName\": \"DIMENSIONAL GBL SHT DTD BD GR INC\",\n            \"longName\": \"Dimensional Fund Advisors Global Short Dated Bond Gr Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"DLGLDA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global Bonds\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-07-27T16:00:56.817Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"61002db8d8daff000979d439\",\n            \"ask\": 10.35,\n            \"bid\": 10.35,\n            \"mid\": 10.35,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"ocfCalculated\": 0.0025,\n            \"kiidDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=e8e2f66a-f9c4-4d2d-b33d-24dd78661d64&user=QVAa64shZ0KT6NJlRchJgA6VLAiAg3YVSx5lsJctu2A%3d\",\n            \"kiddDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=e8e2f66a-f9c4-4d2d-b33d-24dd78661d64&user=QVAa64shZ0KT6NJlRchJgA6VLAiAg3YVSx5lsJctu2A%3d\",\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0028,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0002\n            }\n        },\n        {\n            \"id\": \"27PC9\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B1S49Q91\",\n            \"shortName\": \"DOMINO'S PIZZA GROUP PLC\",\n            \"longName\": \"Domino's Pizza Group PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"DKOA\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-12-01T14:25:59.239Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fc652776664910009654aba\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27PCH\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"DE000A0V9XX4\",\n            \"shortName\": \"ETFS DAILY SHORT COTTON\",\n            \"longName\": \"ETFS Daily Short Cotton\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"9GA6\",\n            \"mic\": \"XETR\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-11-17T09:17:49.083Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fb3953db917b50009a06107\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26N5C\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0033143222\",\n            \"shortName\": \"F&C PACIFIC GROWTH 4 INC\",\n            \"longName\": \"F&C Fund Management Pacific Growth 4 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Asia Pacific Excluding Japan\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:29:20.147Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b170083dd7000746b273\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 228.8,\n            \"ask\": 228.8,\n            \"mid\": 228.8\n        },\n        {\n            \"id\": \"26N3G\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B3MWZ870\",\n            \"shortName\": \"F&C UK EQUITY LINKED GILT 2 INC\",\n            \"longName\": \"F&C Fund Management UK Equity Linked Gilt 2 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"IQLINK\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:31:12.811Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1e0083dd7000746b285\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 136,\n            \"ask\": 136,\n            \"mid\": 136\n        },\n        {\n            \"id\": \"26NJ7\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B7N07V51\",\n            \"shortName\": \"FP RUSSELL MULTI ASSET INCOME A INC\",\n            \"longName\": \"Fund Russell Multi Asset Income A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"2FIATD\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 20%-60% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:31:23.277Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1eb083dd7000746b287\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 103.0017,\n            \"ask\": 103.0017,\n            \"mid\": 103.0017\n        },\n        {\n            \"id\": \"26NMM\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B1DCMJ29\",\n            \"shortName\": \"HC CAERUS GLOBAL OPPORTUNITIES B\",\n            \"longName\": \"Host Capital Caerus Global Opportunities B\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"CASGB\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-06-15T10:37:04.219Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ee74f50947ac40007709245\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 137.71,\n            \"ask\": 137.71,\n            \"mid\": 137.71,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27H1D\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"NL0000009165\",\n            \"shortName\": \"HEINEKEN NV\",\n            \"longName\": \"Heineken NV\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"HNK1\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-03-18T15:17:55.156Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60536f23abee2d000855185f\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27DSN\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B94SCD93\",\n            \"shortName\": \"HENDERSON CORE 6 INC & GTH I INC\",\n            \"longName\": \"Henderson Global Investors Ltd Core 6 Income & Growth I Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"9HROWT\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-06-30T19:01:09.675Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5efb8bf5875c4900082df47b\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 95.82,\n            \"ask\": 95.82,\n            \"mid\": 95.82,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27DP7\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B7JZZK97\",\n            \"shortName\": \"HENDERSON MULTI MNGR MANAGED I ACC\",\n            \"longName\": \"Henderson Global Investors Ltd Multi Manager Managed I Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"9HMUMA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-05-05T12:22:58.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60928e224e6eee000885ad0a\",\n            \"ask\": 1.531,\n            \"bid\": 1.531,\n            \"kiddDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=3f16d75a-24be-4db2-ba35-9bba1e1a8672&user=uqf2CAQWCFRGjKJJmjax247phrN91Nm1jjaFzRsdyFg%3d\",\n            \"kiidDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=3f16d75a-24be-4db2-ba35-9bba1e1a8672&user=uqf2CAQWCFRGjKJJmjax247phrN91Nm1jjaFzRsdyFg%3d\",\n            \"mid\": 1.531,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfCalculated\": 0.0125,\n            \"priceDate\": \"2019-11-15T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.015,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.002758\n            }\n        },\n        {\n            \"id\": \"26PB7\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0033389353\",\n            \"shortName\": \"HENDERSON UK INDEX A INC\",\n            \"longName\": \"Henderson Global Investors Ltd UK Index A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"GEUII\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-10-12T13:24:02.647Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f8458f2d6502b00082a2d27\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 363.8,\n            \"ask\": 363.8,\n            \"mid\": 363.8,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26MRD\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B67F3D33\",\n            \"shortName\": \"HERIOT GLOBAL B ACC\",\n            \"longName\": \"Dundas Heriot Global B Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"QEACVG\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:30:03.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b19b083dd7000746b27b\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 100.23,\n            \"ask\": 100.23,\n            \"mid\": 100.23\n        },\n        {\n            \"id\": \"26SRF\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B80L0G42\",\n            \"shortName\": \"HSBC INCOME C INC\",\n            \"longName\": \"HSBC Gbl Income C Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"MDPCSP\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Equity Income\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-08-20T09:35:56.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"611f777c8ed6e70008392402\",\n            \"ask\": 331.5,\n            \"bid\": 331.5,\n            \"mid\": 331.5,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26S7C\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B2R2YQ60\",\n            \"shortName\": \"IFSL SINFONIA BAL MGD PFL D ACC\",\n            \"longName\": \"IFSL Sinfonia Balanced Managed Portfolio D Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"FQSOLE\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-05-19T12:15:09.967Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60a5014da37dd40009412cac\",\n            \"ask\": 125.6,\n            \"bid\": 125.6,\n            \"mid\": 125.6,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27PJ2\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"US4627261005\",\n            \"shortName\": \"IROBOT CORP\",\n            \"longName\": \"iRobot Corp\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"I8R\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-11-30T14:30:27.819Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fc50203f0dc960008e79bff\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"282N1\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"DE000A1J0ZB9\",\n            \"shortName\": \"ISHARES EM ASIA LCL GOV BND\",\n            \"longName\": \"iShares Emerging Asia Local Government Bond UCITS ETF\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"IS0S\",\n            \"mic\": \"XETR\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-07-13T10:36:39.156Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f0c39371113c70008951886\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"286BM\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"IE00B0M63516\",\n            \"shortName\": \"ISHARES MSCI BRAZIL-INC\",\n            \"longName\": \"iShares MSCI Brazil UCITS ETF Inc\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"IBZL\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"ETFN\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"ETFS\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-02-02T16:01:16.265Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"6019774c90255a0008d1b98f\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"286S8\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"IE00B27YCK28\",\n            \"shortName\": \"ISHARES MSCI EM LAT AM-INC\",\n            \"longName\": \"iShares MSCI EM Latin America\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"LTAM\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"ETFN\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"ETFS\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-08-17T10:20:17.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f3a59e1c2895d0008845dda\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"286BK\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"IE00B0M63177\",\n            \"shortName\": \"ISHARES MSCI EM-INC\",\n            \"longName\": \"iShares MSCI Emerging Markets UCITS ETF Inc\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"IEEM\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"ETFN\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"ETFS\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-07-01T14:50:23.567Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5efca2af94f0830007147bdc\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"28319\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"DE000A1KB2D9\",\n            \"shortName\": \"ISHARES MSCI WORLD MIN VOL\",\n            \"longName\": \"iShares MSCI World Minimum Volatility UCITS ETF\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"IQQ0\",\n            \"mic\": \"XETR\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-07-06T13:25:26.788Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f032646b64b1500089ff558\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"2795L\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B1YXHP51\",\n            \"shortName\": \"JPM UK DYNAMIC B ACC\",\n            \"longName\": \"JP Morgan Asset Management UK UK Dynamic B Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"C5KDBA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-12-02T14:22:01.025Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fc7a3095b82240008cbd201\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 149.6,\n            \"ask\": 149.6,\n            \"mid\": 149.6,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"2722G\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B8GDMD57\",\n            \"shortName\": \"JUPITER MERLIN CNSRV PFL INC\",\n            \"longName\": \"Jupiter Unit Trust Mgrs Merlin Conservative Portfolio Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"RWMERN\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 0%-35% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-15T14:25:18.389Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60c8b84ed5a465000998675c\",\n            \"ask\": 47.97,\n            \"bid\": 50.66,\n            \"mid\": 49.315,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26R3G\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B90TBZ18\",\n            \"shortName\": \"L&G (N) TRACKER F ACC\",\n            \"longName\": \"Legal & General UT Mgr Ltd (N) Tracker F Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"LGAKER\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-03-22T16:36:50.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"6058c7a2d96e6f00083cb4fe\",\n            \"ask\": 167.2,\n            \"bid\": 167.2,\n            \"mid\": 167.2,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26QS1\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0001036531\",\n            \"shortName\": \"L&G UK INDEX R ACC\",\n            \"longName\": \"Legal & General UT Mgr Ltd UK Index Ret Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"LGUKIA\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-08-02T15:34:49.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"6108109951ceb40008227419\",\n            \"ask\": 218.9,\n            \"bid\": 218.9,\n            \"mid\": 218.9,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"28RML\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"CA52170U2074\",\n            \"shortName\": \"LEADING BRANDS INC\",\n            \"longName\": \"Leading Brands Inc\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"USD\",\n            \"ticker\": \"LBIX\",\n            \"mic\": \"XNCM\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-05-07T10:18:26.974Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"609513f2ed8ec30009933505\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27DQN\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B7T92B14\",\n            \"shortName\": \"LIONTRUST EUROPEAN GROWTH A INC\",\n            \"longName\": \"Liontrust Fund Partners LLP European Growth A Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"Q5ANPU\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-02-02T16:54:38.766Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"601983ce41faf500098ac009\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 142.62,\n            \"ask\": 139.07,\n            \"mid\": 140.845,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27DNS\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B7MVBY07\",\n            \"shortName\": \"LIONTRUST MACRO UK GROWTH I ACC\",\n            \"longName\": \"Liontrust Fund Partners LLP Macro UK Growth I Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"Q5GROW\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-11-25T12:09:09.263Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fbe4965770c810008ed4dc0\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 272.71,\n            \"ask\": 269.79,\n            \"mid\": 271.25,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"28BS1\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"FR0010344887\",\n            \"shortName\": \"LYXOR ETF STOXX INDUSTRIALS\",\n            \"longName\": \"Lyxor ETF STOXX Europe 600 Industrial Goods & Services\",\n            \"instrumentType\": \"ETF\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"IND\",\n            \"mic\": \"XPAR\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-12-07T15:31:04.290Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5fce4ab88a1404000865f06b\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ocfEstimated\": 0.0025,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"283KN\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"US56117J1007\",\n            \"shortName\": \"MALIBU BOATS INC - A\",\n            \"longName\": \"Malibu Boats Inc\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"M05\",\n            \"mic\": \"XETR\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-11T13:14:26.093Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60c361b2e64b0b000852ad71\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"284H9\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0031274896\",\n            \"shortName\": \"MARKS & SPENCER GROUP PLC\",\n            \"longName\": \"Marks & Spencer Group PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"MKS\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"FS10\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"SET1\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:19.229Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"622b89fbdd46cd000ab91eaa\",\n            \"ask\": 1.64,\n            \"bid\": 1.64,\n            \"mid\": 1.64,\n            \"minimumTransferUnit\": 1,\n            \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n            \"ptm\": true,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampCountry\": \"GB\",\n            \"stampable\": true,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"286CF\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00BKRV5441\",\n            \"shortName\": \"MX OIL PLC\",\n            \"longName\": \"Mx Oil PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"MXO\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"AIMT\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"AIMI\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-02-02T14:24:22.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60196096093b650008496792\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"ptm\": true,\n            \"stampable\": true,\n            \"stampCountry\": \"GB\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"2851G\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00BDR05C01\",\n            \"shortName\": \"NATIONAL GRID PLC\",\n            \"longName\": \"NATIONAL GRID PLC ORD 12 204/473P\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"NG.\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"FE10\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"SET1\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:19.284Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"622b89fb319989000976990e\",\n            \"ask\": 8.252,\n            \"bid\": 8.25,\n            \"mid\": 8.251,\n            \"minimumTransferUnit\": 1,\n            \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n            \"ptm\": true,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampCountry\": \"GB\",\n            \"stampable\": true,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26MN6\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0008267238\",\n            \"shortName\": \"NATWEST UK EQUITY INCOME 1\",\n            \"longName\": \"NatWest UK Equity Income 1\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"NWUKE1\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:31:36.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1f8083dd7000746b289\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 12.46,\n            \"ask\": 12.46,\n            \"mid\": 12.46\n        },\n        {\n            \"id\": \"26MNG\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B2R8X233\",\n            \"shortName\": \"RBS INFLATION LK UK SOVEREIGN BD S5\",\n            \"longName\": \"Royal Bank of Scotland Inflation Link UK Sovereign Bond S5\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-10-07T14:38:45.579Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f7dd2f589d92d00081519c9\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 11.24,\n            \"ask\": 11.24,\n            \"mid\": 11.24,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26MM1\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0030720733\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 5 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"RBPB5I\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-01T15:18:12.158Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5eac3db48ce1c900078dbb39\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n            \"bid\": 1.33,\n            \"ask\": 1.33,\n            \"mid\": 1.33\n        },\n        {\n            \"id\": \"26MM2\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0030719842\",\n            \"shortName\": \"RBS PACIFIC BASIN EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland Pacific Basin Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"RBPB6I\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:29:25.196Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b175083dd7000746b275\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 36.45,\n            \"ask\": 36.45,\n            \"mid\": 36.45\n        },\n        {\n            \"id\": \"26MP2\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0030719289\",\n            \"shortName\": \"RBS US SPECIALIST EQUITY 6 INC\",\n            \"longName\": \"Royal Bank of Scotland US Specialist Equity 6 Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"RBNA6I\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:30:10.003Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1a2083dd7000746b27d\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 15.93,\n            \"ask\": 15.93,\n            \"mid\": 15.93\n        },\n        {\n            \"id\": \"26MN4\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0032637927\",\n            \"shortName\": \"S&W DEUCALION\",\n            \"longName\": \"S&W Deucalion\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"WLDU\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Flexible Investment\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-28T13:21:20.800Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"62bb00502fe1c8f84ae78113\",\n            \"ask\": 1892,\n            \"bid\": 1892,\n            \"mid\": 1892,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26N1K\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0001582112\",\n            \"shortName\": \"S&W DEVONSHIRE\",\n            \"longName\": \"S&W Devonshire\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"SFD\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:31:48.427Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b204083dd7000746b28b\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n            \"bid\": 471.5,\n            \"ask\": 420.6,\n            \"mid\": 446.05\n        },\n        {\n            \"id\": \"26N1H\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0032477746\",\n            \"shortName\": \"S&W MILLENNIUM\",\n            \"longName\": \"S&W Millennium\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"S5MIL\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:29:34.334Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b17e083dd7000746b277\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-01-31T00:00:00.000Z\",\n            \"bid\": 1203,\n            \"ask\": 1203,\n            \"mid\": 1203\n        },\n        {\n            \"id\": \"26MPD\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B2R91P57\",\n            \"shortName\": \"S&W PITYOULISH\",\n            \"longName\": \"S&W Pityoulish\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"SWBAAH\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-22T09:20:20.648Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"62627354c12f6e7bd6e4b3f0\",\n            \"ask\": 139.4,\n            \"bid\": 139.4,\n            \"mid\": 139.4,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27HNC\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B019KW72\",\n            \"shortName\": \"SAINSBURY (J) PLC\",\n            \"longName\": \"J Sainsbury PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"SUY1\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:57:48.247Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b81cb8363e00077d0312\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2\n        },\n        {\n            \"id\": \"284JP\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B019KW72\",\n            \"shortName\": \"SAINSBURY (J) PLC\",\n            \"longName\": \"J Sainsbury PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"SBRY\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"FS10\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"SET1\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:19.149Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"622b89fbdd46cd000ab91ea6\",\n            \"ask\": 2.447,\n            \"bid\": 2.445,\n            \"mid\": 2.446,\n            \"minimumTransferUnit\": 1,\n            \"priceDate\": \"2022-05-16T00:00:00.000Z\",\n            \"ptm\": true,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampCountry\": \"GB\",\n            \"stampable\": true,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27341\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0000420918\",\n            \"shortName\": \"SCHRODER INST INDEX LKD BD X ACC\",\n            \"longName\": \"Schroder UT Managers Institutional Index Linked Bond X Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"DFIGII\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK Index - Linked Gilts\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-06-23T14:57:34.209Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ef2185e01aaf80008a6f7f4\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 154.3,\n            \"ask\": 154.3,\n            \"mid\": 154.3,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26NSQ\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B783RW04\",\n            \"shortName\": \"SCOT WID DEFENSIVE SOLUTIONS G INC\",\n            \"longName\": \"Scottish Wid UT Mgr Defensive Solutions G Inc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"TSGWUP\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Unclassified\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:30:32.206Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1b8083dd7000746b27f\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 103.6,\n            \"ask\": 103.6,\n            \"mid\": 103.6\n        },\n        {\n            \"id\": \"26N7B\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0031611089\",\n            \"shortName\": \"SCOT WID EUROPEAN GROWTH B\",\n            \"longName\": \"Scottish Wid UT Mgr European Growth B\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"ABEC\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Europe Excluding UK\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:29:52.574Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b190083dd7000746b279\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 441.8,\n            \"ask\": 441.8,\n            \"mid\": 441.8\n        },\n        {\n            \"id\": \"282K4\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"CA82518R1038\",\n            \"shortName\": \"SHORELINE ENERGY CORP\",\n            \"longName\": \"Shoreline Energy Corp\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"EUR\",\n            \"ticker\": \"SL0\",\n            \"mic\": \"XFRA\",\n            \"status\": \"Active\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-15T09:31:10.880Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"607807deb9374800089682cf\",\n            \"minimumTransferUnit\": 1,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"27BL7\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B02GS789\",\n            \"shortName\": \"SWIP HIGH YIELD BOND P\",\n            \"longName\": \"SWIP High Yield Bond P\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"HSHII\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Sterling High Yield\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-08-25T12:28:13.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5f4503dde557540007546d06\",\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 98.99,\n            \"ask\": 98.99,\n            \"mid\": 98.99,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"26MR1\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0008901604\",\n            \"shortName\": \"THE CAPITAL\",\n            \"longName\": \"Cazenove Invest The Capital\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"KTC\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"UK All Companies\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-12-10T14:32:36.242Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"61b3650495a0f900099886fc\",\n            \"ask\": 276.35,\n            \"bid\": 293.71,\n            \"mid\": 285.03,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2013-11-15T00:00:00.000Z\",\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        },\n        {\n            \"id\": \"2756G\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B4PQW151\",\n            \"shortName\": \"VANGUARD LIFESTRATEGY 80% EQUI ACC\",\n            \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"VVLSRE\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Mixed Investment 40%-85% Shrs\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-14T11:24:49.358Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"60c73c81c91b49000818db3d\",\n            \"ask\": 212.1,\n            \"bid\": 212.1,\n            \"kiddDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=263da00d-c450-4f0e-85a4-931141146c9e&user=uk%2b0fU3DJVVAGCi%2b5pyvi4QRuIfgfAWpj%2f2YK3G8Tmk%3d\",\n            \"kiidDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=263da00d-c450-4f0e-85a4-931141146c9e&user=uk%2b0fU3DJVVAGCi%2b5pyvi4QRuIfgfAWpj%2f2YK3G8Tmk%3d\",\n            \"mid\": 212.1,\n            \"minimumTransferUnit\": 0.0001,\n            \"ocfCalculated\": 0.0022,\n            \"priceDate\": \"2022-04-04T00:00:00.000Z\",\n            \"ptm\": false,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampable\": false,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"ocfEstimated\": 0.0025,\n            \"mifidCharges\": {\n                \"exAnteOngoing\": 0.0022,\n                \"exAnteIncidental\": 0,\n                \"exAnteTransaction\": 0.0004\n            }\n        },\n        {\n            \"id\": \"26N4L\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB0030614027\",\n            \"shortName\": \"WDB ORIEL GLOBAL RET ACC\",\n            \"longName\": \"Oriel Global Ret Acc\",\n            \"instrumentType\": \"Fund\",\n            \"currency\": \"GBP\",\n            \"mic\": \"XOFF\",\n            \"mexId\": \"KWGGP\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"IMA\",\n                    \"value\": \"Global\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-24T09:30:44.067Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"5ea2b1c4083dd7000746b281\",\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ],\n            \"minimumTransferUnit\": 0.0001,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 4,\n            \"ocfEstimated\": 0.0025,\n            \"priceDate\": \"2014-02-06T00:00:00.000Z\",\n            \"bid\": 157.94,\n            \"ask\": 157.94,\n            \"mid\": 157.94\n        },\n        {\n            \"id\": \"286D7\",\n            \"type\": \"Asset\",\n            \"firmId\": \"SDEMO\",\n            \"isin\": \"GB00B2PDGW16\",\n            \"shortName\": \"WH SMITH PLC\",\n            \"longName\": \"WH Smith PLC\",\n            \"instrumentType\": \"Equity\",\n            \"currency\": \"GBP\",\n            \"ticker\": \"SMWH\",\n            \"mic\": \"XLON\",\n            \"status\": \"Active\",\n            \"classifications\": [\n                {\n                    \"classificationType\": \"LSE Sector\",\n                    \"value\": \"F25F\"\n                },\n                {\n                    \"classificationType\": \"LSE Segment\",\n                    \"value\": \"STMM\"\n                }\n            ],\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:19.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"ProductProcessor\"\n            },\n            \"updateId\": \"622b89fbdd46cd000ab91ea8\",\n            \"ask\": 18.82,\n            \"bid\": 18.815,\n            \"mid\": 18.81,\n            \"minimumTransferUnit\": 1,\n            \"priceDate\": \"2018-01-18T00:00:00.000Z\",\n            \"ptm\": true,\n            \"quoteUnit\": 1,\n            \"settlementPeriod\": 2,\n            \"stampCountry\": \"GB\",\n            \"stampable\": true,\n            \"nodeId\": [\n                \"2\",\n                \"1\",\n                \"5\",\n                \"3\",\n                \"4\",\n                \"0\"\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 60\n    }\n}"}],"_postman_id":"e08798f0-533b-4be2-9cc3-f059b4602021"},{"name":"Retrieve single asset in platform universe","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"assetId1\", data.data[0].id)","pm.globals.set(\"assetId2\", data.data[1].id)"],"type":"text/javascript","id":"af520eb3-f9a1-4211-8f03-5d2e4e003c3d"}}],"id":"69ef9974-1e01-4577-b644-49a70d194fd4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}/{{assetId}}","description":"<p>This retrieves a single asset object of the specified <code>assetId</code>.</p>\n","urlObject":{"path":["asset","{{firmId}}","{{assetId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"pageSize","value":"10"},{"disabled":true,"key":"idOrName","value":"van"},{"disabled":true,"key":"isin","value":"GB00BFBFZ140"},{"disabled":true,"key":"instrumentType","value":"Fund"},{"disabled":true,"key":"currency","value":"GBP"},{"disabled":true,"key":"ticker","value":"H4ZG"}],"variable":[]}},"response":[{"id":"daffc249-4c17-48ec-9cb4-097bd33c4224","name":"Retrieve single asset in platform universe","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}/{{assetId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1335"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:05:29 GMT"},{"key":"x-amzn-RequestId","value":"4b4fbecd-39e1-4727-b187-14036db7ef8e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1335"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VksnZHc4joEFWsw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"537-FYfyW/fH7bJlZP1ns65Ki5/aBzU\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d827c8-1f2257a04e818b503d42951e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c499c5bd7a2c5201de6b25f3c79376f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Rd0nxe6si69vteT9wlPQHFwobcWS_Q7JS6dT1xJHF8KFf0b5kFoWTg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"275F1\",\n        \"type\": \"Asset\",\n        \"firmId\": \"SECCI\",\n        \"isin\": \"GB00B3TYHH97\",\n        \"shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n        \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 60% Equity Acc\",\n        \"instrumentType\": \"Fund\",\n        \"currency\": \"GBP\",\n        \"status\": \"Active\",\n        \"firmAccessProhibited\": true,\n        \"primaryMarket\": true,\n        \"quoteUnit\": 1,\n        \"mic\": \"XOFF\",\n        \"mexId\": \"VVLFST\",\n        \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n        \"bid\": 196.2,\n        \"ask\": 196.2,\n        \"mid\": 196.2,\n        \"classifications\": [\n            {\n                \"classificationType\": \"IMA\",\n                \"value\": \"Mixed Investment 40%-85% Shrs\"\n            }\n        ],\n        \"minimumTransferUnit\": 0.0001,\n        \"_longName\": \"VANGUARD INVESTMENTS UK LTD LIFESTRATEGY 60% EQUITY ACC\",\n        \"_shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n        \"availableToNodeId\": [\n            \"0\"\n        ],\n        \"nodeId\": [\n            \"7\",\n            \"15\",\n            \"12\",\n            \"14\",\n            \"6\",\n            \"3\",\n            \"13\",\n            \"5\",\n            \"1\",\n            \"2\",\n            \"8\",\n            \"10\",\n            \"4\",\n            \"11\",\n            \"9\",\n            \"0\"\n        ],\n        \"settlementPeriod\": 4,\n        \"ocfEstimated\": 0.0025,\n        \"ocfCalculated\": 0.0022,\n        \"kiidDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=dfedca76-5112-400e-a77b-004e6f883d5f&user=0rWRIIaKa%2foLQkQbfmqKsLxfKDJQXIYBiYoWrFYgpSI%3d\",\n        \"kiddDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=dfedca76-5112-400e-a77b-004e6f883d5f&user=0rWRIIaKa%2foLQkQbfmqKsLxfKDJQXIYBiYoWrFYgpSI%3d\",\n        \"mifidCharges\": {\n            \"exAnteOngoing\": 0.0022,\n            \"exAnteIncidental\": 0,\n            \"exAnteTransaction\": 0.0005\n        }\n    }\n}"}],"_postman_id":"69ef9974-1e01-4577-b644-49a70d194fd4"}],"id":"85d4e3c3-0f90-447a-95a1-f14431c1ca01","description":"<p>Static assets are available via our API, including regulatory documents, settlement periods, and fund charges.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/ asset\n/ masterinstrument\n\n</code></pre>\n<h3 id=\"the-asset-object\">The asset object</h3>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>shortName</code> string</p>\n<p>The short name of the asset</p>\n<hr />\n<p><code>longName</code> string</p>\n<p>The long name of the asset</p>\n<hr />\n<p><code>instrumentType</code> enum value</p>\n<p>The type of instrument</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Fund</code></td>\n</tr>\n<tr>\n<td><code>Investment Trust</code></td>\n</tr>\n<tr>\n<td><code>ETF</code></td>\n</tr>\n<tr>\n<td><code>Equity</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>mic</code> enum value</p>\n<p>The Market Identifier Code (MIC), which is an international indicator that identifies security trading exchanges</p>\n<hr />\n<p><code>primaryMarket</code> booelan</p>\n<p>This indicates whether the <code>mic</code> is the market where the asset was created and first issued</p>\n<hr />\n<p><code>currency</code> enum value</p>\n<p>The currency the asset trades in</p>\n<hr />\n<p><code>countryOfIssue</code> enum value</p>\n<p>The country where the asset was first issued</p>\n<hr />\n<p><code>countryOfIncorporation</code> enum value</p>\n<p>The country where the asset was incorporated</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the asset. They are the following:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>Available to trade</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Awaiting to be provisioned by Seccl</td>\n</tr>\n<tr>\n<td><code>Rejected</code></td>\n<td></td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>Unavailable to trade</td>\n</tr>\n<tr>\n<td><code>Delisted</code></td>\n<td>No longer listed</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<hr />\n<p><code>bid</code> float</p>\n<p>The maximum that a buyer is willing to pay for the asset</p>\n<hr />\n<p><code>ask</code> float</p>\n<p>The minimum that a seller is willing to pay for the asset</p>\n<hr />\n<p><code>mid</code> float</p>\n<p>The midpoint of the bid and ask prices</p>\n<hr />\n<p><code>stampable</code> boolean</p>\n<p>This indicates whether the asset is applicable for stamp duty. Stamp duty is a form of tax charged on assets in the UK</p>\n<hr />\n<p><code>ptm</code> boolean</p>\n<p>This indicates whether the asset is applicable for the PTM levy. PTM stands for Panel Takeovers and Mergers and is a regulatory body setup to ensure all shareholders are treated equally during takeover bids</p>\n<hr />\n<p><code>nationalityDeclaration</code> boolean</p>\n<p>This indicates whether the shares of the company require a nationality declaration when placing trades. It only applies to equities</p>\n<hr />\n<p><code>quoteUnit</code> integer</p>\n<p>This indicates the number of units for the quote, or price. For example, if the asset is £10 and the <code>quoteUnit</code> is 1, then £10 is the quote for a single unit; if the asset is £100 and the <code>quoteUnit</code> is 100, then £100 is the quote for 100 units</p>\n<hr />\n<p><code>minimumTransferUnit</code> float</p>\n<p>The number of decimal places that the asset can be held. For example, <code>0.0001</code> means the asset can be held to 4 decimal places. This is driven by the fund manager or instrument type</p>\n<hr />\n<p><code>settlementPeriod</code> integer</p>\n<p>The number of days the asset takes to settle upon order execution</p>\n<hr />\n<p><code>incomeCurrency</code> enum value</p>\n<p>The number of days the asset takes to settle upon order execution</p>\n<hr />\n<p><code>taxDetails</code> array</p>\n<p>An array capturing how the asset is taxed</p>\n<hr />\n<p><code>taxDetails.taxDomicile</code> enum value</p>\n<p>The tax country that applies to income. It will depend on where the company is incorporated</p>\n<hr />\n<p><code>taxDetails.reportCategory</code> enum value</p>\n<p>This is either a UK Dividend or a Foreign Dividend depending on where the company is incorporated and income is taxed</p>\n<hr />\n<p><code>restricted</code> boolean</p>\n<p>This indicates whether the asset is ring-fenced to your platform specifically</p>\n<hr />\n<p><code>ocfCalculated</code> float</p>\n<p>This indicates the ongoing charges figure and applies to ETFs, funds, and investment trusts</p>\n<hr />\n<p><code>kiidDocumentUrl</code> string</p>\n<p>The Key Investor Information Document (KIID) of the fund or ETF. This is retrieved from FundsLibrary and should be made available to investors ahead of investing in the asset</p>\n<hr />\n<p><code>fundDetail</code> array</p>\n<p>An array capturing details of the fund</p>\n<hr />\n<p><code>fundDetail.accumulationOrIncome</code> enum value</p>\n<p>This indicates whether the fund is <code>Income</code> or <code>Accumulation</code></p>\n<hr />\n<p><code>mifidCharges</code> array</p>\n<p>An array capturing all MiFID charges on the asset</p>\n<hr />\n<p><code>mifidCharges.exAnteOngoing</code> float</p>\n<p>This describes the ex-ante ongoing costs of the asset. This applies to funds, ETFs and investment trusts only</p>\n<hr />\n<p><code>mifidCharges.exAnteIncidental</code> float</p>\n<p>This describes the ex-ante incidental costs of the asset. This applies to funds, ETFs and investment trusts only</p>\n<hr />\n<p><code>mifidCharges.exAnteTransaction</code> float</p>\n<p>This describes the ex-ante transaction costs of asset, which include both explicit and implicit transaction costs. This applies to funds, ETFs and investment trusts only</p>\n<hr />\n","_postman_id":"85d4e3c3-0f90-447a-95a1-f14431c1ca01"},{"name":"Prices","item":[{"name":"Retrieve asset prices","id":"da201a5e-51fa-428f-afa3-0c84a7e8758b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/price/{{firmId}}/{{assetId}}","description":"<p>This returns the latest and historical prices of an asset. Price values are shown from the point at which the asset was added to Seccl's system.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p>Body parameters for this request are listed under the prices object.</p>\n","urlObject":{"path":["price","{{firmId}}","{{assetId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"dateFrom","value":"YYYY-MM-DD"},{"disabled":true,"key":"dateTo","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"ca3ff966-979c-4d5b-8ba4-cd3662c3874d","name":"Retrieve asset prices","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/price/{{firmId}}/{{assetId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"655830"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:06:14 GMT"},{"key":"x-amzn-RequestId","value":"99a3657b-c1f8-41cf-9698-178d0b95abd7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"655830"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VkstxGMSjoEFXow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"a01d6-iaP+86T8CcRgQhda/QTtTPGhRjI\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d827f1-7d26e1653c57038d28d801d2;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c499c5bd7a2c5201de6b25f3c79376f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Qt0PtjqndxMGqsM2CMgbupSiy0PtExzoC13uv5RzDXHaXQb0SOVcyA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"5b7c73157d6651b432324364\",\n            \"insertDate\": \"2018-02-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73187d6651b432328e60\",\n            \"insertDate\": \"2018-02-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73187d6651b43232865c\",\n            \"insertDate\": \"2018-02-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73177d6651b432327967\",\n            \"insertDate\": \"2018-03-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c731a7d6651b43232ea57\",\n            \"insertDate\": \"2018-03-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c731b7d6651b43232fab1\",\n            \"insertDate\": \"2018-03-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c731c7d6651b432333e86\",\n            \"insertDate\": \"2018-03-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c731d7d6651b4323364fc\",\n            \"insertDate\": \"2018-03-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c731e7d6651b4323388f7\",\n            \"insertDate\": \"2018-03-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73207d6651b43233a328\",\n            \"insertDate\": \"2018-03-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73237d6651b432340e9c\",\n            \"insertDate\": \"2018-03-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73227d6651b43233facd\",\n            \"insertDate\": \"2018-03-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73227d6651b43233ff59\",\n            \"insertDate\": \"2018-03-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73257d6651b432346479\",\n            \"insertDate\": \"2018-03-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73257d6651b432347401\",\n            \"insertDate\": \"2018-03-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73267d6651b432348c22\",\n            \"insertDate\": \"2018-03-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73297d6651b43234f112\",\n            \"insertDate\": \"2018-03-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c732a7d6651b432350ea3\",\n            \"insertDate\": \"2018-03-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c732d7d6651b432358e11\",\n            \"insertDate\": \"2018-03-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c732d7d6651b432356819\",\n            \"insertDate\": \"2018-03-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c732e7d6651b4323593a7\",\n            \"insertDate\": \"2018-03-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73307d6651b43235e37d\",\n            \"insertDate\": \"2018-03-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73317d6651b43235fc23\",\n            \"insertDate\": \"2018-03-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73307d6651b43235dabb\",\n            \"insertDate\": \"2018-03-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73327d6651b432362475\",\n            \"insertDate\": \"2018-03-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73347d6651b432365e52\",\n            \"insertDate\": \"2018-03-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73367d6651b43236b0b6\",\n            \"insertDate\": \"2018-03-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73367d6651b43236c5a5\",\n            \"insertDate\": \"2018-03-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73367d6651b43236a675\",\n            \"insertDate\": \"2018-03-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73377d6651b43236edde\",\n            \"insertDate\": \"2018-03-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73397d6651b432372a92\",\n            \"insertDate\": \"2018-03-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c733a7d6651b432373ea6\",\n            \"insertDate\": \"2018-03-31T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c733c7d6651b432377b88\",\n            \"insertDate\": \"2018-04-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c733c7d6651b432377ee3\",\n            \"insertDate\": \"2018-04-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73407d6651b43238108f\",\n            \"insertDate\": \"2018-04-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73407d6651b432382415\",\n            \"insertDate\": \"2018-04-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c733e7d6651b43237cc32\",\n            \"insertDate\": \"2018-04-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73437d6651b432387d5c\",\n            \"insertDate\": \"2018-04-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73437d6651b4323872b5\",\n            \"insertDate\": \"2018-04-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73447d6651b432389da2\",\n            \"insertDate\": \"2018-04-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73457d6651b43238daf5\",\n            \"insertDate\": \"2018-04-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73457d6651b43238c0f8\",\n            \"insertDate\": \"2018-04-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73477d6651b432391874\",\n            \"insertDate\": \"2018-04-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73457d6651b43238d0ec\",\n            \"insertDate\": \"2018-04-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734a7d6651b432397e98\",\n            \"insertDate\": \"2018-04-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734b7d6651b432399c9c\",\n            \"insertDate\": \"2018-04-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734e7d6651b4323a06e1\",\n            \"insertDate\": \"2018-04-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734c7d6651b43239bdcd\",\n            \"insertDate\": \"2018-04-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734e7d6651b4323a162f\",\n            \"insertDate\": \"2018-04-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c734e7d6651b4323a18d6\",\n            \"insertDate\": \"2018-04-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73517d6651b4323a75e4\",\n            \"insertDate\": \"2018-04-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73517d6651b4323a88c3\",\n            \"insertDate\": \"2018-04-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73547d6651b4323ad2e1\",\n            \"insertDate\": \"2018-04-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73547d6651b4323aee14\",\n            \"insertDate\": \"2018-04-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73557d6651b4323b0975\",\n            \"insertDate\": \"2018-04-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73577d6651b4323b4190\",\n            \"insertDate\": \"2018-04-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73587d6651b4323b776a\",\n            \"insertDate\": \"2018-04-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73587d6651b4323b8702\",\n            \"insertDate\": \"2018-04-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c735a7d6651b4323bb99f\",\n            \"insertDate\": \"2018-04-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c735c7d6651b4323bf8a9\",\n            \"insertDate\": \"2018-04-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c735d7d6651b4323c133a\",\n            \"insertDate\": \"2018-04-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c735d7d6651b4323c34f0\",\n            \"insertDate\": \"2018-04-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73607d6651b4323c9530\",\n            \"insertDate\": \"2018-05-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73607d6651b4323c8fd8\",\n            \"insertDate\": \"2018-05-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73647d6651b4323d1c6d\",\n            \"insertDate\": \"2018-05-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73627d6651b4323cec12\",\n            \"insertDate\": \"2018-05-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73657d6651b4323d5303\",\n            \"insertDate\": \"2018-05-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73637d6651b4323d0f1b\",\n            \"insertDate\": \"2018-05-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73637d6651b4323d158a\",\n            \"insertDate\": \"2018-05-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73677d6651b4323d987d\",\n            \"insertDate\": \"2018-05-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73697d6651b4323de6dd\",\n            \"insertDate\": \"2018-05-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c736a7d6651b4323df603\",\n            \"insertDate\": \"2018-05-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c736c7d6651b4323e39f7\",\n            \"insertDate\": \"2018-05-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c736b7d6651b4323e2ceb\",\n            \"insertDate\": \"2018-05-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c736c7d6651b4323e3fcd\",\n            \"insertDate\": \"2018-05-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c736f7d6651b4323e9e97\",\n            \"insertDate\": \"2018-05-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73707d6651b4323ec928\",\n            \"insertDate\": \"2018-05-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73707d6651b4323edabe\",\n            \"insertDate\": \"2018-05-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73727d6651b4323f1198\",\n            \"insertDate\": \"2018-05-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73737d6651b4323f47f0\",\n            \"insertDate\": \"2018-05-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73767d6651b4323f93a2\",\n            \"insertDate\": \"2018-05-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73747d6651b4323f5942\",\n            \"insertDate\": \"2018-05-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73757d6651b4323f811f\",\n            \"insertDate\": \"2018-05-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73757d6651b4323f8a5d\",\n            \"insertDate\": \"2018-05-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c737b7d6651b4324050f1\",\n            \"insertDate\": \"2018-05-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c737a7d6651b432403176\",\n            \"insertDate\": \"2018-05-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73797d6651b4324015c1\",\n            \"insertDate\": \"2018-05-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c737c7d6651b432407957\",\n            \"insertDate\": \"2018-05-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c737e7d6651b43240b8b0\",\n            \"insertDate\": \"2018-05-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73807d6651b43241018b\",\n            \"insertDate\": \"2018-05-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c737f7d6651b43240e3dc\",\n            \"insertDate\": \"2018-05-31T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73827d6651b4324158ad\",\n            \"insertDate\": \"2018-06-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73837d6651b432416d8c\",\n            \"insertDate\": \"2018-06-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73847d6651b432419214\",\n            \"insertDate\": \"2018-06-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73847d6651b43241abbb\",\n            \"insertDate\": \"2018-06-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73897d6651b43242331d\",\n            \"insertDate\": \"2018-06-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73867d6651b43241e74f\",\n            \"insertDate\": \"2018-06-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73887d6651b43242302e\",\n            \"insertDate\": \"2018-06-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c738c7d6651b43242bbdc\",\n            \"insertDate\": \"2018-06-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c738a7d6651b4324267cc\",\n            \"insertDate\": \"2018-06-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c738c7d6651b43242a6b1\",\n            \"insertDate\": \"2018-06-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c738b7d6651b432429cd4\",\n            \"insertDate\": \"2018-06-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c738e7d6651b432430cc0\",\n            \"insertDate\": \"2018-06-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73907d6651b432432bf1\",\n            \"insertDate\": \"2018-06-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73927d6651b432437780\",\n            \"insertDate\": \"2018-06-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73917d6651b432435c7c\",\n            \"insertDate\": \"2018-06-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73927d6651b4324389ec\",\n            \"insertDate\": \"2018-06-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73967d6651b432440b1d\",\n            \"insertDate\": \"2018-06-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73967d6651b4324421d9\",\n            \"insertDate\": \"2018-06-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73957d6651b43243f9fc\",\n            \"insertDate\": \"2018-06-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73957d6651b43243ff2c\",\n            \"insertDate\": \"2018-06-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73987d6651b4324455c1\",\n            \"insertDate\": \"2018-06-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c739a7d6651b43244a9a5\",\n            \"insertDate\": \"2018-06-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c739c7d6651b43244fa82\",\n            \"insertDate\": \"2018-06-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c739d7d6651b432452035\",\n            \"insertDate\": \"2018-06-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c739f7d6651b432454746\",\n            \"insertDate\": \"2018-06-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c739f7d6651b432455363\",\n            \"insertDate\": \"2018-06-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a37d6651b43245cd7b\",\n            \"insertDate\": \"2018-06-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a27d6651b43245c4be\",\n            \"insertDate\": \"2018-06-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a17d6651b4324593fc\",\n            \"insertDate\": \"2018-06-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a57d6651b4324627fe\",\n            \"insertDate\": \"2018-06-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a57d6651b432463160\",\n            \"insertDate\": \"2018-07-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a47d6651b4324609ab\",\n            \"insertDate\": \"2018-07-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a87d6651b43246aaf4\",\n            \"insertDate\": \"2018-07-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a87d6651b43246a13c\",\n            \"insertDate\": \"2018-07-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73a97d6651b43246c15f\",\n            \"insertDate\": \"2018-07-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73ab7d6651b432470b95\",\n            \"insertDate\": \"2018-07-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73ab7d6651b4324701fa\",\n            \"insertDate\": \"2018-07-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73ad7d6651b432473bcd\",\n            \"insertDate\": \"2018-07-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73af7d6651b43247806e\",\n            \"insertDate\": \"2018-07-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b07d6651b43247a927\",\n            \"insertDate\": \"2018-07-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b17d6651b43247d2aa\",\n            \"insertDate\": \"2018-07-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b27d6651b43247ff0e\",\n            \"insertDate\": \"2018-07-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b47d6651b432482911\",\n            \"insertDate\": \"2018-07-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b57d6651b43248518c\",\n            \"insertDate\": \"2018-07-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b67d6651b432487c38\",\n            \"insertDate\": \"2018-07-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b77d6651b43248a507\",\n            \"insertDate\": \"2018-07-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b87d6651b43248d07b\",\n            \"insertDate\": \"2018-07-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73b97d6651b43248efe6\",\n            \"insertDate\": \"2018-07-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73ba7d6651b432491a14\",\n            \"insertDate\": \"2018-07-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73bc7d6651b432494442\",\n            \"insertDate\": \"2018-07-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73bd7d6651b432496e70\",\n            \"insertDate\": \"2018-07-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73be7d6651b43249989e\",\n            \"insertDate\": \"2018-07-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73bf7d6651b43249c2cc\",\n            \"insertDate\": \"2018-07-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c07d6651b43249ecfa\",\n            \"insertDate\": \"2018-07-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c17d6651b4324a1728\",\n            \"insertDate\": \"2018-07-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c27d6651b4324a4156\",\n            \"insertDate\": \"2018-07-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c47d6651b4324a6b84\",\n            \"insertDate\": \"2018-07-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c57d6651b4324a95b2\",\n            \"insertDate\": \"2018-07-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c67d6651b4324abfe0\",\n            \"insertDate\": \"2018-07-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c77d6651b4324aea0e\",\n            \"insertDate\": \"2018-07-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73c87d6651b4324b143c\",\n            \"insertDate\": \"2018-07-31T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73ca7d6651b4324b3e6a\",\n            \"insertDate\": \"2018-08-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73cb7d6651b4324b6898\",\n            \"insertDate\": \"2018-08-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73cc7d6651b4324b92c6\",\n            \"insertDate\": \"2018-08-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73cd7d6651b4324bbcf4\",\n            \"insertDate\": \"2018-08-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73cf7d6651b4324be722\",\n            \"insertDate\": \"2018-08-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d07d6651b4324c1150\",\n            \"insertDate\": \"2018-08-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d17d6651b4324c3b7e\",\n            \"insertDate\": \"2018-08-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d27d6651b4324c65ac\",\n            \"insertDate\": \"2018-08-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d37d6651b4324c8fda\",\n            \"insertDate\": \"2018-08-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d57d6651b4324cba08\",\n            \"insertDate\": \"2018-08-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d67d6651b4324ce436\",\n            \"insertDate\": \"2018-08-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d77d6651b4324d0e64\",\n            \"insertDate\": \"2018-08-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d87d6651b4324d3892\",\n            \"insertDate\": \"2018-08-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73d97d6651b4324d62c0\",\n            \"insertDate\": \"2018-08-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73da7d6651b4324d8cee\",\n            \"insertDate\": \"2018-08-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73db7d6651b4324db71c\",\n            \"insertDate\": \"2018-08-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73dd7d6651b4324de14a\",\n            \"insertDate\": \"2018-08-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73de7d6651b4324e0b78\",\n            \"insertDate\": \"2018-08-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73df7d6651b4324e35a6\",\n            \"insertDate\": \"2018-08-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7c73e07d6651b4324e5fd4\",\n            \"insertDate\": \"2018-08-20T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7d0d6c4664398a1414c211\",\n            \"insertDate\": \"2018-08-21T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b7e5d1a682d080c8e9227f5\",\n            \"insertDate\": \"2018-08-22T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b84f21edf2fe388620704f4\",\n            \"insertDate\": \"2018-08-23T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b84f22ddf2fe38862072f22\",\n            \"insertDate\": \"2018-08-24T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b84f239df2fe38862075950\",\n            \"insertDate\": \"2018-08-25T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b84f240df2fe3886207837e\",\n            \"insertDate\": \"2018-08-26T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b84f252df2fe3886207adac\",\n            \"insertDate\": \"2018-08-27T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8643f766da89a0c3872120\",\n            \"insertDate\": \"2018-08-28T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b87a2a179ddc6925ebea3e4\",\n            \"insertDate\": \"2018-08-29T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b88e650a6af61c0a4fd8deb\",\n            \"insertDate\": \"2018-08-30T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8ce38843a377d514b91879\",\n            \"insertDate\": \"2018-08-31T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8ce39543a377d514b942a7\",\n            \"insertDate\": \"2018-09-01T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8ce3a143a377d514b96cd5\",\n            \"insertDate\": \"2018-09-02T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8e2bdfe63ec849be98b58a\",\n            \"insertDate\": \"2018-09-03T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b8f8017979073ec6c44edec\",\n            \"insertDate\": \"2018-09-04T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b90d75b041e9ee150a63768\",\n            \"insertDate\": \"2018-09-05T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b918dec65040be9ef82f34a\",\n            \"insertDate\": \"2018-09-06T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b96171b1b8f8a342b09beeb\",\n            \"insertDate\": \"2018-09-07T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9617281b8f8a342b09e91a\",\n            \"insertDate\": \"2018-09-08T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9617341b8f8a342b0a1349\",\n            \"insertDate\": \"2018-09-09T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b97ce6f36345adfd7689525\",\n            \"insertDate\": \"2018-09-10T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b981b3709b19bb3d0e53705\",\n            \"insertDate\": \"2018-09-11T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b997880cc3d52864ebbfa9e\",\n            \"insertDate\": \"2018-09-12T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9ac521da2829720431a79e\",\n            \"insertDate\": \"2018-09-13T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9f593f74bec00965a2e345\",\n            \"insertDate\": \"2018-09-14T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9f594a74bec00965a30d7e\",\n            \"insertDate\": \"2018-09-15T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5b9f595574bec00965a337b7\",\n            \"insertDate\": \"2018-09-16T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba0a3eb7c37083c6b68c30c\",\n            \"insertDate\": \"2018-09-17T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba16c79b7a58939825ab23b\",\n            \"insertDate\": \"2018-09-18T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba2b203a5c352a04ebf06d8\",\n            \"insertDate\": \"2018-09-19T00:00:00.000Z\",\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"ask\": 121.2647,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba499ae4b867df3a386f4d0\",\n            \"insertDate\": \"2018-09-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba88b824b867df3a3c573a3\",\n            \"insertDate\": \"2018-09-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba88b8c4b867df3a3c5a1a3\",\n            \"insertDate\": \"2018-09-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba88b9a4b867df3a3c5d136\",\n            \"insertDate\": \"2018-09-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ba9eda24b867df3a3dd13b1\",\n            \"insertDate\": \"2018-09-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bab32f14b867df3a3f3a967\",\n            \"insertDate\": \"2018-09-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5babf6904b867df3a3022eda\",\n            \"insertDate\": \"2018-09-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5badd42e4b3fb3f0a98592a8\",\n            \"insertDate\": \"2018-09-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb1cf064b3fb3f0a9d29600\",\n            \"insertDate\": \"2018-09-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb1cf174b3fb3f0a9d2ca08\",\n            \"insertDate\": \"2018-09-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb1cf254b3fb3f0a9d2fcb0\",\n            \"insertDate\": \"2018-09-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb31b5c4b3fb3f0a9ec833e\",\n            \"insertDate\": \"2018-10-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb48ef14b3fb3f0a909cf71\",\n            \"insertDate\": \"2018-10-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb528de4b3fb3f0a9168029\",\n            \"insertDate\": \"2018-10-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb6837d4b3fb3f0a9ae7d93\",\n            \"insertDate\": \"2018-10-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb88b564b3fb3f0a9d74251\",\n            \"insertDate\": \"2018-10-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb88b694b3fb3f0a9d77614\",\n            \"insertDate\": \"2018-10-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bb88b7c4b3fb3f0a9d7a9f2\",\n            \"insertDate\": \"2018-10-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bbbc5d84b3fb3f0a9165029\",\n            \"insertDate\": \"2018-10-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bbd15194b3fb3f0a930a463\",\n            \"insertDate\": \"2018-10-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bbef6614b3fb3f0a955f2d2\",\n            \"insertDate\": \"2018-10-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc04a974b3fb3f0a9708208\",\n            \"insertDate\": \"2018-10-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc3bb124b3fb3f0a9b2c2b4\",\n            \"insertDate\": \"2018-10-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc3bb234b3fb3f0a9b2f831\",\n            \"insertDate\": \"2018-10-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc3bb334b3fb3f0a9b32c32\",\n            \"insertDate\": \"2018-10-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc58f6c4b3fb3f0a9d7c083\",\n            \"insertDate\": \"2018-10-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc6426c4b3fb3f0a9e808c2\",\n            \"insertDate\": \"2018-10-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc8305e4b3fb3f0a90e6dca\",\n            \"insertDate\": \"2018-10-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bc9f6634b3fb3f0a933cdf2\",\n            \"insertDate\": \"2018-10-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bccdc514b3fb3f0a96c44c8\",\n            \"insertDate\": \"2018-10-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bccdc674b3fb3f0a96c7839\",\n            \"insertDate\": \"2018-10-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bccdc7b4b3fb3f0a96cac46\",\n            \"insertDate\": \"2018-10-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bcecaa34b3fb3f0a997cb1e\",\n            \"insertDate\": \"2018-10-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd01c104b3fb3f0a9b47f52\",\n            \"insertDate\": \"2018-10-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd16c4e4b3fb3f0a9cf0103\",\n            \"insertDate\": \"2018-10-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd2bdc54b3fb3f0a9e9660d\",\n            \"insertDate\": \"2018-10-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd457034b3fb3f0a90abe3d\",\n            \"insertDate\": \"2018-10-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd457114b3fb3f0a90af1e7\",\n            \"insertDate\": \"2018-10-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd457204b3fb3f0a90b2661\",\n            \"insertDate\": \"2018-10-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd82f8f4b3fb3f0a9563702\",\n            \"insertDate\": \"2018-10-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bd9605e4b3fb3f0a96e14e7\",\n            \"insertDate\": \"2018-10-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bdab2cb4b3fb3f0a986feb5\",\n            \"insertDate\": \"2018-10-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bdbffdf4b3fb3f0a9a0f93d\",\n            \"insertDate\": \"2018-11-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bddadfe4b3fb3f0a9c2c008\",\n            \"insertDate\": \"2018-11-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bddae144b3fb3f0a9c2f440\",\n            \"insertDate\": \"2018-11-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bddae244b3fb3f0a9c3271e\",\n            \"insertDate\": \"2018-11-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be0c1fc4b3fb3f0a9ff6c56\",\n            \"insertDate\": \"2018-11-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be35fda7307b529f6a92d45\",\n            \"insertDate\": \"2018-11-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be3600d7307b529f6a96071\",\n            \"insertDate\": \"2018-11-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be6c39d7307b529f6ecd226\",\n            \"insertDate\": \"2018-11-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be6c3b47307b529f6ed058d\",\n            \"insertDate\": \"2018-11-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be6c3c27307b529f6ed386c\",\n            \"insertDate\": \"2018-11-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5be6c3d37307b529f6ed6a03\",\n            \"insertDate\": \"2018-11-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bea85757307b529f63a1160\",\n            \"insertDate\": \"2018-11-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bebdf5e7307b529f65ac226\",\n            \"insertDate\": \"2018-11-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bed29277307b529f679d107\",\n            \"insertDate\": \"2018-11-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bee7a607307b529f6998327\",\n            \"insertDate\": \"2018-11-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5beef20d7307b529f6a591c6\",\n            \"insertDate\": \"2018-11-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5beef74f7307b529f6a63c4d\",\n            \"insertDate\": \"2018-11-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bf3c3857307b529f60d1207\",\n            \"insertDate\": \"2018-11-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bf513fa7307b529f62d0e2b\",\n            \"insertDate\": \"2018-11-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bf669ca7307b529f64d8d1e\",\n            \"insertDate\": \"2018-11-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bf7b4b97307b529f66d1275\",\n            \"insertDate\": \"2018-11-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bfc6a2f7307b529f6e05db9\",\n            \"insertDate\": \"2018-11-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bfe4e597307b529f60ea4ac\",\n            \"insertDate\": \"2018-11-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5bffabd07307b529f6308a32\",\n            \"insertDate\": \"2018-11-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0115cb0da962f854e5cab4\",\n            \"insertDate\": \"2018-11-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c02f0350da962f85412c68c\",\n            \"insertDate\": \"2018-11-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c02f0440da962f85412faa8\",\n            \"insertDate\": \"2018-12-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c02f0610da962f854132f80\",\n            \"insertDate\": \"2018-12-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0639c90da962f85461d375\",\n            \"insertDate\": \"2018-12-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0779e40da962f85480ef4c\",\n            \"insertDate\": \"2018-12-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c08d9df0da962f854a44e9b\",\n            \"insertDate\": \"2018-12-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0a2b1a0da962f854c54042\",\n            \"insertDate\": \"2018-12-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0e271a0da962f854239ce7\",\n            \"insertDate\": \"2018-12-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0e27280da962f85423d216\",\n            \"insertDate\": \"2018-12-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0e27370da962f8542407af\",\n            \"insertDate\": \"2018-12-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c0f72970da962f85455a3fa\",\n            \"insertDate\": \"2018-12-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c10c1c60da962f85479f6e3\",\n            \"insertDate\": \"2018-12-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1215470da962f8549e7ef5\",\n            \"insertDate\": \"2018-12-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1366d30da962f854c0f583\",\n            \"insertDate\": \"2018-12-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c14cf0c0da962f854e3b902\",\n            \"insertDate\": \"2018-12-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c14cf1e0da962f854e3ea42\",\n            \"insertDate\": \"2018-12-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c14cf310da962f854e41e08\",\n            \"insertDate\": \"2018-12-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c18a8b20da962f8543f9815\",\n            \"insertDate\": \"2018-12-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1a17640da962f85463047d\",\n            \"insertDate\": \"2018-12-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1c9dc30da962f854a210b7\",\n            \"insertDate\": \"2018-12-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1e0bb00da962f854c5aa4d\",\n            \"insertDate\": \"2018-12-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1e0bc00da962f854c5dd84\",\n            \"insertDate\": \"2018-12-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c1e0bcc0da962f854c6105e\",\n            \"insertDate\": \"2018-12-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c23ee630da962f85454dfdd\",\n            \"insertDate\": \"2018-12-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c23ee750da962f8545512f7\",\n            \"insertDate\": \"2018-12-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c23ee860da962f8545545f4\",\n            \"insertDate\": \"2018-12-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c25ebcb0da962f85485e8c6\",\n            \"insertDate\": \"2018-12-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2739d10da962f854a5e8f1\",\n            \"insertDate\": \"2018-12-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2739e10da962f854a61c4b\",\n            \"insertDate\": \"2018-12-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2739f30da962f854a65029\",\n            \"insertDate\": \"2018-12-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2b2a460da962f854065a6f\",\n            \"insertDate\": \"2018-12-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2b2a5c0da962f854068f58\",\n            \"insertDate\": \"2019-01-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2dc2cb0da962f8544874e6\",\n            \"insertDate\": \"2019-01-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c2f18b60da962f8546e9ef2\",\n            \"insertDate\": \"2019-01-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3070d10da962f85495e329\",\n            \"insertDate\": \"2019-01-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3070e10da962f854961730\",\n            \"insertDate\": \"2019-01-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3070f40da962f854964b4f\",\n            \"insertDate\": \"2019-01-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c33e9620da962f854f4895a\",\n            \"insertDate\": \"2019-01-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c353ae00da962f85418c1d8\",\n            \"insertDate\": \"2019-01-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c368c690da962f8543d0db4\",\n            \"insertDate\": \"2019-01-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c37dde30da962f85462a6d9\",\n            \"insertDate\": \"2019-01-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c392f630da962f85488bc10\",\n            \"insertDate\": \"2019-01-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3a80f10da962f854ad5de0\",\n            \"insertDate\": \"2019-01-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3bd2660da962f854d214f9\",\n            \"insertDate\": \"2019-01-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3d23ea0da962f854f9fe64\",\n            \"insertDate\": \"2019-01-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3e756a0da962f854207e07\",\n            \"insertDate\": \"2019-01-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c3fc6ea0da962f85448091e\",\n            \"insertDate\": \"2019-01-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c41185f0da962f8546f6c7e\",\n            \"insertDate\": \"2019-01-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4269df0da962f85497b83b\",\n            \"insertDate\": \"2019-01-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c43bb660da962f854bda40f\",\n            \"insertDate\": \"2019-01-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c450ce70da962f854e348c2\",\n            \"insertDate\": \"2019-01-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c465e6e0da962f8540b76cf\",\n            \"insertDate\": \"2019-01-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c47afe10da962f8543412ca\",\n            \"insertDate\": \"2019-01-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c49015f0da962f8545c643a\",\n            \"insertDate\": \"2019-01-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4a52e50da962f8548638c4\",\n            \"insertDate\": \"2019-01-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4ba4690da962f854afcd9f\",\n            \"insertDate\": \"2019-01-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4cf5e70da962f854d77d55\",\n            \"insertDate\": \"2019-01-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4e47670da962f854ff14e0\",\n            \"insertDate\": \"2019-01-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c4f98e0e3d6917039885859\",\n            \"insertDate\": \"2019-01-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c50ea60e3d6917039b3fb21\",\n            \"insertDate\": \"2019-01-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c523be5e3d6917039e17347\",\n            \"insertDate\": \"2019-01-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c538d60e3d6917039104ef0\",\n            \"insertDate\": \"2019-01-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c54dee3447f8d68a361eafb\",\n            \"insertDate\": \"2019-02-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c56305e447f8d68a38c2251\",\n            \"insertDate\": \"2019-02-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5781e3447f8d68a3b65a72\",\n            \"insertDate\": \"2019-02-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c58d35f447f8d68a3e210f8\",\n            \"insertDate\": \"2019-02-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5a24e8447f8d68a30e644e\",\n            \"insertDate\": \"2019-02-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5b7663447f8d68a33b5ae1\",\n            \"insertDate\": \"2019-02-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5cc7e8447f8d68a36983c8\",\n            \"insertDate\": \"2019-02-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5e195f447f8d68a396f11d\",\n            \"insertDate\": \"2019-02-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c5f6ae9447f8d68a3c28cd6\",\n            \"insertDate\": \"2019-02-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c60bc69447f8d68a3edc38d\",\n            \"insertDate\": \"2019-02-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c620ddf447f8d68a31b1dd9\",\n            \"insertDate\": \"2019-02-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c635f72447f8d68a3498476\",\n            \"insertDate\": \"2019-02-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c64b0ee447f8d68a37901ee\",\n            \"insertDate\": \"2019-02-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c660263447f8d68a3a7cc3e\",\n            \"insertDate\": \"2019-02-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c6753e7e3d69170390d5375\",\n            \"insertDate\": \"2019-02-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c68a566e3d6917039393de9\",\n            \"insertDate\": \"2019-02-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c69f6e9e3d6917039652b5f\",\n            \"insertDate\": \"2019-02-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c6b4866e3d691703994dc0c\",\n            \"insertDate\": \"2019-02-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c6c99e7e3d6917039c4e6b7\",\n            \"insertDate\": \"2019-02-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c6deb67e3d6917039f5f186\",\n            \"insertDate\": \"2019-02-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c6f3ceae3d6917039290cc2\",\n            \"insertDate\": \"2019-02-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c708e6be3d69170395cece4\",\n            \"insertDate\": \"2019-02-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c71dfe4e3d69170398ea0f0\",\n            \"insertDate\": \"2019-02-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c733166e3d6917039c03bb2\",\n            \"insertDate\": \"2019-02-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7482e9e3d6917039f4c83a\",\n            \"insertDate\": \"2019-02-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c75d468e3d691703929b385\",\n            \"insertDate\": \"2019-02-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7725e0e3d69170395f3aa8\",\n            \"insertDate\": \"2019-02-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c787771e3d6917039971f64\",\n            \"insertDate\": \"2019-02-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c79c8e80d40665af5d25ae0\",\n            \"insertDate\": \"2019-03-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7b1a6d0d40665af508414c\",\n            \"insertDate\": \"2019-03-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7c6be50d40665af54526e8\",\n            \"insertDate\": \"2019-03-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7dbd690d40665af5807055\",\n            \"insertDate\": \"2019-03-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c7f0ee90d40665af5b9ff13\",\n            \"insertDate\": \"2019-03-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c806067bf4cc582bf564c1e\",\n            \"insertDate\": \"2019-03-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c81b1debf4cc582bf945b91\",\n            \"insertDate\": \"2019-03-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c830366bf4cc582bfcff60e\",\n            \"insertDate\": \"2019-03-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c8454e8bf4cc582bf06432f\",\n            \"insertDate\": \"2019-03-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c85a666bf4cc582bf3d6e4c\",\n            \"insertDate\": \"2019-03-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c86f7e9bf4cc582bf77e887\",\n            \"insertDate\": \"2019-03-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c88496bbf4cc582bfb0d388\",\n            \"insertDate\": \"2019-03-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c899ae880137b19ee4f74d1\",\n            \"insertDate\": \"2019-03-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c8aec6980137b19ee8a6e0b\",\n            \"insertDate\": \"2019-03-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c8c3ddf80137b19eec7a78a\",\n            \"insertDate\": \"2019-03-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c8d8f6780137b19eeff77e2\",\n            \"insertDate\": \"2019-03-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c8ee0e980137b19ee3748a0\",\n            \"insertDate\": \"2019-03-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c90326880137b19ee730349\",\n            \"insertDate\": \"2019-03-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9183f680137b19eeaf39d0\",\n            \"insertDate\": \"2019-03-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c92d56980137b19eeececd1\",\n            \"insertDate\": \"2019-03-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9426eb80137b19ee2ae361\",\n            \"insertDate\": \"2019-03-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c95786a80137b19ee6b6592\",\n            \"insertDate\": \"2019-03-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c96c9e680137b19eea766b6\",\n            \"insertDate\": \"2019-03-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c981b6180137b19eee3405c\",\n            \"insertDate\": \"2019-03-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c996ce080137b19ee2291e8\",\n            \"insertDate\": \"2019-03-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9abe6f80137b19ee61f7e7\",\n            \"insertDate\": \"2019-03-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9c0fe980137b19eeacbdc4\",\n            \"insertDate\": \"2019-03-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9d6169774f6f547495bb86\",\n            \"insertDate\": \"2019-03-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5c9eb2e8668141784b104944\",\n            \"insertDate\": \"2019-03-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca0046b668141784b44bc6a\",\n            \"insertDate\": \"2019-03-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca155e9668141784b7945c7\",\n            \"insertDate\": \"2019-03-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca2a76e668141784bafe450\",\n            \"insertDate\": \"2019-04-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca3f8e6668141784be777e5\",\n            \"insertDate\": \"2019-04-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca54a68668141784b1f413e\",\n            \"insertDate\": \"2019-04-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca69be8668141784b570926\",\n            \"insertDate\": \"2019-04-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca7ed67668141784b8d85b5\",\n            \"insertDate\": \"2019-04-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ca93eed668141784bc240b6\",\n            \"insertDate\": \"2019-04-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5caa9068668141784bf740c8\",\n            \"insertDate\": \"2019-04-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cabe1e7668141784b2ea0e3\",\n            \"insertDate\": \"2019-04-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cad336a668141784b66f514\",\n            \"insertDate\": \"2019-04-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cae84e4668141784b9f100d\",\n            \"insertDate\": \"2019-04-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cafd669102a21efca0b7722\",\n            \"insertDate\": \"2019-04-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb127e8102a21efca47a26e\",\n            \"insertDate\": \"2019-04-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb27968102a21efca820a78\",\n            \"insertDate\": \"2019-04-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb3cae7102a21efcabc75f0\",\n            \"insertDate\": \"2019-04-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb51c6a102a21efcaf8ae2d\",\n            \"insertDate\": \"2019-04-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb66de8102a21efca34f8a5\",\n            \"insertDate\": \"2019-04-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb7bf67102a21efca755e7d\",\n            \"insertDate\": \"2019-04-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cb910e8102a21efcab4c821\",\n            \"insertDate\": \"2019-04-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cba6269102a21efcaf62f11\",\n            \"insertDate\": \"2019-04-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cbbb3e6102a21efca36e436\",\n            \"insertDate\": \"2019-04-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cbd0569102a21efca777446\",\n            \"insertDate\": \"2019-04-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cbe56e8102a21efcab842db\",\n            \"insertDate\": \"2019-04-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cbfa867102a21efcafa2841\",\n            \"insertDate\": \"2019-04-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc0f9e1102a21efca3c32f2\",\n            \"insertDate\": \"2019-04-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc24b7b102a21efca7c779b\",\n            \"insertDate\": \"2019-04-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc39ce9102a21efcabd7945\",\n            \"insertDate\": \"2019-04-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc4ee67102a21efcafc6a7b\",\n            \"insertDate\": \"2019-04-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc63fe7102a21efca3b7f61\",\n            \"insertDate\": \"2019-04-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc79165102a21efca7c16bd\",\n            \"insertDate\": \"2019-04-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cc8e2e9102a21efcabc0afb\",\n            \"insertDate\": \"2019-04-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cca3467102a21efcaee2cdd\",\n            \"insertDate\": \"2019-05-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ccb85e1102a21efca0d3750\",\n            \"insertDate\": \"2019-05-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cccd767102a21efca2ca90b\",\n            \"insertDate\": \"2019-05-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cce28e7102a21efca4a2614\",\n            \"insertDate\": \"2019-05-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ccf7a68102a21efca679a3e\",\n            \"insertDate\": \"2019-05-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd0cbe8102a21efca85f750\",\n            \"insertDate\": \"2019-05-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd21d67102a21efcaa59b84\",\n            \"insertDate\": \"2019-05-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd36ee8102a21efcac5e54b\",\n            \"insertDate\": \"2019-05-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd4c069102a21efcaddf525\",\n            \"insertDate\": \"2019-05-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd611df102a21efcaf86144\",\n            \"insertDate\": \"2019-05-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd76373102a21efca0fb106\",\n            \"insertDate\": \"2019-05-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cd8b4dd102a21efca26ea46\",\n            \"insertDate\": \"2019-05-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cda0668102a21efca40d495\",\n            \"insertDate\": \"2019-05-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cdb57e3102a21efca5a3f59\",\n            \"insertDate\": \"2019-05-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cdca96b102a21efca77f6ce\",\n            \"insertDate\": \"2019-05-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cddfaee102a21efca93f84d\",\n            \"insertDate\": \"2019-05-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cdf4c65102a21efcaaf0335\",\n            \"insertDate\": \"2019-05-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce09dec102a21efcac79562\",\n            \"insertDate\": \"2019-05-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce1ef68102a21efcae0138f\",\n            \"insertDate\": \"2019-05-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce340ea102a21efcafc02e7\",\n            \"insertDate\": \"2019-05-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce49268102a21efca177fbb\",\n            \"insertDate\": \"2019-05-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce5e3e8102a21efca331078\",\n            \"insertDate\": \"2019-05-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce7356b102a21efca4e5a9d\",\n            \"insertDate\": \"2019-05-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce886e1102a21efca69ff9a\",\n            \"insertDate\": \"2019-05-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ce9d868102a21efca834f45\",\n            \"insertDate\": \"2019-05-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ceb29e8102a21efca9ca1d2\",\n            \"insertDate\": \"2019-05-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cec7b76102a21efcab6cad9\",\n            \"insertDate\": \"2019-05-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cedcce8102a21efcad29e5a\",\n            \"insertDate\": \"2019-05-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cef1e68102a21efcaefacb4\",\n            \"insertDate\": \"2019-05-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf06fe6102a21efca0b5446\",\n            \"insertDate\": \"2019-05-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf1c168102a21efca27fd1c\",\n            \"insertDate\": \"2019-05-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf312e7102a21efca41b9e7\",\n            \"insertDate\": \"2019-06-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf46468102a21efca5b7e60\",\n            \"insertDate\": \"2019-06-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf5b5de102a21efca804332\",\n            \"insertDate\": \"2019-06-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf70767102a21efcaac4762\",\n            \"insertDate\": \"2019-06-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf858e8102a21efcad2b073\",\n            \"insertDate\": \"2019-06-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cf9aa68102a21efcaf9b61f\",\n            \"insertDate\": \"2019-06-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cfafbe7102a21efca232be3\",\n            \"insertDate\": \"2019-06-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cfc4d69102a21efca45356d\",\n            \"insertDate\": \"2019-06-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cfd9ee9102a21efca676565\",\n            \"insertDate\": \"2019-06-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5cfef06aab69f466e51049dd\",\n            \"insertDate\": \"2019-06-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0041e8ab69f466e52f1692\",\n            \"insertDate\": \"2019-06-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d01935cab69f466e55018c9\",\n            \"insertDate\": \"2019-06-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d02e4dfffd1270fb682742c\",\n            \"insertDate\": \"2019-06-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d04366ba54d6d195d2f2da7\",\n            \"insertDate\": \"2019-06-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0587e9a54d6d195d4b333b\",\n            \"insertDate\": \"2019-06-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d06d969a54d6d195d6721a0\",\n            \"insertDate\": \"2019-06-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d082ae8a54d6d195d877f69\",\n            \"insertDate\": \"2019-06-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d097c69a54d6d195da6a567\",\n            \"insertDate\": \"2019-06-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0acde7a54d6d195dc6b431\",\n            \"insertDate\": \"2019-06-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0c1f68a54d6d195de49d82\",\n            \"insertDate\": \"2019-06-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0d70e8a54d6d195dfd787d\",\n            \"insertDate\": \"2019-06-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d0ec268a54d6d195d14d349\",\n            \"insertDate\": \"2019-06-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1013f8a54d6d195d2aab04\",\n            \"insertDate\": \"2019-06-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d116567a54d6d195d4421ed\",\n            \"insertDate\": \"2019-06-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d12b6e8a54d6d195d5d19fd\",\n            \"insertDate\": \"2019-06-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d14086a9e7bb53369d06d03\",\n            \"insertDate\": \"2019-06-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1559e79e7bb53369eb1532\",\n            \"insertDate\": \"2019-06-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d16ab699e7bb533690382a3\",\n            \"insertDate\": \"2019-06-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d17fcea9e7bb533691a174d\",\n            \"insertDate\": \"2019-06-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d194e699e7bb5336930c23b\",\n            \"insertDate\": \"2019-06-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1a9fea9e7bb53369499b4f\",\n            \"insertDate\": \"2019-07-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1bf1679e7bb5336963e1d5\",\n            \"insertDate\": \"2019-07-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1d42ea9e7bb533697ea688\",\n            \"insertDate\": \"2019-07-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1e94699e7bb53369994660\",\n            \"insertDate\": \"2019-07-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d1fe5e99e7bb53369b38a60\",\n            \"insertDate\": \"2019-07-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2137689e7bb53369ca720b\",\n            \"insertDate\": \"2019-07-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2288e89e7bb53369e1693d\",\n            \"insertDate\": \"2019-07-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d23da669e7bb53369fb3b71\",\n            \"insertDate\": \"2019-07-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d252be69e7bb5336915a70d\",\n            \"insertDate\": \"2019-07-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d267d5f9e7bb5336935ede6\",\n            \"insertDate\": \"2019-07-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d27cee99e7bb533695315d8\",\n            \"insertDate\": \"2019-07-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2920679e7bb533696e393d\",\n            \"insertDate\": \"2019-07-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2a71e99e7bb5336985d065\",\n            \"insertDate\": \"2019-07-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2bc3699e7bb533699d6272\",\n            \"insertDate\": \"2019-07-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2d14e79e7bb53369b89ecd\",\n            \"insertDate\": \"2019-07-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2e66689e7bb53369d51765\",\n            \"insertDate\": \"2019-07-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d2fb7e89e7bb53369f10e93\",\n            \"insertDate\": \"2019-07-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3109699e7bb533690dcf1d\",\n            \"insertDate\": \"2019-07-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d325ae69e7bb533692d3b0a\",\n            \"insertDate\": \"2019-07-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d33ac669e7bb53369461833\",\n            \"insertDate\": \"2019-07-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d34fde89e7bb533695e8aae\",\n            \"insertDate\": \"2019-07-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d364f629e7bb533697a156e\",\n            \"insertDate\": \"2019-07-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d37a0e99e7bb533699675e6\",\n            \"insertDate\": \"2019-07-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d38f2679e7bb53369b45a90\",\n            \"insertDate\": \"2019-07-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3a43e99e7bb53369dac70a\",\n            \"insertDate\": \"2019-07-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3b9569a73c601081388cae\",\n            \"insertDate\": \"2019-07-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3ce6e1a73c6010815c9b9f\",\n            \"insertDate\": \"2019-07-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3e3869a73c60108184d647\",\n            \"insertDate\": \"2019-07-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d3f89e7a73c601081b0e144\",\n            \"insertDate\": \"2019-07-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d40db68a73c601081e594ec\",\n            \"insertDate\": \"2019-07-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d422ce8a73c6010811b0c89\",\n            \"insertDate\": \"2019-07-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d437e68a73c601081495889\",\n            \"insertDate\": \"2019-08-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d44cfe7a73c60108166c44d\",\n            \"insertDate\": \"2019-08-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d462165a73c6010817ed7b2\",\n            \"insertDate\": \"2019-08-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4772e8a73c60108196dc28\",\n            \"insertDate\": \"2019-08-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d48c461a73c601081b1f0c1\",\n            \"insertDate\": \"2019-08-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4a15e4a73c601081cdefa7\",\n            \"insertDate\": \"2019-08-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4b676fa73c601081ebbace\",\n            \"insertDate\": \"2019-08-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4cb8dea73c60108108d812\",\n            \"insertDate\": \"2019-08-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4e0a61a73c601081248759\",\n            \"insertDate\": \"2019-08-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d4f5be3a73c6010813d49fb\",\n            \"insertDate\": \"2019-08-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d50ad55a73c601081555cb9\",\n            \"insertDate\": \"2019-08-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d51fee4a73c601081711e1e\",\n            \"insertDate\": \"2019-08-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d535061a73c6010818c23f6\",\n            \"insertDate\": \"2019-08-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d54a1eaa73c601081a898a7\",\n            \"insertDate\": \"2019-08-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d55f361a73c601081c4e252\",\n            \"insertDate\": \"2019-08-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d5744e2a73c601081e2b3e4\",\n            \"insertDate\": \"2019-08-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d589669a73c601081fc10e0\",\n            \"insertDate\": \"2019-08-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d59e7e1a73c6010811434f6\",\n            \"insertDate\": \"2019-08-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d5b3962a73c6010812fcda7\",\n            \"insertDate\": \"2019-08-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d5c8ae1a73c6010814c76e8\",\n            \"insertDate\": \"2019-08-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d5ddc55a73c601081688b54\",\n            \"insertDate\": \"2019-08-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d5f2dd8a73c60108185b1fc\",\n            \"insertDate\": \"2019-08-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d607f61a73c601081c54558\",\n            \"insertDate\": \"2019-08-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d61d0e0a73c601081dda003\",\n            \"insertDate\": \"2019-08-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d63225fa73c601081f5e128\",\n            \"insertDate\": \"2019-08-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6473e31dc4a4893429e101\",\n            \"insertDate\": \"2019-08-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d65c5611dc4a489344e0b9a\",\n            \"insertDate\": \"2019-08-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6716e21dc4a489347440db\",\n            \"insertDate\": \"2019-08-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6868611dc4a4893492e3ea\",\n            \"insertDate\": \"2019-08-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d69b9e12f3dee79d8da9b75\",\n            \"insertDate\": \"2019-08-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6b0b6198f0e17d3189b01a\",\n            \"insertDate\": \"2019-08-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6c5cdf98f0e17d31a1f56a\",\n            \"insertDate\": \"2019-09-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6dae5f98f0e17d31c387f4\",\n            \"insertDate\": \"2019-09-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d6effe198f0e17d31e38681\",\n            \"insertDate\": \"2019-09-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7051572f3dee79d824a59d\",\n            \"insertDate\": \"2019-09-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d71a2e22f3dee79d83e0f0e\",\n            \"insertDate\": \"2019-09-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d72f45d2f3dee79d8579167\",\n            \"insertDate\": \"2019-09-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7445de2f3dee79d86fcb7c\",\n            \"insertDate\": \"2019-09-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7597602f3dee79d8882c0f\",\n            \"insertDate\": \"2019-09-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d76e95c2f3dee79d8a178c8\",\n            \"insertDate\": \"2019-09-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d783a612f3dee79d8bb38cb\",\n            \"insertDate\": \"2019-09-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d798be32f3dee79d8d59c29\",\n            \"insertDate\": \"2019-09-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7add6b2f3dee79d8ef0956\",\n            \"insertDate\": \"2019-09-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7c2ee02f3dee79d808d641\",\n            \"insertDate\": \"2019-09-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7d80602f3dee79d8217771\",\n            \"insertDate\": \"2019-09-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d7ed1e12f3dee79d839ab69\",\n            \"insertDate\": \"2019-09-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8023612f3dee79d852af5a\",\n            \"insertDate\": \"2019-09-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8174e12f3dee79d86c5dbb\",\n            \"insertDate\": \"2019-09-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d82c6602f3dee79d885a1c8\",\n            \"insertDate\": \"2019-09-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8417d72f3dee79d89f635c\",\n            \"insertDate\": \"2019-09-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8569612f3dee79d8b90da9\",\n            \"insertDate\": \"2019-09-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d86bae02f3dee79d8d19147\",\n            \"insertDate\": \"2019-09-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d880c572f3dee79d8ea2403\",\n            \"insertDate\": \"2019-09-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d895de12f3dee79d803c8fa\",\n            \"insertDate\": \"2019-09-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8aaf702f3dee79d81e04a0\",\n            \"insertDate\": \"2019-09-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8c00d52f3dee79d8383251\",\n            \"insertDate\": \"2019-09-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8d52572f3dee79d8531811\",\n            \"insertDate\": \"2019-09-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8ea3e02f3dee79d86d085f\",\n            \"insertDate\": \"2019-09-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d8ff5562f3dee79d885ee9b\",\n            \"insertDate\": \"2019-09-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9147912f3dee79d89edd9f\",\n            \"insertDate\": \"2019-09-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9298552f3dee79d8b891b7\",\n            \"insertDate\": \"2019-09-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d93e9d52f3dee79d8d2616f\",\n            \"insertDate\": \"2019-10-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d953b5580bb3ba9e0211c81\",\n            \"insertDate\": \"2019-10-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d968cd480bb3ba9e03cada3\",\n            \"insertDate\": \"2019-10-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d97de5580bb3ba9e05a8490\",\n            \"insertDate\": \"2019-10-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d992fd580bb3ba9e076b0e0\",\n            \"insertDate\": \"2019-10-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9a815480bb3ba9e092b69f\",\n            \"insertDate\": \"2019-10-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9bd2d480bb3ba9e0b083db\",\n            \"insertDate\": \"2019-10-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9d245480bb3ba9e0cdef96\",\n            \"insertDate\": \"2019-10-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9e75d580bb3ba9e0eb40f8\",\n            \"insertDate\": \"2019-10-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5d9fc75480bb3ba9e008abec\",\n            \"insertDate\": \"2019-10-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da118d480bb3ba9e025faee\",\n            \"insertDate\": \"2019-10-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da26a5480bb3ba9e0421f18\",\n            \"insertDate\": \"2019-10-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da3bbd580bb3ba9e05e87eb\",\n            \"insertDate\": \"2019-10-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da50d5580bb3ba9e07bad7f\",\n            \"insertDate\": \"2019-10-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da65ed480bb3ba9e098fccb\",\n            \"insertDate\": \"2019-10-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da7b05580bb3ba9e0b70219\",\n            \"insertDate\": \"2019-10-16T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5da901d480bb3ba9e0d55fa1\",\n            \"insertDate\": \"2019-10-17T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5daa53566f2b73075e781f9a\",\n            \"insertDate\": \"2019-10-18T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5daba4d56f2b73075e944f19\",\n            \"insertDate\": \"2019-10-19T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dacf6546f2b73075eb05bc7\",\n            \"insertDate\": \"2019-10-20T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dae47d56f2b73075ecd8e29\",\n            \"insertDate\": \"2019-10-21T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5daf99546f2b73075eeb4866\",\n            \"insertDate\": \"2019-10-22T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db0ead56f2b73075e0a9d72\",\n            \"insertDate\": \"2019-10-23T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db23c546f2b73075e334a5a\",\n            \"insertDate\": \"2019-10-24T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db38dd56f2b73075e527716\",\n            \"insertDate\": \"2019-10-25T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db4df546f2b73075e707507\",\n            \"insertDate\": \"2019-10-26T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db630d46f2b73075e8ecf0c\",\n            \"insertDate\": \"2019-10-27T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db782546f2b73075ead9e7a\",\n            \"insertDate\": \"2019-10-28T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5db8d3d46f2b73075ecc964b\",\n            \"insertDate\": \"2019-10-29T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dba25566e66fa4bf8caec23\",\n            \"insertDate\": \"2019-10-30T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dbb76d46e66fa4bf8ebf0ab\",\n            \"insertDate\": \"2019-10-31T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dbcc8546e66fa4bf80d4ac1\",\n            \"insertDate\": \"2019-11-01T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dbe19d56e66fa4bf82bf134\",\n            \"insertDate\": \"2019-11-02T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dbf6b546e66fa4bf84aa11f\",\n            \"insertDate\": \"2019-11-03T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc0bcd56e66fa4bf86c329c\",\n            \"insertDate\": \"2019-11-04T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc20e556e66fa4bf88a2b93\",\n            \"insertDate\": \"2019-11-05T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc35fd56e66fa4bf8a30d42\",\n            \"insertDate\": \"2019-11-06T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc4b1556e66fa4bf8ba15c4\",\n            \"insertDate\": \"2019-11-07T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc602d56e66fa4bf8d078f1\",\n            \"insertDate\": \"2019-11-08T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc754556e66fa4bf8e56139\",\n            \"insertDate\": \"2019-11-09T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc8a5d5e3537dfd43d75713\",\n            \"insertDate\": \"2019-11-10T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dc9f75626b2ac8f7bc211e7\",\n            \"insertDate\": \"2019-11-11T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dcb48d426b2ac8f7bd8644e\",\n            \"insertDate\": \"2019-11-12T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dcc9a5526b2ac8f7bef3c66\",\n            \"insertDate\": \"2019-11-13T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-14T22:49:06.160Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"updateId\": \"5dcdd9e2c343861a60710f7c\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dcdebb626b2ac8f7b067db3\",\n            \"insertDate\": \"2019-11-14T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-15T12:05:09.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"updateId\": \"5dce9475a484f8e83b73ed2c\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dcf3d3626b2ac8f7b20b13c\",\n            \"insertDate\": \"2019-11-15T00:00:00.000Z\",\n            \"ask\": 121.2647,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-16T12:05:09.546Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 121.2647,\n            \"firmId\": \"SECCL\",\n            \"mid\": 121.2647,\n            \"priceDate\": \"2014-02-05T00:00:00.000Z\",\n            \"updateId\": \"5dcfe5f5f934292139592ca7\",\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd08eb626b2ac8f7b388826\",\n            \"insertDate\": \"2019-11-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-17T12:05:09.447Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd1377561be7f1c286d86db\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd1e03726b2ac8f7b4fe0ef\",\n            \"insertDate\": \"2019-11-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-18T12:05:09.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd288f52daf555795861c77\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd331b726b2ac8f7b69c62d\",\n            \"insertDate\": \"2019-11-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-19T12:05:09.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd3da75fdf51b52e58a7a48\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd4833726b2ac8f7b889dbc\",\n            \"insertDate\": \"2019-11-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-20T12:05:09.510Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd52bf5f0ba8481c6ba5000\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd5d4b726b2ac8f7baf408b\",\n            \"insertDate\": \"2019-11-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-21T12:05:09.428Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd67d75f61e36f2ae61af04\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd7263726b2ac8f7bd5f8fe\",\n            \"insertDate\": \"2019-11-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-22T12:05:09.311Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd7cef5fa89671200826a59\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd877b626b2ac8f7bfc7c04\",\n            \"insertDate\": \"2019-11-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-23T12:05:09.520Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dd920756a545a2fe66452f5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dd9c93626b2ac8f7b20c79b\",\n            \"insertDate\": \"2019-11-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-24T12:05:09.076Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dda71f5776140aea301f1fa\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ddb1ab626b2ac8f7b457c80\",\n            \"insertDate\": \"2019-11-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-25T12:05:09.585Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ddbc375e35ed1835418135d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ddc6c3626b2ac8f7b6c462b\",\n            \"insertDate\": \"2019-11-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-26T12:05:09.354Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ddd14f586eb13770e491b74\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dddbdb8972a5006bf0980b0\",\n            \"insertDate\": \"2019-11-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-27T12:05:09.320Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dde667580c9dccc68e1f097\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ddf0f36972a5006bf2b35e9\",\n            \"insertDate\": \"2019-11-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-28T12:05:09.598Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ddfb7f5dbbb1ee333d8e7b9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de060b6972a5006bf4af25a\",\n            \"insertDate\": \"2019-11-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-29T12:05:09.177Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de10975d301c651a0f9162d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de1b236972a5006bf6a99ac\",\n            \"insertDate\": \"2019-11-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-11-30T12:05:09.338Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de25af5b40b147fbcbe7163\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de303b6972a5006bf887cc3\",\n            \"insertDate\": \"2019-11-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-01T12:05:09.175Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de3ac750a9c286e0a67f6f9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de45536972a5006bfa678d1\",\n            \"insertDate\": \"2019-12-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-02T12:05:09.609Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de4fdf51dae375121de0799\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de5a6b7972a5006bfc755f8\",\n            \"insertDate\": \"2019-12-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-03T12:05:09.250Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de64f75cbc4bd5933c172af\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de6f837972a5006bfeae211\",\n            \"insertDate\": \"2019-12-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-04T12:05:09.475Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de7a0f5c0d7e836b07bc9ad\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de849b7972a5006bf124dd7\",\n            \"insertDate\": \"2019-12-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-05T12:05:09.178Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5de8f275b52e57f3ca7e54ba\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5de99b3742fc732c263b3295\",\n            \"insertDate\": \"2019-12-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-06T12:05:09.881Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dea43f5e3c0e5532c28d099\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5deaecb642fc732c26635000\",\n            \"insertDate\": \"2019-12-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-07T12:05:09.435Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5deb9575bea29de05074d5e6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dec3e3642fc732c26877d20\",\n            \"insertDate\": \"2019-12-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-08T12:05:09.406Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dece6f5596d5d019df0eb4d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ded8fb642fc732c26abe0b3\",\n            \"insertDate\": \"2019-12-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-09T12:05:09.605Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dee3875c3d35ee65cbb804e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5deee13642fc732c26d307a1\",\n            \"insertDate\": \"2019-12-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-10T12:05:09.353Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5def89f51e8ad66c2a90c644\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df032b642fc732c26fb88c4\",\n            \"insertDate\": \"2019-12-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-11T12:05:09.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df0db7557a2b1e4233ceec9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df1843642fc732c26226789\",\n            \"insertDate\": \"2019-12-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-12T12:05:10.150Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df22cf63190aae5b9dbaa16\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df2d5b642fc732c26460037\",\n            \"insertDate\": \"2019-12-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-13T12:05:09.376Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df37e7541f3cf860a1a5d1e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df42738daff4ce4718214bb\",\n            \"insertDate\": \"2019-12-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-14T12:05:09.457Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df4cff516053a9cda21d0f2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df578b7daff4ce47196b370\",\n            \"insertDate\": \"2019-12-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-15T12:05:09.240Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df62175b2aebce8a2119ec1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df6ca37daff4ce471ab5cde\",\n            \"insertDate\": \"2019-12-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-16T12:05:09.202Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df772f5474acb87c8f4802a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df81bb7daff4ce471c22dc1\",\n            \"insertDate\": \"2019-12-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-17T12:05:09.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5df8c47525199496d636e779\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5df96d37daff4ce471dad902\",\n            \"insertDate\": \"2019-12-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-18T12:05:09.507Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dfa15f54c42e40008c4d70c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dfabeb7daff4ce471faba37\",\n            \"insertDate\": \"2019-12-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-19T12:05:09.810Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dfb677584873a0008261f1a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dfc1037daff4ce47113e23f\",\n            \"insertDate\": \"2019-12-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-20T12:05:09.656Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dfcb8f5d2579a0007990340\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dfd61b7daff4ce4712aed78\",\n            \"insertDate\": \"2019-12-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-21T12:05:09.568Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dfe0a75c6ca7200079c057d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5dfeb337daff4ce4713f81cd\",\n            \"insertDate\": \"2019-12-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-22T12:05:09.409Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5dff5bf57ca43c0008702de0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0004b6daff4ce471542236\",\n            \"insertDate\": \"2019-12-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-23T12:05:09.284Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e00ad75a503320008bd89a0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e015636daff4ce47169f56a\",\n            \"insertDate\": \"2019-12-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-24T12:05:09.622Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e01fef5e66f4f0008ad768d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e02a7b7daff4ce4717f78fd\",\n            \"insertDate\": \"2019-12-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-25T12:05:09.618Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e035075e18a9800075c2ed0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e03f937daff4ce471951123\",\n            \"insertDate\": \"2019-12-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-26T12:05:09.459Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e04a1f59e29ff0008212ffb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e054ab6daff4ce471aa43ad\",\n            \"insertDate\": \"2019-12-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-27T12:05:09.510Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e05f375496c2f0008a7a828\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e069c37daff4ce471c0abef\",\n            \"insertDate\": \"2019-12-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-28T12:05:09.413Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0744f5be08d90007c43fa5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e07edb6daff4ce471d572eb\",\n            \"insertDate\": \"2019-12-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-29T12:05:09.658Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0896757a9cdb0007c55665\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e093f37daff4ce471ea2498\",\n            \"insertDate\": \"2019-12-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-30T12:05:09.727Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e09e7f5bc366c00070716c3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0a90b7daff4ce471009df9\",\n            \"insertDate\": \"2019-12-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2019-12-31T12:05:09.321Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0b3975d2e7cb0008306c5b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0be237daff4ce47116444b\",\n            \"insertDate\": \"2019-12-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-01T12:05:09.815Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0c8af5a261ab0007bd40a9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0d33b6daff4ce4712b8eb0\",\n            \"insertDate\": \"2020-01-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-02T12:05:09.134Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0ddc75261bc80007a43993\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0e8537daff4ce47146e001\",\n            \"insertDate\": \"2020-01-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-03T12:05:09.615Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e0f2df520ca3800084c5e99\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e0fd6b7daff4ce4715cd281\",\n            \"insertDate\": \"2020-01-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-04T12:05:09.405Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e107f75f324e1000826ba4e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e112836daff4ce471716965\",\n            \"insertDate\": \"2020-01-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-05T12:05:09.168Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e11d0f5818ed40008cfecd6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1279b6daff4ce47186110e\",\n            \"insertDate\": \"2020-01-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-06T12:05:09.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1322753c6e6e00073bfc73\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e13cb377ac43e13424cd519\",\n            \"insertDate\": \"2020-01-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-07T12:05:09.522Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1473f5034d18000867c47a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e151cb77ac43e134264e3ad\",\n            \"insertDate\": \"2020-01-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-08T12:05:09.383Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e15c57500e58f000860e306\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e166e377ac43e134280de54\",\n            \"insertDate\": \"2020-01-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-09T12:05:09.412Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1716f57c7a6b0008c7cb3c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e17bfb77ac43e13429a6556\",\n            \"insertDate\": \"2020-01-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-10T12:05:08.925Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e186874ba0660000899f6ac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1911377ac43e1342b44f50\",\n            \"insertDate\": \"2020-01-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-11T12:05:09.563Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e19b9f526c206000805bc16\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1a62b67ac43e1342c8d3c4\",\n            \"insertDate\": \"2020-01-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-12T12:05:09.100Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1b0b756b3fff0008b313c9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1bb4367ac43e1342dd6174\",\n            \"insertDate\": \"2020-01-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-13T12:05:09.353Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1c5cf59d5a5600083fe0ee\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1d05b67ac43e1342f2ff82\",\n            \"insertDate\": \"2020-01-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-14T12:05:09.110Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1dae759ff0d70008a902e9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1e57367ac43e134208c787\",\n            \"insertDate\": \"2020-01-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-15T12:05:09.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e1efff5ff42bf0008227550\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e1fa8b77ac43e13421dd661\",\n            \"insertDate\": \"2020-01-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-16T12:05:09.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e205175e266060008c591f0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e20fa367ac43e1342329f3f\",\n            \"insertDate\": \"2020-01-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-17T12:05:09.356Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e21a2f5a0684f000753e161\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e224bb77ac43e134247487b\",\n            \"insertDate\": \"2020-01-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-18T12:05:09.160Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e22f4755fc19b00085acf5e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e239d377ac43e134259c2cf\",\n            \"insertDate\": \"2020-01-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-19T12:05:09.008Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e2445f5b621fa000758e294\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e24eeb67ac43e13426c4197\",\n            \"insertDate\": \"2020-01-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-20T12:05:09.364Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e259775bd5e4f0008c4d028\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2640377ac43e1342808c35\",\n            \"insertDate\": \"2020-01-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-21T12:05:09.394Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e26e8f50aa56f00082ba459\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2791b67ac43e1342956dff\",\n            \"insertDate\": \"2020-01-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-22T12:05:09.527Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e283a758003b100089dabe5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e28e3367ac43e1342aa82e8\",\n            \"insertDate\": \"2020-01-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-23T12:05:09.206Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e298bf5c70a2a0008bfef30\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2a34b67ac43e1342c2e1cf\",\n            \"insertDate\": \"2020-01-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-24T12:05:09.389Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e2add75e7fad600076a1749\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2b86367ac43e1342d81496\",\n            \"insertDate\": \"2020-01-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-25T12:05:09.555Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e2c2ef53776e600087393f0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2cd7b67ac43e1342eb095f\",\n            \"insertDate\": \"2020-01-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-26T12:05:09.344Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e2d80757b481c00078f9016\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2e29367ac43e1342fdf5a9\",\n            \"insertDate\": \"2020-01-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-27T12:05:09.228Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e2ed1f5f109e50008da902e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e2f7ab77ac43e134211f556\",\n            \"insertDate\": \"2020-01-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-28T12:05:09.320Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e302375932a260008b67034\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e30cc367ac43e1342280d55\",\n            \"insertDate\": \"2020-01-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-29T12:05:09.228Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3174f5b4705800079ae3a1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e321db77ac43e13423b1012\",\n            \"insertDate\": \"2020-01-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-30T12:05:09.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e32c675b9d103000807285e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e336f37bd682a414744a357\",\n            \"insertDate\": \"2020-01-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-01-31T12:05:09.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3417f5420a300007c02242\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e34c0b7bd682a414755ec8b\",\n            \"insertDate\": \"2020-01-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-01T12:05:09.388Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e356975893da9000848ef1c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e361236bd682a4147657041\",\n            \"insertDate\": \"2020-02-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-02T12:05:09.357Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e36baf5bec2e9000861acba\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3763b7bd682a4147758bda\",\n            \"insertDate\": \"2020-02-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-03T12:05:09.154Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e380c756e39dd0008cdcf16\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e38b537bd682a41478c3486\",\n            \"insertDate\": \"2020-02-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-04T12:05:09.370Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e395df513a34c000820d070\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3a06b7bd682a4147a02569\",\n            \"insertDate\": \"2020-02-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-05T12:05:09.191Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3aaf753edbcc00086054da\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3b5837bd682a4147b23058\",\n            \"insertDate\": \"2020-02-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-06T12:05:09.795Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3c00f567093d000702053b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3ca9b7bd682a4147c71b4a\",\n            \"insertDate\": \"2020-02-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-07T12:05:09.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3d5275aae9460008a3235f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3dfb37bd682a4147da14bc\",\n            \"insertDate\": \"2020-02-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-08T12:05:09.307Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3ea3f5de6d880007a75d0d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e3f4cb7bd682a4147e983e1\",\n            \"insertDate\": \"2020-02-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-09T12:05:09.577Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e3ff57555685e0008eee4c8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e409e37bd682a4147f99418\",\n            \"insertDate\": \"2020-02-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-10T12:05:09.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4146f53f4bdd00082fa751\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e41efb6bd682a4147111787\",\n            \"insertDate\": \"2020-02-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-11T12:05:09.513Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4298758052df0007b36fe4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e434137bd682a4147257624\",\n            \"insertDate\": \"2020-02-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-12T12:05:09.742Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e43e9f592964e0008452b45\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4492b7bd682a4147397b16\",\n            \"insertDate\": \"2020-02-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-13T12:05:09.380Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e453b75423f8c0008a4d30f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e45e437bd682a41474d8bd0\",\n            \"insertDate\": \"2020-02-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-14T12:05:09.815Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e468cf523ecb40008fccbd1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4735b7bd682a414763ba72\",\n            \"insertDate\": \"2020-02-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-15T12:05:09.950Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e47de7575189d00078cea32\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e488737bd682a41477330ae\",\n            \"insertDate\": \"2020-02-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-16T12:05:10.416Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e492ff6a205f3000788eab0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e49d8b7bd682a414782d177\",\n            \"insertDate\": \"2020-02-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-17T12:05:09.943Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4a8175ba8a260008ef24a2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4b2a37bd682a414794da0a\",\n            \"insertDate\": \"2020-02-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-18T12:05:09.453Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4bd2f5fe9f31000773a321\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4c7bb7bd682a4147a7f2a5\",\n            \"insertDate\": \"2020-02-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-19T12:05:09.806Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4d24751dcb3e0008191862\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4dcd37bd682a4147bc224c\",\n            \"insertDate\": \"2020-02-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-20T12:05:09.485Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4e75f50e61770008e6544e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e4f1eb8bd682a4147cf5ed7\",\n            \"insertDate\": \"2020-02-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-21T12:05:08.106Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e4fc774bd779e0007cccce7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e507037bd682a4147e32392\",\n            \"insertDate\": \"2020-02-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-22T12:05:10.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5118f6cbc0580008d6aa24\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e51c1b7bd682a4147f4291e\",\n            \"insertDate\": \"2020-02-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-23T12:05:09.644Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e526a75ff60ae0007144cdc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e531337bd682a414704cca2\",\n            \"insertDate\": \"2020-02-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-24T12:05:09.681Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e53bbf50021d70009c7e9d8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5464b7bd682a414718f1cc\",\n            \"insertDate\": \"2020-02-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-25T12:05:09.930Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e550d753c236e000874c4c8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e55b637bd682a41472cf624\",\n            \"insertDate\": \"2020-02-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-26T12:05:09.778Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e565ef5206fcd0008f68da0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5707b7bd682a414742eccb\",\n            \"insertDate\": \"2020-02-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-27T12:05:09.632Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e57b0759008f1000853a1e0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e585937bd682a4147567ef5\",\n            \"insertDate\": \"2020-02-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-28T12:05:10.362Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5901f60ba2f40008bcebc3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e59aab8bd682a41476985a5\",\n            \"insertDate\": \"2020-02-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-02-29T12:05:09.703Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5a53754593b40007f709fe\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5afc37bd682a414778b822\",\n            \"insertDate\": \"2020-02-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-01T12:05:10.161Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5ba4f608b31f0008fc69f7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5c4db7bd682a4147886c57\",\n            \"insertDate\": \"2020-03-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-02T12:05:09.942Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5cf6756aeec7000751bd15\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5d9f38bd682a4147995f0e\",\n            \"insertDate\": \"2020-03-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-03T12:05:09.838Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5e47f5edcda40007be291c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e5ef0b7a12ae32979082f32\",\n            \"insertDate\": \"2020-03-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-04T12:05:09.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e5f9975d32ce5000772f490\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e604236a12ae3297918f5b6\",\n            \"insertDate\": \"2020-03-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-05T12:05:09.610Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e60eaf581b2a00008df41a1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6193b6a12ae329792b803b\",\n            \"insertDate\": \"2020-03-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-06T12:05:09.397Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e623c75f79921000817d253\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e62e537a12ae329793cb01f\",\n            \"insertDate\": \"2020-03-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-07T12:05:10.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e638df6219c0a00083e8983\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6436b9fe9131e93d803294\",\n            \"insertDate\": \"2020-03-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-08T12:05:09.884Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e64df7563279a00080b22e5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e658837fe9131e93d903ddd\",\n            \"insertDate\": \"2020-03-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-09T12:05:10.232Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6630f67541370008999cfb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e66d9b7fe9131e93da347e3\",\n            \"insertDate\": \"2020-03-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-10T12:05:09.744Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e678275389d9b0008925a94\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e682b37fe9131e93db6d749\",\n            \"insertDate\": \"2020-03-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-11T12:05:10.306Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e68d3f62ea9cf0008b3f51a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e697cb7fe9131e93dc7ce30\",\n            \"insertDate\": \"2020-03-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-12T12:05:09.539Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6a2575c1d8f8000867560a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6ace37fe9131e93dda505d\",\n            \"insertDate\": \"2020-03-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-13T12:05:09.997Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6b76f56855600008f2c09e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6c1fb731e1bf75a8d26d7e\",\n            \"insertDate\": \"2020-03-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-14T12:05:09.581Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6cc875a86e710007244ee2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6d713731e1bf75a8e18acf\",\n            \"insertDate\": \"2020-03-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-15T12:05:10.135Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6e19f6fddd0a0008825b3d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e6ec2b731e1bf75a8f0ec50\",\n            \"insertDate\": \"2020-03-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-16T12:05:09.456Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e6f6b75bf665f0008b63f39\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e70143731e1bf75a804357e\",\n            \"insertDate\": \"2020-03-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-17T12:05:09.848Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e70bcf5b402f3000880b817\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7165b731e1bf75a81b48ae\",\n            \"insertDate\": \"2020-03-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-18T12:05:09.913Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e720e7562675f0007546e23\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e72b73731e1bf75a8338c0f\",\n            \"insertDate\": \"2020-03-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-19T12:05:09.768Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e735ff5fd380a000831dc63\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7408b831e1bf75a845ef14\",\n            \"insertDate\": \"2020-03-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-20T12:05:09.954Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e74b1759be01700083a7bd1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e755a3731e1bf75a85c69c8\",\n            \"insertDate\": \"2020-03-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-21T12:05:09.413Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7602f5a2b64a0008ec8a6e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e76abb731e1bf75a8714cd1\",\n            \"insertDate\": \"2020-03-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-22T12:05:10.260Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7754768fd30800079439e2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e77fd3731e1bf75a8876628\",\n            \"insertDate\": \"2020-03-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-23T12:05:10.041Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e78a5f68ebd9a0007ccb1c0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e794eb731e1bf75a89dc866\",\n            \"insertDate\": \"2020-03-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-24T12:05:09.388Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e79f7757a500e0008c956d4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7aa03731e1bf75a8b93a09\",\n            \"insertDate\": \"2020-03-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-25T12:05:09.754Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7b48f53902c70007cd704d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7bf1b731e1bf75a8d33e80\",\n            \"insertDate\": \"2020-03-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-26T12:05:09.748Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7c9a75e8ea8600072177d2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7d433731e1bf75a8eaf4e1\",\n            \"insertDate\": \"2020-03-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-27T12:05:09.925Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7debf5005dc70008dfc896\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7e94b731e1bf75a80372cd\",\n            \"insertDate\": \"2020-03-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-28T12:05:09.857Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e7f3d7545d18a00082bed8a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e7fe63731e1bf75a81919b2\",\n            \"insertDate\": \"2020-03-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-29T12:05:09.656Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e808ef54b6c7600070b3873\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8137b831e1bf75a82dfd70\",\n            \"insertDate\": \"2020-03-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-30T12:05:09.988Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e81e0757398270008f1343e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e82893831e1bf75a8455db6\",\n            \"insertDate\": \"2020-03-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-03-31T12:05:10.001Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8331f694913f00087e34a6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e83dab831e1bf75a860bc5b\",\n            \"insertDate\": \"2020-03-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-01T12:05:10.357Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8483769fcde10008dc15c6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e852c3831e1bf75a877ec75\",\n            \"insertDate\": \"2020-04-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-02T12:05:10.219Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 9\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e85d4f6833a0c000741be7b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e867db831e1bf75a88f545f\",\n            \"insertDate\": \"2020-04-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-03T12:05:10.038Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e872676a2f88500085f12c8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e87cf3805788adb92350088\",\n            \"insertDate\": \"2020-04-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-04T12:05:09.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8877f52095960007eecbe4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8920b705788adb9249b186\",\n            \"insertDate\": \"2020-04-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-05T12:05:09.352Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e89c9750598a7000722f5e9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8a723705788adb925e55a9\",\n            \"insertDate\": \"2020-04-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-06T12:05:09.532Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8b1af5e039c80009b75699\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8bc3b805788adb9274e3a1\",\n            \"insertDate\": \"2020-04-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-07T12:05:10.025Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8c6c7622ec040007e6eec8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8d153705788adb928c8db9\",\n            \"insertDate\": \"2020-04-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-08T12:05:09.701Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8dbdf5ca77ea0007adf944\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8e66b705788adb92a6a8dd\",\n            \"insertDate\": \"2020-04-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-09T12:05:09.992Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e8f0f7520f9f70008197be2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e8fb83805788adb92be44b8\",\n            \"insertDate\": \"2020-04-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-10T12:05:09.973Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9060f5b7b3900007c63293\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9109b705788adb92d417a6\",\n            \"insertDate\": \"2020-04-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-11T12:05:09.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e91b275b76ee40008c7cc34\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e925b3705788adb92e8c1f6\",\n            \"insertDate\": \"2020-04-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-12T12:05:10.089Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9303f6632120000853a384\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e93acb805788adb92fd862f\",\n            \"insertDate\": \"2020-04-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-13T12:05:10.410Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e945576af05c6000728d830\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e94fe3705788adb9212c79d\",\n            \"insertDate\": \"2020-04-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-14T12:05:09.458Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e95a6f514b5bd000809da6b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e964fb805788adb922f9751\",\n            \"insertDate\": \"2020-04-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-15T12:05:09.619Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e96f875e8d14000072e7195\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e97a13705788adb9247b4e2\",\n            \"insertDate\": \"2020-04-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-16T12:05:09.743Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9849f553f65a0008a87136\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e98f2b805788adb925f71ae\",\n            \"insertDate\": \"2020-04-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-17T12:05:09.583Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e999b75720bba00077ab9c0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9a443705788adb927b7a7b\",\n            \"insertDate\": \"2020-04-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-18T12:05:10.426Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9aecf657a906000824d284\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9b95b705788adb92902e4a\",\n            \"insertDate\": \"2020-04-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-19T12:05:09.902Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9c3e756891a400089fcf67\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9ce73705788adb92a53db3\",\n            \"insertDate\": \"2020-04-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-20T12:05:10.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9d8ff66237f70007041810\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9e38b83c74db4050c6cadf\",\n            \"insertDate\": \"2020-04-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-21T12:05:09.826Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5e9ee1752689c30008f3f994\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5e9f8a373c74db4050dbee89\",\n            \"insertDate\": \"2020-04-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-22T12:05:09.742Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea032f56afc5900083ded8d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea0dbb73c74db4050ef8b1a\",\n            \"insertDate\": \"2020-04-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-23T12:05:09.848Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea1847562c569000824a83f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea22d363c74db4050061b31\",\n            \"insertDate\": \"2020-04-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-24T12:05:09.943Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea2d5f58c4cf200078dd6e2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea37eb73c74db40501adbb4\",\n            \"insertDate\": \"2020-04-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-25T12:05:09.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea4277561dcbd0008fe55fa\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea4d0373c74db40502b8c1c\",\n            \"insertDate\": \"2020-04-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-26T12:05:09.875Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea578f577f1e70007b13ad2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea621b73c74db40503cb1aa\",\n            \"insertDate\": \"2020-04-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-27T12:05:09.288Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea6ca7558b89900077eee80\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea773373c74db4050536ed7\",\n            \"insertDate\": \"2020-04-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-28T12:05:09.763Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea81bf5b8bdd800075a13df\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ea8c4b73c74db405069ec42\",\n            \"insertDate\": \"2020-04-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-29T12:05:09.511Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ea96d751c80710007138d2a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eaa16383c74db405084213d\",\n            \"insertDate\": \"2020-04-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-04-30T12:05:09.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eaabef51ab3de0007316b94\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eab67b855e79fc6e55fbd2b\",\n            \"insertDate\": \"2020-04-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-01T12:05:09.751Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eac1075a6d50100086392e6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eacb93755e79fc6e5762360\",\n            \"insertDate\": \"2020-05-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-02T12:05:09.644Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ead61f5a9d6090008995e89\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eae0ab755e79fc6e586f77c\",\n            \"insertDate\": \"2020-05-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-03T12:05:09.593Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eaeb375d120f70007063402\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eaf5c3755e79fc6e597caca\",\n            \"insertDate\": \"2020-05-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-04T12:05:09.849Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb004f5eca462000821d770\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb0adb855e79fc6e5ad07e4\",\n            \"insertDate\": \"2020-05-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-05T12:05:09.765Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb156757b080800082c78fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb1ff3855e79fc6e5c293f4\",\n            \"insertDate\": \"2020-05-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-06T12:05:09.605Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb2a7f5dc13bb0007dd9575\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb350b755e79fc6e5d8dfd4\",\n            \"insertDate\": \"2020-05-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-07T12:05:10.012Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb3f9762529760007d02ff6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb4a23755e79fc6e5f028d9\",\n            \"insertDate\": \"2020-05-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-08T12:05:09.595Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb54af51b3c320008408c88\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb5f3b755e79fc6e5044829\",\n            \"insertDate\": \"2020-05-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-09T12:05:09.434Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb69c753cf1240009ee6e4a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb7453755e79fc6e514f2cf\",\n            \"insertDate\": \"2020-05-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-10T12:05:10.291Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb7edf67354ca000862c18d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb896b755e79fc6e5265fe8\",\n            \"insertDate\": \"2020-05-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-11T12:05:09.558Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eb93f75f275d60007775fda\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eb9e83855e79fc6e53d366a\",\n            \"insertDate\": \"2020-05-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-12T12:05:10.138Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eba90f6af880c00074eac89\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ebb39b755e79fc6e5528ed0\",\n            \"insertDate\": \"2020-05-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-13T12:05:10.507Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ebbe27692c57f00079b1227\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ebc8b3855e79fc6e56ba538\",\n            \"insertDate\": \"2020-05-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-14T12:05:10.072Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ebd33f62d82d900080849fe\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ebddcb755e79fc6e581bcda\",\n            \"insertDate\": \"2020-05-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-15T12:05:10.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ebe8576fda16200079ffe54\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ebf2e3755e79fc6e5965833\",\n            \"insertDate\": \"2020-05-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-16T12:05:10.242Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ebfd6f6cecfcc000879afdc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec07fb855e79fc6e5a7367d\",\n            \"insertDate\": \"2020-05-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-17T12:05:09.650Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec12875172b390007f9d3c1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec1d13755e79fc6e5b83159\",\n            \"insertDate\": \"2020-05-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-18T12:05:10.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec279f6ac0da50007c6cc27\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec322b755e79fc6e5ce2667\",\n            \"insertDate\": \"2020-05-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-19T12:05:10.490Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec3cb7639d86c00077d3e0a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec4743855e79fc6e5e4d6f9\",\n            \"insertDate\": \"2020-05-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-20T12:05:10.285Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec51cf6a702fb00079f5c97\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec5c5b855e79fc6e5fea0e0\",\n            \"insertDate\": \"2020-05-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-21T12:05:10.420Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec66e7615f45e0007c3f95a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec717394a803d5d47ca1029\",\n            \"insertDate\": \"2020-05-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-22T12:05:10.792Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec7bff6330ef00008674ae3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec868b74a803d5d47e4ac95\",\n            \"insertDate\": \"2020-05-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-23T12:05:10.142Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ec91176f361640007459ef8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ec9ba374a803d5d47f8e38f\",\n            \"insertDate\": \"2020-05-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-24T12:05:10.075Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eca62f68b3eef00087a2e2f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ecb0bb84a803d5d470d51f9\",\n            \"insertDate\": \"2020-05-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-25T12:05:10.426Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ecbb476215ab200076741cb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ecc5d384a803d5d4725904e\",\n            \"insertDate\": \"2020-05-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-26T12:05:10.005Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ecd05f684cf38000711c368\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ecdaeb84a803d5d474377d6\",\n            \"insertDate\": \"2020-05-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-27T12:05:10.664Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ece5776bc4558000861d249\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ecf00384a803d5d4770d077\",\n            \"insertDate\": \"2020-05-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-28T12:05:10.637Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ecfa8f628008100083cdf90\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed051b84a803d5d478fa7b0\",\n            \"insertDate\": \"2020-05-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-29T12:05:12.014Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed0fa7854277f00089d6b6a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed1a3384a803d5d47b74831\",\n            \"insertDate\": \"2020-05-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-30T12:05:09.769Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed24bf510b9330008503703\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed2f4b84a803d5d47c8961a\",\n            \"insertDate\": \"2020-05-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-05-31T12:05:09.797Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed39d758a8b5a0008d77c2c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed446374a803d5d47da3fc4\",\n            \"insertDate\": \"2020-05-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-01T12:05:10.212Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed4eef6643d3400078a6745\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed597b74a803d5d47f848e0\",\n            \"insertDate\": \"2020-06-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-02T12:05:10.147Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed64076b54d0d0008149536\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed6e9384a803d5d4718c04b\",\n            \"insertDate\": \"2020-06-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-03T12:05:10.186Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed791f6d2fa850008765213\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed83ab74a803d5d473134cc\",\n            \"insertDate\": \"2020-06-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-04T12:05:09.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ed8e375ecc1f900086f3c30\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ed98c374a803d5d474a4aa3\",\n            \"insertDate\": \"2020-06-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-05T12:05:10.527Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eda34f654b0f10007096351\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5edaddb84a803d5d4762ac2b\",\n            \"insertDate\": \"2020-06-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-06T12:05:10.471Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5edb86765b6ac400087dfa07\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5edc2f384a803d5d477535c7\",\n            \"insertDate\": \"2020-06-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-07T12:05:10.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5edcd7f6999edd000868983b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5edd80b8576b64dd8e43f649\",\n            \"insertDate\": \"2020-06-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-08T12:05:10.319Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ede2976d3433e00091717ab\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eded238576b64dd8e5c3266\",\n            \"insertDate\": \"2020-06-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-09T12:05:11.006Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5edf7af7815f180008e7efb5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee023b8576b64dd8e76b335\",\n            \"insertDate\": \"2020-06-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-10T12:05:10.915Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee0cc761c731300088dcec5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee17537576b64dd8e8ffaec\",\n            \"insertDate\": \"2020-06-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-11T12:05:10.563Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee21df64dbe570007798dd7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee2c6b7576b64dd8ea8599d\",\n            \"insertDate\": \"2020-06-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-12T12:05:10.155Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee36f76d8ec280007e2adf4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee41837576b64dd8ec16825\",\n            \"insertDate\": \"2020-06-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-13T12:05:09.917Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee4c0f56ef4400007633305\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee569b7576b64dd8ed393a8\",\n            \"insertDate\": \"2020-06-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-14T12:05:10.392Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee61276fbb1220008737a45\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee6bb37576b64dd8ee5f23e\",\n            \"insertDate\": \"2020-06-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-15T12:05:10.095Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee763f67c816e000772a29e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee80cb7576b64dd8e019a73\",\n            \"insertDate\": \"2020-06-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-16T12:05:09.904Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ee8b575861a8c0007dc6bce\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ee95e38576b64dd8e248341\",\n            \"insertDate\": \"2020-06-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-17T12:05:10.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eea06f66bf2c40008744ec7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eeaafb8576b64dd8e4295f1\",\n            \"insertDate\": \"2020-06-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-18T12:05:10.432Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eeb58768d49790009ec4799\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eec0138576b64dd8e5af927\",\n            \"insertDate\": \"2020-06-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-19T12:05:10.107Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eeca9f6dc749f0008642d6e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eed52b7576b64dd8e789436\",\n            \"insertDate\": \"2020-06-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-20T12:05:09.937Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eedfb7551166a000761a217\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eeea438576b64dd8e8ae94b\",\n            \"insertDate\": \"2020-06-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-21T12:05:10.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eef4cf68e52880008aa2fdd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5eeff5b8576b64dd8e9d9fd8\",\n            \"insertDate\": \"2020-06-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-22T12:05:10.197Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef09e76e9d5dd0007b085ca\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef14738576b64dd8ebb64b6\",\n            \"insertDate\": \"2020-06-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-23T12:05:10.627Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef1eff69ab0fa0008effdff\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef298b8576b64dd8ed8ac6e\",\n            \"insertDate\": \"2020-06-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-24T12:05:10.243Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef3417614538a0007bd0091\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef3ea38576b64dd8ef4edb4\",\n            \"insertDate\": \"2020-06-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-25T12:05:10.168Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef492f6cb5f580007eba326\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef53bb8576b64dd8e0e4cd6\",\n            \"insertDate\": \"2020-06-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-26T12:05:10.355Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef5e47610a9200007cffce4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef68d3887f75750ec0aaf60\",\n            \"insertDate\": \"2020-06-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-27T12:05:10.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef735f61e89d30007b5d973\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef7deb887f75750ec1d9903\",\n            \"insertDate\": \"2020-06-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-28T12:05:10.960Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef88776617afc0008cc8766\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ef9303887f75750ec30c06e\",\n            \"insertDate\": \"2020-06-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-29T12:05:10.309Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ef9d8f61730b20008853d14\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5efa81b887f75750ec4aab81\",\n            \"insertDate\": \"2020-06-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-06-30T12:05:11.124Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5efb2a77b0bde80009c1e4fa\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5efbd33887f75750ec67e933\",\n            \"insertDate\": \"2020-06-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-01T12:05:10.352Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5efc7bf67e8b1200086ce647\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5efd24b887f75750ec82c2f7\",\n            \"insertDate\": \"2020-07-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-02T12:05:11.039Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5efdcd77cf7374000741cd98\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5efe763787f75750eca29258\",\n            \"insertDate\": \"2020-07-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-03T12:05:10.436Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5eff1ef6d7cb3f0008acd176\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5effc7b93a86c4b5704137c8\",\n            \"insertDate\": \"2020-07-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-04T12:05:10.129Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f007076ba3fa10007c6454c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0119383a86c4b57053f083\",\n            \"insertDate\": \"2020-07-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-05T12:05:10.666Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f01c1f616e69d00087c6d5a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f026ab83a86c4b57066cbd4\",\n            \"insertDate\": \"2020-07-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-06T12:05:10.871Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f031376d6222400095fbd81\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f03bc383a86c4b570815dbf\",\n            \"insertDate\": \"2020-07-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-07T12:05:10.457Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0464f6f398260008f3d961\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f050db83a86c4b570a36e05\",\n            \"insertDate\": \"2020-07-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-08T12:05:10.653Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f05b6766ea9dd00087a884d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f065f393a86c4b570c16cfc\",\n            \"insertDate\": \"2020-07-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-09T12:05:10.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0707f6a4f43800073d0d74\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f07b0b93a86c4b570e03aa2\",\n            \"insertDate\": \"2020-07-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-10T12:05:10.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0859765c7f700007d545a8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0902393a86c4b570fcc06a\",\n            \"insertDate\": \"2020-07-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-11T12:05:10.662Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f09aaf6bc4b3c0007e95b98\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0a53b93a86c4b5700f7431\",\n            \"insertDate\": \"2020-07-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-12T12:05:10.044Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0afc7626e450000771a8e7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0ba5383a86c4b5702291f6\",\n            \"insertDate\": \"2020-07-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-13T12:05:10.576Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0c4df6ff8a710007a28621\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0cf6b83a86c4b57041ecdd\",\n            \"insertDate\": \"2020-07-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-14T12:05:09.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0d9f754a23b50007f65450\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0e48383a86c4b570618169\",\n            \"insertDate\": \"2020-07-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-15T12:05:10.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f0ef0f65ca6ce000724ed8a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f0f99b83a86c4b570822ee9\",\n            \"insertDate\": \"2020-07-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-16T12:05:11.888Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f104277c53e310007b76b73\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f10eb383a86c4b570a6f15d\",\n            \"insertDate\": \"2020-07-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-17T12:05:10.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1193f646cab000073c1e7b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f123cb73a86c4b570caeaf4\",\n            \"insertDate\": \"2020-07-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-18T12:05:09.930Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f12e57503aee20007be9f62\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f138e383a86c4b570de7f53\",\n            \"insertDate\": \"2020-07-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-19T12:05:10.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1436f6f1f3d50008792400\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f14dfb93a86c4b570f20b0c\",\n            \"insertDate\": \"2020-07-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-20T12:05:10.186Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f15887688a8cf00080a4274\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1631383a86c4b5700fa8b2\",\n            \"insertDate\": \"2020-07-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-21T12:05:10.279Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f16d9f60f463800078ccf83\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1782b83a86c4b570374d89\",\n            \"insertDate\": \"2020-07-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-22T12:05:10.896Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f182b766fc55b00072f0f54\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f18d4398e036e5dc4f396fd\",\n            \"insertDate\": \"2020-07-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-23T12:05:10.068Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f197cf6c4157100078104fb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1a25b78e036e5dc41128ef\",\n            \"insertDate\": \"2020-07-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-24T12:05:10.198Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1ace76fdd9e60007c0fe64\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1b77388e036e5dc4312989\",\n            \"insertDate\": \"2020-07-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-25T12:05:09.878Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1c1ff51fb115000883a21f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1cc8b8c13b4ee451c57f5b\",\n            \"insertDate\": \"2020-07-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-26T12:05:11.015Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1d7177c1ada40008314488\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1e1a38c13b4ee451d89115\",\n            \"insertDate\": \"2020-07-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-27T12:05:10.663Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f1ec2f6641d3e0007635337\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f1f6bb7c13b4ee45104e899\",\n            \"insertDate\": \"2020-07-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-28T12:05:10.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f201476fdb22900085d4f0b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f20bd38c13b4ee45121a6aa\",\n            \"insertDate\": \"2020-07-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-29T12:05:09.808Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2165f529b9c2000794aa0d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f220eb8c13b4ee4514d35d4\",\n            \"insertDate\": \"2020-07-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-30T12:05:11.166Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f22b777c76a51000805f141\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f236038c13b4ee4516d35d4\",\n            \"insertDate\": \"2020-07-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-07-31T12:05:10.867Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2408f66b32140007b351d0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f24b1b8c13b4ee4518f9803\",\n            \"insertDate\": \"2020-07-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-01T12:05:11.464Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f255a77748030000787e521\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f260338c13b4ee451a21aaf\",\n            \"insertDate\": \"2020-08-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-02T12:05:10.409Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f26abf6b24728000700ef34\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f2754b8c13b4ee451b78ecc\",\n            \"insertDate\": \"2020-08-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-03T12:05:10.541Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f27fd76e677c40008b925fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f28a638c13b4ee451d4de43\",\n            \"insertDate\": \"2020-08-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-04T12:05:10.335Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f294ef6fafbf80007ad1d2c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f29f7b7c13b4ee45100941f\",\n            \"insertDate\": \"2020-08-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-05T12:05:10.719Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2aa0769930640007288064\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f2b4938c13b4ee4511dbc78\",\n            \"insertDate\": \"2020-08-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-06T12:05:11.332Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2bf1f71a1c9100085701c5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f2c9ab8b7b865784cadcf81\",\n            \"insertDate\": \"2020-08-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-07T12:05:10.119Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2d4376e5e59a0007af4120\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f2dec37b7b865784ccbc186\",\n            \"insertDate\": \"2020-08-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-08T12:05:11.286Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2e94f7c4ebd20007d36b5a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f2f3db8b7b865784cdf3738\",\n            \"insertDate\": \"2020-08-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-09T12:05:10.434Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f2fe676d18154000737acb3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f308f38b7b865784cf1e714\",\n            \"insertDate\": \"2020-08-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-10T12:05:09.854Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3137f5fd16640007d5f59f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f31e0b8b7b865784c1a3638\",\n            \"insertDate\": \"2020-08-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-11T12:05:10.107Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3289768d11770009b96885\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f333237b7b865784c3bae9f\",\n            \"insertDate\": \"2020-08-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-12T12:05:11.246Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f33daf7fcdaeb000791c75f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3483b8b7b865784c614df2\",\n            \"insertDate\": \"2020-08-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-13T12:05:10.178Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f352c76aea03a0007f5a93a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f35d537b7b865784c86a329\",\n            \"insertDate\": \"2020-08-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-14T12:05:10.543Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f367df652b23c000811e01e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3726b8b7b865784cbc1398\",\n            \"insertDate\": \"2020-08-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-15T12:05:10.154Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f37cf76a878c8000742b50d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f387838b7b865784cd00d11\",\n            \"insertDate\": \"2020-08-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-16T12:05:10.072Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3920f6d0749500082a3b74\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f39c9b7b7b865784ce3dbd3\",\n            \"insertDate\": \"2020-08-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-17T12:05:11.267Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3a7277f17de60008e17034\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3b1b39b7b865784c140388\",\n            \"insertDate\": \"2020-08-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-18T12:05:10.427Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3bc3f63195320008112797\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3c6cb8b7b865784c3cd549\",\n            \"insertDate\": \"2020-08-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-19T12:05:10.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3d1576344c470007ece285\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3dbe3a884b6d5d55a46a09\",\n            \"insertDate\": \"2020-08-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-20T12:05:10.390Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3e66f66644b50008e43d5b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f3f0fbe884b6d5d55d391a5\",\n            \"insertDate\": \"2020-08-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-21T12:05:10.859Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f3fb8765d32dc000741f945\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f406138884b6d5d55f3fc84\",\n            \"insertDate\": \"2020-08-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-22T12:05:10.494Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4109f6b3c45f00080a0005\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f41b2b8884b6d5d55081ea5\",\n            \"insertDate\": \"2020-08-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-23T12:05:10.358Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f425b76da46d5000889c733\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f430438884b6d5d551bbf52\",\n            \"insertDate\": \"2020-08-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-24T12:05:10.423Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f43acf6d1af150008f6a88a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f4455b8884b6d5d553f9158\",\n            \"insertDate\": \"2020-08-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-25T12:05:11.742Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f44fe77ddaeee00081a2398\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f45a739884b6d5d55fca86c\",\n            \"insertDate\": \"2020-08-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-26T12:05:10.783Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f464ff614123400084b0ae8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f46f8b8884b6d5d55211401\",\n            \"insertDate\": \"2020-08-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-27T12:05:10.912Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f47a1765991f4000877c381\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f484a39d5f6a6426a9dd29c\",\n            \"insertDate\": \"2020-08-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-28T12:05:09.569Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f48f2f5e91b550008a8a882\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f499bb7d5f6a6426ad33e4f\",\n            \"insertDate\": \"2020-08-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-29T12:05:10.080Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4a4476a8ce590007886a6e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f4aed37d5f6a6426ae75d35\",\n            \"insertDate\": \"2020-08-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-30T12:05:09.676Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4b95f573ee330008782271\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f4c3eb8d5f6a6426afb956a\",\n            \"insertDate\": \"2020-08-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-08-31T12:05:09.257Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4ce775d52e190007563e01\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f4d9038d5f6a6426a191a34\",\n            \"insertDate\": \"2020-08-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-01T12:05:09.117Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4e38f52afe8c0007137c69\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f4ee1b7d5f6a6426a3eb01d\",\n            \"insertDate\": \"2020-09-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-02T12:05:08.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f4f8a7409ad0f000875ff80\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f503338d5f6a6426a722c64\",\n            \"insertDate\": \"2020-09-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-03T12:05:08.804Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f50dbf47667670008e2d620\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5184b7d5f6a6426aa16dc8\",\n            \"insertDate\": \"2020-09-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-04T12:05:09.375Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f522d75940ee60007c55ec8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f52d638d5f6a6426acc2327\",\n            \"insertDate\": \"2020-09-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-05T12:05:10.491Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f537ef62a581d000769507b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5427b8d5f6a6426adff9b1\",\n            \"insertDate\": \"2020-09-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-06T12:05:10.023Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f54d076d96e5d000784b0b6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f557938d5f6a6426af44efa\",\n            \"insertDate\": \"2020-09-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-07T12:05:09.163Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5621f5b27cff0007ea921f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f56cab8d5f6a6426a1511f1\",\n            \"insertDate\": \"2020-09-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-08T12:05:08.511Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5773740c76c60007b8a9ba\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f581c37d5f6a6426a3c2821\",\n            \"insertDate\": \"2020-09-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-09T12:05:08.621Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f58c4f46a6e1c0007c888dc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f596db8d5f6a6426a67a70c\",\n            \"insertDate\": \"2020-09-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-10T12:05:08.383Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5a1674f2728d000812cdde\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5abf37d5f6a6426a94c589\",\n            \"insertDate\": \"2020-09-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-11T12:05:09.485Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5b67f5311b2e0008d85588\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5c10b87d6519ae3704a3ec\",\n            \"insertDate\": \"2020-09-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-12T12:05:09.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5cb97505cce90008f55f6a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5d62387d6519ae37194067\",\n            \"insertDate\": \"2020-09-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-13T12:05:08.539Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5e0af4b1534d0007e7aac5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f5eb3b87d6519ae372c4713\",\n            \"insertDate\": \"2020-09-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-14T12:05:08.360Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f5f5c74d15908000818b413\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6005387d6519ae374c5012\",\n            \"insertDate\": \"2020-09-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-15T12:05:08.561Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f60adf4138dad000767c660\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6156b87d6519ae376cd5dd\",\n            \"insertDate\": \"2020-09-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-16T12:05:09.221Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f61ff756fb4f60007c7afd6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f62a838ac22206af3c60575\",\n            \"insertDate\": \"2020-09-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-17T12:05:08.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6350f40162780007a76e45\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f644e1aac22206af3fdfa66\",\n            \"insertDate\": \"2020-09-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-18T12:05:08.956Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f64a2745448b200084baa40\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f659f9885590adf028a4620\",\n            \"insertDate\": \"2020-09-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-19T12:05:08.670Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f65f3f462c224000849ad26\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f669cb785590adf02a01a32\",\n            \"insertDate\": \"2020-09-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-20T12:05:09.202Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6745753b2bdd0007735515\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f67ee3985590adf02bc8c73\",\n            \"insertDate\": \"2020-09-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-21T12:05:08.322Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6896f4c099fc0007f29620\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f693fb885590adf02e34bb5\",\n            \"insertDate\": \"2020-09-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-22T12:05:08.781Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f69e874709f59000766f831\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6ae59985590adf021ff5ab\",\n            \"insertDate\": \"2020-09-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-23T12:05:08.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6b39f430e30a00085d1ddc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6c371985590adf0248011d\",\n            \"insertDate\": \"2020-09-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-24T11:05:08.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6c7d643caa370008b0c6b0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6d34ebb9ffde819bde302a\",\n            \"insertDate\": \"2020-09-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-25T12:05:08.604Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6ddcf4da71fb0008ec9dda\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6eda1a85590adf028cb074\",\n            \"insertDate\": \"2020-09-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-26T12:05:09.098Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f6f2e758f4f5b000785eae8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f6fd73885590adf029afa34\",\n            \"insertDate\": \"2020-09-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-27T12:05:08.571Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f707ff44ca2ae0007a9bfda\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7128b885590adf02adf00c\",\n            \"insertDate\": \"2020-09-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-28T12:05:08.658Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f71d174b085bc0007aa9e1c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f72ce9a85590adf02dc4cfc\",\n            \"insertDate\": \"2020-09-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-29T12:05:08.351Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7322f412b02a000834e404\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f742018699cf22cee0c09a4\",\n            \"insertDate\": \"2020-09-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-09-30T12:05:08.746Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f747474acbbda0007449860\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f751ee0699cf22cee29f69b\",\n            \"insertDate\": \"2020-09-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-01T12:05:09.040Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f75c5f5011b5700085ab859\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f767014699cf22cee570bb5\",\n            \"insertDate\": \"2020-10-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-02T12:05:08.614Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f771774e2f3ef000703e8f6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f77c0b1699cf22ceecc3e7d\",\n            \"insertDate\": \"2020-10-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-03T12:05:08.977Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7868f4c37d3e000772fe81\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7911b8699cf22ceee9536d\",\n            \"insertDate\": \"2020-10-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-04T12:05:09.169Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f79ba759691810008ca712e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7a6339699cf22cee071ee2\",\n            \"insertDate\": \"2020-10-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-05T12:05:09.192Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7b0bf587089c0008738c71\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7bb4c4699cf22cee35f9c3\",\n            \"insertDate\": \"2020-10-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-06T12:05:09.139Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7c5d7512f9c900070a58d9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7d0643699cf22cee713a04\",\n            \"insertDate\": \"2020-10-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-07T12:05:08.982Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7daef4753be400076c54c7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7e57b9699cf22ceeaba2b3\",\n            \"insertDate\": \"2020-10-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-08T12:05:09.155Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f7f0075a851be0007f5b118\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f7fa939699cf22ceeea2cc5\",\n            \"insertDate\": \"2020-10-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-09T12:05:09.089Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8051f50f000f000905b33b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f80fac7699cf22cee1e8009\",\n            \"insertDate\": \"2020-10-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-10T12:05:09.070Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f81a3753ed1830007bd3240\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f824c38699cf22cee51f4a6\",\n            \"insertDate\": \"2020-10-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-11T12:05:09.020Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f82f4f5805b6c00080a4731\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f839db8699cf22cee6d74bc\",\n            \"insertDate\": \"2020-10-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-12T12:05:09.452Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f844675a1119e0007d5c135\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f84ef39699cf22ceea385e6\",\n            \"insertDate\": \"2020-10-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-13T12:05:09.307Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8597f5864f4300081db8b9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8640b8699cf22ceedae34b\",\n            \"insertDate\": \"2020-10-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-14T12:05:09.914Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f86e97504f91000081c8b4d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f87923a699cf22cee17dabf\",\n            \"insertDate\": \"2020-10-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-15T12:05:08.855Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f883af41891380008ea1b83\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f88e3b9699cf22cee52e990\",\n            \"insertDate\": \"2020-10-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-16T12:05:08.952Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f898c7499c65b0008f9ece3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8a3539699cf22cee986a62\",\n            \"insertDate\": \"2020-10-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-17T12:05:09.091Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8addf5bed4bf0008d6895a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8b86b8699cf22ceeb5789a\",\n            \"insertDate\": \"2020-10-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-18T12:05:09.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8c2f7500c6b3000884bfd1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8cd838699cf22ceed2b702\",\n            \"insertDate\": \"2020-10-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-19T12:05:09.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8d80f51d90700008b7cbc9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8e29b9699cf22cee122f93\",\n            \"insertDate\": \"2020-10-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-20T12:05:09.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f8ed275ff10e900077229de\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f8f7b39699cf22cee4bf612\",\n            \"insertDate\": \"2020-10-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-21T12:05:09.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9023f5d204b300086ad5d4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f90ccba699cf22cee870859\",\n            \"insertDate\": \"2020-10-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-22T12:05:09.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f91757585309c00075f3619\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f921e39699cf22ceec47de4\",\n            \"insertDate\": \"2020-10-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-23T12:05:08.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f92c6f41a8bb100081f79d0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f936fb9699cf22cee05393c\",\n            \"insertDate\": \"2020-10-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-24T12:05:08.937Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9418748071720008c1f04b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f94c138699cf22cee20b538\",\n            \"insertDate\": \"2020-10-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-25T12:05:09.185Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9569f590bcd900080b5fee\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9612b8699cf22cee3cf92a\",\n            \"insertDate\": \"2020-10-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-26T12:05:09.184Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f96bb7548636400070ce9ef\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f97643a699cf22cee8441f7\",\n            \"insertDate\": \"2020-10-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-27T12:05:11.151Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f980cf7cd2c830008dcd57e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f98b5b9699cf22ceed79206\",\n            \"insertDate\": \"2020-10-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-28T12:05:11.706Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f995e778f570f00082d6ade\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9a073a699cf22cee27f0c4\",\n            \"insertDate\": \"2020-10-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-29T12:05:09.970Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9aaff5b0a5e60008b727d2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9b58ba699cf22cee71de23\",\n            \"insertDate\": \"2020-10-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-30T12:05:08.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9c017485544c00080b4d77\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9caa39699cf22ceed2170d\",\n            \"insertDate\": \"2020-10-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-10-31T12:05:09.058Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9d52f5fda5680008af39bf\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9dfbb9699cf22ceeee8845\",\n            \"insertDate\": \"2020-10-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-01T12:05:08.750Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9ea47413019e0007362643\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5f9f4d39699cf22cee0a63d0\",\n            \"insertDate\": \"2020-11-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-02T12:05:09.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5f9ff5f5994c7300071ac2a3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa09eba699cf22cee6416ca\",\n            \"insertDate\": \"2020-11-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-03T12:05:10.077Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa1477685b33a0008dae755\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa1f039699cf22ceea3c88c\",\n            \"insertDate\": \"2020-11-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-04T12:05:08.886Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa298f4988b970008229421\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa341b9699cf22ceeff431a\",\n            \"insertDate\": \"2020-11-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-05T12:05:12.636Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa3ea78ab445d0007eecf78\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa49339699cf22cee5e5cd9\",\n            \"insertDate\": \"2020-11-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-06T12:05:09.438Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa53bf5b42c4600083fe1d6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa5e4b9699cf22cee42338b\",\n            \"insertDate\": \"2020-11-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-07T12:05:09.161Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa68d75fffca7000843f267\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa73638699cf22cee60708b\",\n            \"insertDate\": \"2020-11-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-08T12:05:08.985Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa7def4d781a40007def833\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa887b9699cf22cee80b834\",\n            \"insertDate\": \"2020-11-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-09T12:05:08.881Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fa93074b357fe0008797c1a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fa9d939699cf22ceee0e196\",\n            \"insertDate\": \"2020-11-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-10T12:05:09.463Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5faa81f5f6d83d000851637b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fab2aba699cf22cee35e389\",\n            \"insertDate\": \"2020-11-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-11T12:05:09.264Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fabd375b3cfcc000750aa9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fac7c3a699cf22cee892237\",\n            \"insertDate\": \"2020-11-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-12T12:05:09.856Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fad24f591a6ce0008bbc78d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fadcdb9699cf22ceee099f0\",\n            \"insertDate\": \"2020-11-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-13T12:05:09.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fae76755029b70007fabdea\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5faf1f39699cf22cee275c1f\",\n            \"insertDate\": \"2020-11-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-14T12:05:09.566Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fafc7f5f74dca000819c6dd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb070b8699cf22cee478bcc\",\n            \"insertDate\": \"2020-11-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-15T12:05:09.149Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb119755c1ba10007743e61\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb1c238699cf22cee6547a9\",\n            \"insertDate\": \"2020-11-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-16T12:05:09.270Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb26af5338ac400075d6cd7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb313c0699cf22ceebba526\",\n            \"insertDate\": \"2020-11-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-17T12:05:08.887Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb3bc7416c6c4000893325e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb4653f699cf22cee0d7ac2\",\n            \"insertDate\": \"2020-11-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-18T12:05:09.104Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb50df54b57bd000844b012\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb5b6c1699cf22cee5cdeac\",\n            \"insertDate\": \"2020-11-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-19T12:05:09.080Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb65f75d095df00080c0c8b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb7083f699cf22ceeb7df49\",\n            \"insertDate\": \"2020-11-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-20T12:05:09.976Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb7b0f563fd2b00072a2fde\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb859bf699cf22cee002db2\",\n            \"insertDate\": \"2020-11-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-21T12:05:09.001Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fb902757e01550007627ace\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fb9ab38699cf22cee2168de\",\n            \"insertDate\": \"2020-11-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-22T12:05:08.817Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fba53f473c6b20008c2509a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fbafcb8699cf22cee4009f0\",\n            \"insertDate\": \"2020-11-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-23T12:05:09.172Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fbba575814cf100081a5869\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fbc4e3f699cf22ceea98c59\",\n            \"insertDate\": \"2020-11-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-24T12:05:09.256Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fbcf6f5b4eaa50008a9d5c0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fbd9fbf699cf22cee300814\",\n            \"insertDate\": \"2020-11-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-25T12:05:09.205Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fbe487544d86f0008b125c5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fbef13e699cf22cee9e7ddc\",\n            \"insertDate\": \"2020-11-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-26T12:05:09.350Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fbf99f515cc5b0008792f36\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc042be699cf22ceef05b4d\",\n            \"insertDate\": \"2020-11-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-27T12:05:08.717Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc0eb74b8c9db0008ae3253\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc1943e699cf22cee4f5da8\",\n            \"insertDate\": \"2020-11-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-28T12:05:08.929Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc23cf4c492f00007f76573\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc2e5b9699cf22cee7eb26c\",\n            \"insertDate\": \"2020-11-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-29T12:05:08.820Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc38e7466063d00085a41e9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc43738699cf22ceea1132c\",\n            \"insertDate\": \"2020-11-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-11-30T12:05:09.423Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc4dff5a40fa600084dbec4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc588bc699cf22ceef9a134\",\n            \"insertDate\": \"2020-11-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-01T12:05:08.662Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc631746fa91a0008743d50\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc6da41699cf22cee5a7855\",\n            \"insertDate\": \"2020-12-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-02T12:05:09.140Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc782f591edb40007fc4c2c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc82bc0699cf22ceebe7a89\",\n            \"insertDate\": \"2020-12-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-03T12:05:08.668Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fc8d474eb37d70008ad7218\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fc97d4c8e03e4341a44376a\",\n            \"insertDate\": \"2020-12-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-04T12:05:09.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fca25f5c9ceab0008ebc898\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fcacec08e03e4341acb8da9\",\n            \"insertDate\": \"2020-12-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-05T12:05:09.078Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fcb77756c49980007d3b95b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fcc20388e03e4341af21453\",\n            \"insertDate\": \"2020-12-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-06T12:05:09.332Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fccc8f5a8cbf100070917a6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fcd71b88e03e4341a107bec\",\n            \"insertDate\": \"2020-12-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-07T12:05:08.795Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fce1a749bd080000861a28a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fcec3438e03e4341a6ff91d\",\n            \"insertDate\": \"2020-12-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-08T12:05:09.326Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fcf6bf5ffe398000722eefb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd014c58e03e4341ad870a4\",\n            \"insertDate\": \"2020-12-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-09T12:05:09.172Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd0bd75433d9d0007926d19\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd166408e03e4341a5292d2\",\n            \"insertDate\": \"2020-12-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-10T12:05:09.177Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd20ef5da5f6c00089287a2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd2b7c58e03e4341abe0c14\",\n            \"insertDate\": \"2020-12-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-11T12:05:09.340Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd36075d30cd100070c5d91\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd409468e03e4341a22b3cd\",\n            \"insertDate\": \"2020-12-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-12T12:05:08.921Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd4b1f4a070e500079cdfcf\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd55ab98e03e4341a59af0a\",\n            \"insertDate\": \"2020-12-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-13T12:05:09.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd6037534901f00080ffa5a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd6ac388e03e4341a78624e\",\n            \"insertDate\": \"2020-12-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-14T12:05:09.055Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd754f504c3af0008567a69\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd7fdc48e03e4341aeb3046\",\n            \"insertDate\": \"2020-12-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-15T12:05:09.239Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd8a675a72ad50008f12d3e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fd94f4c8e03e4341a72c003\",\n            \"insertDate\": \"2020-12-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-16T12:05:09.100Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fd9f7f5c9cb370008397129\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fdaa0c9f31082da21a484d5\",\n            \"insertDate\": \"2020-12-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-17T12:05:08.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fdb4974073f8a000827da8d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fdbf242f31082da211740a7\",\n            \"insertDate\": \"2020-12-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-18T12:05:08.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fdc9af4049ea40008c97a73\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fdd43c680cbc446e6dbf0c9\",\n            \"insertDate\": \"2020-12-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-19T12:05:09.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fddec751e7246000867a23b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fde953980cbc446e6199068\",\n            \"insertDate\": \"2020-12-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-20T12:05:09.052Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fdf3df5790e4a0008318313\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fdfe6b880cbc446e63c2158\",\n            \"insertDate\": \"2020-12-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-21T12:05:09.096Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe08f7530a0d7000710ba19\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe1384a80cbc446e6aea4fe\",\n            \"insertDate\": \"2020-12-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-22T12:05:08.986Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe1e0f4f447b200081d3803\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe289c680cbc446e6669a0b\",\n            \"insertDate\": \"2020-12-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-23T12:05:09.108Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe33275c5b9270008c26842\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe3db5080cbc446e6d95b64\",\n            \"insertDate\": \"2020-12-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-24T12:05:09.323Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe483f5700eb800085ec30e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe52cc280cbc446e61e7ccc\",\n            \"insertDate\": \"2020-12-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-25T12:05:09.027Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe5d575665b8b000784a539\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe67e45da6026b5b9b3724c\",\n            \"insertDate\": \"2020-12-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-26T12:05:08.917Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe726f4598cb700089e09c6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe7cfbcda6026b5b9f688ac\",\n            \"insertDate\": \"2020-12-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-27T12:05:08.778Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe87874b7725600072b7982\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fe92139da6026b5b9240f5f\",\n            \"insertDate\": \"2020-12-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-28T12:05:08.687Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fe9c9f4459aa80007c18206\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fea72bfda6026b5b947c06f\",\n            \"insertDate\": \"2020-12-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-29T12:05:09.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5feb1b758d8c8d00086cc581\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5febc43dda6026b5b97ca3f0\",\n            \"insertDate\": \"2020-12-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-30T12:05:08.657Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fec6cf4907c39000856d8e9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fed15c0da6026b5b9db0944\",\n            \"insertDate\": \"2020-12-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2020-12-31T12:05:08.997Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fedbe74e4972f000820b7b3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fee673eda6026b5b9657619\",\n            \"insertDate\": \"2020-12-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-01T12:05:08.658Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5fef0ff4edcf1100075283f6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fefb8bfda6026b5b9884158\",\n            \"insertDate\": \"2021-01-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-02T12:05:09.204Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff061756c79df00084365b2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff10a3bda6026b5b9bd56ed\",\n            \"insertDate\": \"2021-01-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-03T12:05:09.245Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff1b2f54a85070008e565ae\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff25bb9da6026b5b9e5f6dd\",\n            \"insertDate\": \"2021-01-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-04T12:05:09.254Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff304755d31e00008d9f7cd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff3ad45da6026b5b9ace840\",\n            \"insertDate\": \"2021-01-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-05T12:05:09.182Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff455f58cf84300076d67e7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff4fec1da6026b5b988a0d8\",\n            \"insertDate\": \"2021-01-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-06T12:05:09.614Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff5a77554a81d000838c118\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff65040da6026b5b9e4ea0e\",\n            \"insertDate\": \"2021-01-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-07T12:05:09.039Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff6f8f5c06e050008d2a01a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff7a1c70cde4522ceffbaa1\",\n            \"insertDate\": \"2021-01-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-08T12:05:09.140Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff84a7532298600077f3067\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ff8f33ada6026b5b911f48c\",\n            \"insertDate\": \"2021-01-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-09T12:05:08.993Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ff99bf4afdae400070a39c5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ffa44c8da6026b5b95cb60d\",\n            \"insertDate\": \"2021-01-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-10T12:05:08.896Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ffaed74bdb8220008831c95\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ffb963cda6026b5b9dd1dd5\",\n            \"insertDate\": \"2021-01-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-11T12:05:09.400Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ffc3ef5bc04680008064dd0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ffce7b89a0a0ea052eff6cf\",\n            \"insertDate\": \"2021-01-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-12T12:05:08.932Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ffd9074db8e7b000876171a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5ffe39389a0a0ea0526d1e83\",\n            \"insertDate\": \"2021-01-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-13T12:05:08.997Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"5ffee1f469de440007b80b15\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"5fff8ab99a0a0ea05226993e\",\n            \"insertDate\": \"2021-01-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-14T12:05:08.835Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60003374ba77b30008bb6c93\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6000dc399a0a0ea05267f624\",\n            \"insertDate\": \"2021-01-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-15T12:05:09.313Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600184f5736a5d0008c7fc2b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60022db89a0a0ea0529ab921\",\n            \"insertDate\": \"2021-01-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-16T12:05:09.705Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6002d6751eccf40008d5a207\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60037f3d8189674ea2fee47e\",\n            \"insertDate\": \"2021-01-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-17T12:05:08.991Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600427f4ddf7f8000892a9a1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6004d0ba8189674ea23d4e09\",\n            \"insertDate\": \"2021-01-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-18T12:05:08.699Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6005797473e6aa0008251b5b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600622388189674ea26f1de5\",\n            \"insertDate\": \"2021-01-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-19T12:05:08.912Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6006caf4a2c36e00084ee625\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600773b98189674ea2a41e7a\",\n            \"insertDate\": \"2021-01-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-20T12:05:09.302Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60081c75275dea000711b6ac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6008c5388189674ea2d399b2\",\n            \"insertDate\": \"2021-01-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-21T12:05:09.358Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60096df5971142000797eba3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600a16b98189674ea20a73bc\",\n            \"insertDate\": \"2021-01-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-22T12:05:08.873Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600abf7420ac7500072dff4f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600b68388189674ea22f7bbc\",\n            \"insertDate\": \"2021-01-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-23T12:05:08.705Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600c10f4de965d00089577e0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600cb9b88189674ea247dfb9\",\n            \"insertDate\": \"2021-01-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-24T12:05:09.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600d6275b7ebef00079ea3cf\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600e0b388189674ea2614014\",\n            \"insertDate\": \"2021-01-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-25T12:05:08.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"600eb3f46b4bb70007fcc63d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"600f5cb98189674ea28fe3ab\",\n            \"insertDate\": \"2021-01-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-26T12:05:09.119Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60100575157c9b000899da13\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6010ae388189674ea2c78c77\",\n            \"insertDate\": \"2021-01-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-27T12:05:09.320Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601156f543fdd70007995f3e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6011ffb88189674ea20a1401\",\n            \"insertDate\": \"2021-01-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-28T12:05:09.431Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6012a87545eae70008fe7d1b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601351398189674ea2501d20\",\n            \"insertDate\": \"2021-01-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-29T12:05:09.619Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6013f9f547047d0008017e27\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6014a2b98189674ea294cf13\",\n            \"insertDate\": \"2021-01-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-30T12:05:08.418Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60154b74158cef0008172ce1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6015f4388189674ea2ae056c\",\n            \"insertDate\": \"2021-01-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-01-31T12:05:08.949Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60169cf4986762000807e27c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601745b88189674ea2c7f39c\",\n            \"insertDate\": \"2021-01-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-01T12:05:06.660Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6017ee723c70020007bfc337\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601897428189674ea20fce0e\",\n            \"insertDate\": \"2021-02-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-02T12:05:09.161Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60193ff56423c4000816f1d6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6019e8bedd03c7a049629253\",\n            \"insertDate\": \"2021-02-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-03T12:05:08.939Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601a91740532eb000813a602\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601b3a3fdd03c7a049a6b603\",\n            \"insertDate\": \"2021-02-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-04T12:05:09.418Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601be2f5f59df700070efc6c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601c8bc1dd03c7a049e958d5\",\n            \"insertDate\": \"2021-02-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-05T12:05:09.180Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601d3475e300ca00083c5b62\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601ddd41dd03c7a049341d19\",\n            \"insertDate\": \"2021-02-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-06T12:05:09.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601e85f59a7cda000878bb31\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"601f2eb9dd03c7a049570947\",\n            \"insertDate\": \"2021-02-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-07T12:05:09.519Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"601fd775315f8400084afdef\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60208038dd03c7a04970e925\",\n            \"insertDate\": \"2021-02-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-08T12:05:09.253Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602128f5f71d3200076d0d06\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6021d1c0dd03c7a049b0383a\",\n            \"insertDate\": \"2021-02-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-09T12:05:09.199Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60227a7582ff8900082dcb52\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60232343dd03c7a04904ca69\",\n            \"insertDate\": \"2021-02-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-10T12:05:08.843Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6023cbf45f28100008aa80ad\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602474c2dd03c7a04964c374\",\n            \"insertDate\": \"2021-02-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-11T12:05:08.742Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60251d7458ca5d00075d49cb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6025c647dd03c7a049c480cc\",\n            \"insertDate\": \"2021-02-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-12T12:05:09.437Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60266ef5d8274000078e5f8a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602717c1dd03c7a04914b17f\",\n            \"insertDate\": \"2021-02-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-13T12:05:09.352Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6027c075ed89ab00088235c5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60286938dd03c7a04941bb90\",\n            \"insertDate\": \"2021-02-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-14T12:05:09.123Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602911f5a05b3d0007f8fde4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6029bab8dd03c7a0495f1be5\",\n            \"insertDate\": \"2021-02-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-15T12:05:09.237Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602a637580c270000898d243\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602b0c3fdd03c7a049aeef29\",\n            \"insertDate\": \"2021-02-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-16T12:05:09.645Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602bb4f5050f5600087e338d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602c5dc32faa4526e35f5b90\",\n            \"insertDate\": \"2021-02-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-17T12:05:08.773Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602d06744a16f100076ff664\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602daf3b2faa4526e3c2878e\",\n            \"insertDate\": \"2021-02-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-18T12:05:08.853Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602e57f4641de80007c723b4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"602f00ba2faa4526e314998f\",\n            \"insertDate\": \"2021-02-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-19T12:05:08.807Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"602fa974702eb90008d0de28\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603052392faa4526e36963ba\",\n            \"insertDate\": \"2021-02-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-20T12:05:08.725Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6030faf4b359150008d908e2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6031a3b82faa4526e387a48a\",\n            \"insertDate\": \"2021-02-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-21T12:05:08.848Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60324c74fb0fb40007a39e2e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6032f5382faa4526e3a65557\",\n            \"insertDate\": \"2021-02-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-22T12:05:08.658Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60339df45f464e0008ade23f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603446b92faa4526e3ee2da5\",\n            \"insertDate\": \"2021-02-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-23T12:05:08.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6034ef74d1fb6b0007c9d56f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603598392faa4526e341fed4\",\n            \"insertDate\": \"2021-02-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-24T12:05:09.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603640f53b1d340008b37462\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6036e9b82faa4526e38974c9\",\n            \"insertDate\": \"2021-02-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-25T12:05:08.972Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60379274ef896c0007e41671\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60383b382faa4526e3d27077\",\n            \"insertDate\": \"2021-02-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-26T12:05:09.085Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6038e3f5d4e99f0007466195\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60398cb92faa4526e31fe49b\",\n            \"insertDate\": \"2021-02-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-27T12:05:09.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603a3575f97ca90007781443\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603ade382faa4526e3420ee0\",\n            \"insertDate\": \"2021-02-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-02-28T12:05:09.212Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603b86f5539b1400075872fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603c2fb82faa4526e364e291\",\n            \"insertDate\": \"2021-02-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-01T12:05:09.640Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603cd875a0c03e00078b62d4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603d81382faa4526e3b422b2\",\n            \"insertDate\": \"2021-03-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-02T12:05:09.257Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603e29f5129dd40007e25599\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"603ed2b92faa4526e3ffe0db\",\n            \"insertDate\": \"2021-03-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-03T12:05:08.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"603f7b74d24ef600087fe2c0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604024382faa4526e349447c\",\n            \"insertDate\": \"2021-03-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-04T12:05:09.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6040ccf5ddb38f00079d94f9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604175b92faa4526e39e4799\",\n            \"insertDate\": \"2021-03-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-05T12:05:09.240Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60421e75ad1723000751a6df\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6042c7392faa4526e3fc6a45\",\n            \"insertDate\": \"2021-03-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-06T12:05:09.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60436ff505165f0008f0d8a7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604418b72faa4526e32debbc\",\n            \"insertDate\": \"2021-03-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-07T12:05:08.802Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6044c1747c4fcf0007083c36\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60456a382faa4526e3536799\",\n            \"insertDate\": \"2021-03-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-08T12:05:08.710Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604612f4be9100000728cb6f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6046bbb92faa4526e3ba4511\",\n            \"insertDate\": \"2021-03-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-09T12:05:08.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60476474d9c8f200072fab3d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60480d392faa4526e30568dc\",\n            \"insertDate\": \"2021-03-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-10T12:05:08.982Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6048b5f4a665850007a179fb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60495eb82faa4526e353d47d\",\n            \"insertDate\": \"2021-03-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-11T12:05:08.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604a0774813fcd0008f3bd69\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604ab0392faa4526e39f223c\",\n            \"insertDate\": \"2021-03-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-12T12:05:09.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604b58f5d19b4c000743de9f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604c01b82faa4526e3e78d11\",\n            \"insertDate\": \"2021-03-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-13T12:05:09.393Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604caa7587438a000748ab45\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604d53382faa4526e33c80fe\",\n            \"insertDate\": \"2021-03-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-14T12:05:08.884Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604dfbf4910a9e000849624f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604ea4b82faa4526e364b683\",\n            \"insertDate\": \"2021-03-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-15T12:05:08.935Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"604f4d74a6d61c0007e75e56\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"604ff6392faa4526e3a959ed\",\n            \"insertDate\": \"2021-03-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-16T12:05:09.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60509ef5001e210008cf38bc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"605147baa38c872bb7a3cebc\",\n            \"insertDate\": \"2021-03-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-17T12:05:08.678Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6051f0741dc6830007995418\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60529939a38c872bb7e53c04\",\n            \"insertDate\": \"2021-03-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-18T12:05:09.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"605341f5c7bbee000762b23d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6053eab9a38c872bb7224eee\",\n            \"insertDate\": \"2021-03-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-19T12:05:08.747Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60549374851a0f0007ab6dbd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60553c39a38c872bb75f830a\",\n            \"insertDate\": \"2021-03-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-20T12:05:08.814Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6055e4f415ceac00072f7af0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60568db8a38c872bb77adc8a\",\n            \"insertDate\": \"2021-03-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-21T12:05:08.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6057367402e0dc000783393d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6057df39a38c872bb795644a\",\n            \"insertDate\": \"2021-03-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-22T12:05:08.800Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"605887f42f7cb700070cb840\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"605930b9a38c872bb7d6b5d0\",\n            \"insertDate\": \"2021-03-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-23T12:05:09.484Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6059d97552f876000844dd99\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"605a8239a38c872bb717a6d8\",\n            \"insertDate\": \"2021-03-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-24T12:05:09.175Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"605b2af50ca0680007ed44d7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"605bd3b9edf2011befc1a1bd\",\n            \"insertDate\": \"2021-03-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-25T12:05:08.911Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"605c7c740c7339000823a7d7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6061b46a8d7db7e9438cd642\",\n            \"insertDate\": \"2021-03-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-29T12:05:09.834Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 32\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6061c2759981c30007620d95\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"606305e78d7db7e943bbb106\",\n            \"insertDate\": \"2021-03-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-30T11:05:30.187Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"606305facb137d00077ca5a7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6063bcb96880027923e2518c\",\n            \"insertDate\": \"2021-03-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-03-31T00:05:10.224Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6063bcb6b98bf800079d1ff3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"606d83fb68800279235060a0\",\n            \"insertDate\": \"2021-04-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-07T12:05:27.420Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 3\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"606da00701867c0008043b56\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"606e48d568800279238142e9\",\n            \"insertDate\": \"2021-04-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-08T12:05:27.949Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"606ef1875655470008cbb46c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"606f9a566880027923d27dcc\",\n            \"insertDate\": \"2021-04-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-09T12:05:29.732Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607043090bb23d00089a9c7e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6070ebe468800279232d6746\",\n            \"insertDate\": \"2021-04-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-10T12:05:27.336Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6071948716ac880008bdf1e7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60723d49688002792379bb45\",\n            \"insertDate\": \"2021-04-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-11T12:05:27.520Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6072e6079faaa900083b70ab\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60738ec9688002792399b600\",\n            \"insertDate\": \"2021-04-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-12T12:05:27.592Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607437873ebef400083e1bab\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6074e0526880027923e181bc\",\n            \"insertDate\": \"2021-04-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-13T12:05:27.860Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607589074a7cf70007462941\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607631d268800279232c74bb\",\n            \"insertDate\": \"2021-04-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-14T12:05:28.107Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6076da88760810000705aab1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6077835368800279237f708e\",\n            \"insertDate\": \"2021-04-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-15T12:05:28.149Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60782c08084e3e00083be037\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6078d4d56880027923d2e925\",\n            \"insertDate\": \"2021-04-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-16T12:05:27.717Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60797d87f4d8a500095897f5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607a26556880027923221bd1\",\n            \"insertDate\": \"2021-04-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-17T12:05:27.384Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607acf07bac06d00087a9cae\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607b77c9688002792350fec2\",\n            \"insertDate\": \"2021-04-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-18T12:05:27.372Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607c2087cd49d500091b5c10\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607cc949688002792370d2e9\",\n            \"insertDate\": \"2021-04-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-19T12:05:28.160Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607d72083bc2f90008ae1c90\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607e1add8a74dbb54e48f748\",\n            \"insertDate\": \"2021-04-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-20T12:05:28.002Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"607ec388d88dbc00097dc751\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"607f6c548a74dbb54e9f05a8\",\n            \"insertDate\": \"2021-04-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-21T12:05:28.021Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608015083e019f000942b7ae\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6080bdca8a74dbb54eef457e\",\n            \"insertDate\": \"2021-04-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-22T12:05:27.545Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608166879437260009618cdf\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60820f4a8a74dbb54e313b08\",\n            \"insertDate\": \"2021-04-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-23T12:05:27.636Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6082b8070067910009e9133e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608360ca8a74dbb54e93c62d\",\n            \"insertDate\": \"2021-04-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-24T12:05:27.507Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60840987af6c0a000951bb36\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6084b2498a74dbb54eb5e2a3\",\n            \"insertDate\": \"2021-04-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-25T12:05:28.034Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60855b081481660008967032\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608603ca8a74dbb54ed9124e\",\n            \"insertDate\": \"2021-04-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-26T12:05:27.879Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6086ac8760af7d0008b386a9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6087554a8a74dbb54e23ce14\",\n            \"insertDate\": \"2021-04-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-27T12:05:28.023Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6087fe089e05c90009acccc3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6088a6ca8a74dbb54e746c35\",\n            \"insertDate\": \"2021-04-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-28T12:05:28.675Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60894f882b8f3d00085983e3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6089f84a8a74dbb54ecb817e\",\n            \"insertDate\": \"2021-04-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-29T12:05:28.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608aa108b48b4700090d5f36\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608b49cbf8274a274b0c66d3\",\n            \"insertDate\": \"2021-04-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-04-30T12:05:27.397Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608bf2873aa74500097d342a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608c9b4af8274a274b510164\",\n            \"insertDate\": \"2021-04-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-01T12:05:27.725Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608d4407cea46e00096f9ec3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608decc9f8274a274b7b5308\",\n            \"insertDate\": \"2021-05-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-02T12:05:27.429Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608e9587d38c3d0009e88d41\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"608f3e49f8274a274ba61b1e\",\n            \"insertDate\": \"2021-05-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-03T12:05:27.995Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"608fe707d44c96000858df1d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60908fcaf8274a274bdda5e0\",\n            \"insertDate\": \"2021-05-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-04T12:05:27.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609138872a7b0a000885ea56\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6091e14af8274a274b2f4859\",\n            \"insertDate\": \"2021-05-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-05T12:05:30.312Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60928a0a7490c9000935ce3f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609332cbf8274a274b8d3890\",\n            \"insertDate\": \"2021-05-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-06T12:05:30.681Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6093db8a96170700096cdfcd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6094844bf8274a274be94dc8\",\n            \"insertDate\": \"2021-05-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-07T12:05:30.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60952d0a5a111c0008bf1cf7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6095d5caf8274a274b46e762\",\n            \"insertDate\": \"2021-05-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-08T12:05:29.951Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60967e895b6de400081928d5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60972749f8274a274b75779a\",\n            \"insertDate\": \"2021-05-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-09T12:05:30.016Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6097d00a1c5b600008585024\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609878caf8274a274ba6cf40\",\n            \"insertDate\": \"2021-05-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-10T12:05:30.109Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6099218af82406000948416a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6099ca4af8274a274b0dc5ea\",\n            \"insertDate\": \"2021-05-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-11T12:05:31.400Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609a730b2844e100095a4ba2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609b1bcaf8274a274b5d8235\",\n            \"insertDate\": \"2021-05-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-12T12:05:29.514Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609bc48967f4f60009c227e4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609c6d4af8274a274bb426c3\",\n            \"insertDate\": \"2021-05-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-13T12:05:29.785Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609d1609a4f89d0009b80bbc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609dbecaf8274a274b0219d2\",\n            \"insertDate\": \"2021-05-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-14T12:05:29.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609e67894660f800094161e6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"609f104af8274a274b500d3d\",\n            \"insertDate\": \"2021-05-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-15T12:05:29.869Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"609fb90905afd100081a8ef4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a061caf8274a274b86ea8e\",\n            \"insertDate\": \"2021-05-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-16T12:05:30.483Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a10a8aa47b37000988e68f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a1b34af8274a274bb92795\",\n            \"insertDate\": \"2021-05-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-17T12:05:29.910Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a25c09305d3a0009b61f9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a304ca86d53ae151e38c5f\",\n            \"insertDate\": \"2021-05-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-18T12:05:29.898Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a3ad89e0e03800095f01a0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a4564a86d53ae15133e7c9\",\n            \"insertDate\": \"2021-05-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-19T12:05:30.113Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a4ff0a614def0009f98985\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a5a7ca86d53ae15190d626\",\n            \"insertDate\": \"2021-05-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-20T12:05:30.640Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a6508ada8446000931cda7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a6f94b86d53ae151e50f69\",\n            \"insertDate\": \"2021-05-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-21T12:05:30.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a7a20ad29ee00009ea6e14\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a84aca86d53ae1513f582c\",\n            \"insertDate\": \"2021-05-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-22T12:05:29.728Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60a8f389c840e500092180f5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60a99c4a86d53ae151666b1d\",\n            \"insertDate\": \"2021-05-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-23T12:05:29.204Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60aa4509c0278100094fbfcd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60aaedca86d53ae1518f187f\",\n            \"insertDate\": \"2021-05-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-24T12:05:30.872Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ab968a02bd430009de8515\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ac3f4a86d53ae151cc65f8\",\n            \"insertDate\": \"2021-05-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-25T12:05:31.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ace80b0da1ae0008d3a4b3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ad90ca86d53ae15118352a\",\n            \"insertDate\": \"2021-05-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-26T12:05:31.302Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ae398b06f8d6000928e69f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60aee24b86d53ae151612fd6\",\n            \"insertDate\": \"2021-05-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-27T12:05:30.200Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60af8b0a58c1500008db31ab\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b033ca86d53ae151b4ca18\",\n            \"insertDate\": \"2021-05-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-28T12:05:30.349Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b0dc8ac612f50009a3e9b9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b1854a86d53ae151f678ff\",\n            \"insertDate\": \"2021-05-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-29T12:05:30.184Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b22e0ae67688000817defb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b2d6ca86d53ae15123720a\",\n            \"insertDate\": \"2021-05-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-30T12:05:29.917Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b37f89c1532b000975ac9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b4284b86d53ae1515135a9\",\n            \"insertDate\": \"2021-05-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-05-31T12:05:29.873Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b4d10917fcd30008a02644\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b579ca86d53ae1518d1fdf\",\n            \"insertDate\": \"2021-05-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-01T12:05:30.889Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b6228abfe67f000865b338\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b6cb4b86d53ae151ce0a77\",\n            \"insertDate\": \"2021-06-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-02T12:05:29.510Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b774098c45470008fe805a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b81cca86d53ae15118f091\",\n            \"insertDate\": \"2021-06-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-03T12:05:30.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60b8c58ad5b7d20009af3ff2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60b96e4a86d53ae15181dfe4\",\n            \"insertDate\": \"2021-06-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-04T12:05:28.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ba1708da32b9000990f577\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60babfe686d53ae151be7558\",\n            \"insertDate\": \"2021-06-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-05T12:05:55.743Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60bb68a33baca500087efd5a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60bc116686d53ae151d8be82\",\n            \"insertDate\": \"2021-06-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-06T12:05:55.943Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60bcba2311098100097ea546\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60bd62e586d53ae151f3a9f7\",\n            \"insertDate\": \"2021-06-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-07T12:05:55.616Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60be0ba3f25b3d00096e23fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60beb46786d53ae1512b34ca\",\n            \"insertDate\": \"2021-06-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-08T12:05:56.002Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60bf5d241e31fc00096c9b0a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c005e686d53ae151610781\",\n            \"insertDate\": \"2021-06-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-09T12:05:55.610Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c0aea3cbfc2c000895dc85\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c1576686d53ae151a28938\",\n            \"insertDate\": \"2021-06-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-10T12:05:55.490Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c20023c3a0cb000869ca84\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c2a8e686d53ae151e3dd83\",\n            \"insertDate\": \"2021-06-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-11T12:05:55.822Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c351a394088500090d674f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c3fa6686d53ae1511a20a0\",\n            \"insertDate\": \"2021-06-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-12T12:05:56.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c4a3244b8af10008deb38f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c54be586d53ae1513a6ac8\",\n            \"insertDate\": \"2021-06-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-13T12:05:55.402Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c5f4a32cfe6b0009ccc693\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c69d6586d53ae15158a5c6\",\n            \"insertDate\": \"2021-06-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-14T12:05:56.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c74624c89e070009006fae\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c7eee786d53ae1519fa240\",\n            \"insertDate\": \"2021-06-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-15T12:05:55.955Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c897a312ba87000906254b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60c94066cdb75b1a74e5ba8f\",\n            \"insertDate\": \"2021-06-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-16T12:05:55.960Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60c9e92365ed6e00096eeff4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ca91e6cdb75b1a743a5b8f\",\n            \"insertDate\": \"2021-06-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-17T12:05:55.904Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60cb3aa33e92fc0009289636\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60cbe365cdb75b1a747a5b9b\",\n            \"insertDate\": \"2021-06-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-18T12:05:55.546Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60cc8c23646500000963b1c3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60cd34e6cdb75b1a74c687c4\",\n            \"insertDate\": \"2021-06-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-19T12:05:55.667Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60cddda38002df0009af052e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ce8665cdb75b1a74e879eb\",\n            \"insertDate\": \"2021-06-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-20T12:05:55.666Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60cf2f235ca0f2000839993d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60cfd7e6cdb75b1a740be7d6\",\n            \"insertDate\": \"2021-06-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-21T12:05:55.815Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d080a3c91414000894a331\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d12966cdb75b1a7456b24b\",\n            \"insertDate\": \"2021-06-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-22T12:05:55.296Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d1d2235d91bb0008bf7725\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d27ae8f3c9d2af9d9953de\",\n            \"insertDate\": \"2021-06-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-23T12:05:56.166Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d323a42ddcd30009c6b920\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d3cc66f3c9d2af9de3a45c\",\n            \"insertDate\": \"2021-06-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-24T12:05:56.027Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d475240b1e05000970fabb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d51de7f3c9d2af9d25a84c\",\n            \"insertDate\": \"2021-06-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-25T12:05:55.441Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d5c6a3e5e6760009d998da\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d66f66f3c9d2af9d5bd7e7\",\n            \"insertDate\": \"2021-06-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-26T12:05:55.719Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d71823cbf88d0008eeab9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d7c0e5f3c9d2af9d7ae075\",\n            \"insertDate\": \"2021-06-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-27T12:05:55.511Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d869a33852c400098953e1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60d91265f3c9d2af9d9a9c47\",\n            \"insertDate\": \"2021-06-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-28T12:05:55.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60d9bb23d8e22a000816152e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60da63e6f3c9d2af9dde6d00\",\n            \"insertDate\": \"2021-06-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-29T12:05:55.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60db0ca31789cd0009e467d9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60dbb566f3c9d2af9d2480b8\",\n            \"insertDate\": \"2021-06-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-06-30T12:05:55.337Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60dc5e2388c4ce000833d242\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60dd06e7f3c9d2af9d667062\",\n            \"insertDate\": \"2021-06-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-01T12:05:55.362Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ddafa3dc0fc10009b2c0fe\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60de5867f3c9d2af9da82c97\",\n            \"insertDate\": \"2021-07-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-02T12:05:56.507Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60df012474d60e00092a64a3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60dfa9e7f3c9d2af9de9812a\",\n            \"insertDate\": \"2021-07-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-03T12:05:55.296Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e052a3d5fb13000876c814\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e0fb65f3c9d2af9d13216d\",\n            \"insertDate\": \"2021-07-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-04T12:05:55.625Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e1a42378e03f00087a8d49\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e24ce5db531f69da4c674d\",\n            \"insertDate\": \"2021-07-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-05T12:05:56.263Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e2f5a4ce5b5b00092e17cc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e39e66db531f69da8b6396\",\n            \"insertDate\": \"2021-07-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-06T12:05:56.175Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e44724b58bb400087fb52e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e4efe7db531f69dacc5458\",\n            \"insertDate\": \"2021-07-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-07T12:05:55.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e598a325b1c7000985bdb0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e64166db531f69da16addd\",\n            \"insertDate\": \"2021-07-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-08T12:05:55.716Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e6ea234d1a2b0009f6c360\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e792e4db531f69da9b2a1d\",\n            \"insertDate\": \"2021-07-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-09T12:05:55.927Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e83ba3962f2b00089653eb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60e8e466db531f69daf3680e\",\n            \"insertDate\": \"2021-07-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-10T12:05:55.418Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60e98d234185c90008956d27\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ea35e5db531f69da196239\",\n            \"insertDate\": \"2021-07-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-11T12:05:55.332Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60eadea38fdfef0008a1627c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60eb876cdb531f69da406b9d\",\n            \"insertDate\": \"2021-07-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-12T12:05:55.369Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ec3023af7e9d0008493e29\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ecd8e6db531f69da8afc71\",\n            \"insertDate\": \"2021-07-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-13T12:05:55.251Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60ed81a39359980008317710\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ee2a67db531f69dacaadce\",\n            \"insertDate\": \"2021-07-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-14T12:05:56.748Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60eed324116f8c000944b10a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ef7be7db531f69da0cca7e\",\n            \"insertDate\": \"2021-07-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-15T12:05:56.010Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f024a4ac934000099fa13f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f0cd65db531f69da4da233\",\n            \"insertDate\": \"2021-07-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-16T12:05:56.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f17624b35f7300082886be\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f21ee7db531f69da957b27\",\n            \"insertDate\": \"2021-07-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-17T12:05:55.689Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f2c7a3e31f1c000873de75\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f37066db531f69dac07425\",\n            \"insertDate\": \"2021-07-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-18T12:05:56.091Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f4192440a56d0008299373\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f4c1e6db531f69daec0e31\",\n            \"insertDate\": \"2021-07-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-19T12:05:55.619Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f56aa3a1aefa0009cdde10\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f61367db531f69da3bf189\",\n            \"insertDate\": \"2021-07-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-20T12:05:56.302Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f6bc2416e1320009c8de64\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f764e7db531f69da8aaa88\",\n            \"insertDate\": \"2021-07-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-21T12:05:56.295Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f80da443a6bb00094d6806\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60f8b667db531f69dadb88e8\",\n            \"insertDate\": \"2021-07-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-22T12:05:56.020Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60f95f242261e000083ba08d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60fa07e6db531f69da2207ff\",\n            \"insertDate\": \"2021-07-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-23T12:05:56.069Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60fab0a470b3490009603e44\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60fb5966db531f69da56537b\",\n            \"insertDate\": \"2021-07-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-24T12:05:56.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60fc0224d0528c0008b4f6ee\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60fcaae6db531f69da76b31a\",\n            \"insertDate\": \"2021-07-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-25T12:05:55.832Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60fd53a32a5231000937e43b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60fdfc66db531f69da954f99\",\n            \"insertDate\": \"2021-07-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-26T12:05:56.157Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60fea5243f963b0009cce5b7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"60ff4de7db531f69dad600aa\",\n            \"insertDate\": \"2021-07-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-27T12:05:55.842Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"60fff6a33551cb0008c2c3dd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61009f66db531f69da098638\",\n            \"insertDate\": \"2021-07-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-28T12:05:56.442Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610148245157be0008d35b3b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6101f0e7db531f69da4e2f6e\",\n            \"insertDate\": \"2021-07-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-29T12:05:56.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610299a49c4120000937a98b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6103426512a4668f69af63ef\",\n            \"insertDate\": \"2021-07-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-30T12:05:56.769Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6103eb247593b600090f91bd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610493e612a4668f69f28cf5\",\n            \"insertDate\": \"2021-07-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-07-31T12:05:56.026Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61053ca4ec9aea0009a57155\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6105e5678f9bc11776de9840\",\n            \"insertDate\": \"2021-07-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-01T12:05:55.796Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61068e23673b81000912595e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610736e78f9bc11776089609\",\n            \"insertDate\": \"2021-08-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-02T12:05:56.130Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6107dfa4bce43f0008dd96f5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610888668f9bc1177640b6ee\",\n            \"insertDate\": \"2021-08-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-03T12:05:57.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610931250f60360008a59f28\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6109d9e68f9bc117767b2b18\",\n            \"insertDate\": \"2021-08-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-04T12:05:56.029Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610a82a460d2040009ef6735\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610b2b668f9bc11776bb1a8e\",\n            \"insertDate\": \"2021-08-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-05T12:05:56.205Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610bd4244e67e20008a58497\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610c7ce58f9bc11776f3ef74\",\n            \"insertDate\": \"2021-08-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-06T12:05:56.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610d25a459618e00089d4a95\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610dce668f9bc1177638a70a\",\n            \"insertDate\": \"2021-08-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-07T12:05:55.905Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610e772307e7720009f1e136\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"610f1fe58f9bc117766608f0\",\n            \"insertDate\": \"2021-08-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-08T12:05:55.519Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"610fc8a31a7bf4000823c295\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611071668f9bc1177696df18\",\n            \"insertDate\": \"2021-08-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-09T12:05:56.275Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61111a24e58a500009b2eebd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6111c2e78f9bc11776dc0ef9\",\n            \"insertDate\": \"2021-08-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-10T12:05:56.243Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61126ba4e6d23d0009114c5e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611314668f9bc1177633a844\",\n            \"insertDate\": \"2021-08-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-11T12:05:56.310Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6113bd243a52c6000aabdc84\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611465e68f9bc117767c35ef\",\n            \"insertDate\": \"2021-08-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-12T12:05:55.822Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61150ea3080c3e0008bf93f1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6115b7658f9bc11776aee463\",\n            \"insertDate\": \"2021-08-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-13T12:05:55.892Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61166023569f7500099045a5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611708e68f9bc11776e7d6c3\",\n            \"insertDate\": \"2021-08-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-14T12:05:56.078Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6117b1a479b558000924dfe3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61185a668f9bc117760e3916\",\n            \"insertDate\": \"2021-08-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-15T12:05:55.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611903232072d3000972681d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6119abe68f9bc1177635a388\",\n            \"insertDate\": \"2021-08-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-16T12:05:55.601Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611a54a3b6448500098a3075\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611afd668f9bc11776753b86\",\n            \"insertDate\": \"2021-08-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-17T12:05:55.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611ba62302adc60009cd6ba8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611c4ee68f9bc11776b9ea39\",\n            \"insertDate\": \"2021-08-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-18T12:05:55.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611cf7a354016200083cda9c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611da0668f9bc11776267861\",\n            \"insertDate\": \"2021-08-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-19T12:05:55.610Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611e4923cc68d60009803981\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"611ef1e58f9bc11776785030\",\n            \"insertDate\": \"2021-08-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-20T12:05:57.206Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"611f9aa55f7d490009f71ed2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612043678f9bc11776d3d961\",\n            \"insertDate\": \"2021-08-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-21T12:05:56.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6120ec248df78a00096a89fd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612194e75560c9079a378fe6\",\n            \"insertDate\": \"2021-08-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-22T12:05:56.535Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61223da43543cd00098dfac6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6122e6665560c9079a6bc5e2\",\n            \"insertDate\": \"2021-08-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-23T12:05:56.805Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61238f242bdde40008cc59ac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612437e75560c9079ac40a89\",\n            \"insertDate\": \"2021-08-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-24T12:05:56.883Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6124e0a4e9803c0008cd45fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612589675560c9079a14af4c\",\n            \"insertDate\": \"2021-08-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-25T12:05:57.497Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612632259e966b000921dc55\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6126dae75560c9079a74a270\",\n            \"insertDate\": \"2021-08-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-26T12:05:56.185Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612783a47a8c3d0009d663b8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61282c655560c9079ac4d081\",\n            \"insertDate\": \"2021-08-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-27T12:05:58.848Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6128d526c3952900090f1063\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61297de75560c9079a1e6126\",\n            \"insertDate\": \"2021-08-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-28T12:05:56.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612a26a44e8ac400092b0045\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612acf665560c9079a52e35a\",\n            \"insertDate\": \"2021-08-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-29T12:05:56.054Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612b78242fac0b00093235b0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612c20e65560c9079a85b92d\",\n            \"insertDate\": \"2021-08-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-30T12:05:55.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612cc9a3746b260009bce57e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612d72675560c9079ae027fc\",\n            \"insertDate\": \"2021-08-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-08-31T12:05:55.828Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612e1b2324811800094c8837\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"612ec3e75560c9079a26d85f\",\n            \"insertDate\": \"2021-08-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-01T12:05:56.108Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"612f6ca447fe0d00093b36f4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613015675560c9079a964361\",\n            \"insertDate\": \"2021-09-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-02T12:05:56.185Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6130be24f6d5360009fe6370\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613166e45560c9079aff17da\",\n            \"insertDate\": \"2021-09-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-03T12:05:56.575Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61320fa42b4a5500086adb96\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6132b8675560c9079a6ad2ad\",\n            \"insertDate\": \"2021-09-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-04T12:05:56.497Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61336124f0958600098acb4c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613409e65560c9079aab52fe\",\n            \"insertDate\": \"2021-09-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-05T12:05:56.145Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6134b2a42354880009efc531\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61355b665560c9079aebea3c\",\n            \"insertDate\": \"2021-09-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-06T12:05:56.228Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613604243cb8bc0009938e9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6136ace75560c9079a437abd\",\n            \"insertDate\": \"2021-09-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-07T12:05:56.153Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613755a48540a30009aa49c4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6137fe675560c9079aa93f9d\",\n            \"insertDate\": \"2021-09-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-08T12:05:58.528Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6138a7260fc3da0009d70ba4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61394fe75560c9079a162fb2\",\n            \"insertDate\": \"2021-09-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-09T12:05:56.097Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6139f8a4bdc23a0009f5983b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613aa1660eaea64951a1a10c\",\n            \"insertDate\": \"2021-09-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-10T12:05:58.279Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613b4a2670a0100009731c00\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613bf2e80eaea6495100ffaf\",\n            \"insertDate\": \"2021-09-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-11T12:05:55.912Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613c9ba370e2b30008753fbc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613d44660eaea64951478096\",\n            \"insertDate\": \"2021-09-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-12T12:05:56.040Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613ded24da994c00098e1526\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613e95e60eaea649518e37bb\",\n            \"insertDate\": \"2021-09-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-13T12:05:58.317Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"613f3ea61251360009a583ce\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"613fe7670eaea64951ed9cfc\",\n            \"insertDate\": \"2021-09-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-14T12:05:56.402Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614090243f708b000901335c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614138e80eaea649514da612\",\n            \"insertDate\": \"2021-09-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-15T12:05:58.339Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6141e1a62f675800092178a5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61428a670eaea64951c0eec0\",\n            \"insertDate\": \"2021-09-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-16T12:05:58.780Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614333269ebbfb0009a46da5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6143dbe70eaea6495123b70c\",\n            \"insertDate\": \"2021-09-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-17T12:05:58.246Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614484a6ecabca0008810acc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61452d670eaea649518098b6\",\n            \"insertDate\": \"2021-09-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-18T12:05:56.190Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6145d6241e4ac800094ef26a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61467ee60eaea64951c3bc77\",\n            \"insertDate\": \"2021-09-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-19T12:05:56.208Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614727a4babbe1000842c7d6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6147d0660eaea6495109f385\",\n            \"insertDate\": \"2021-09-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-20T12:05:58.399Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614879260c63d60009683668\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614921e6be28fd3d7747ee3d\",\n            \"insertDate\": \"2021-09-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-21T12:05:56.295Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6149caa4a376cc000954ee62\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614a7367be28fd3d778ed53d\",\n            \"insertDate\": \"2021-09-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-22T12:05:56.432Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614b1c243fb5c30008a63554\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614bc4e8be28fd3d77dedab5\",\n            \"insertDate\": \"2021-09-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-23T12:05:56.006Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614c6da4b25e44000827bbe2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614d1665be28fd3d77282990\",\n            \"insertDate\": \"2021-09-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-24T12:05:56.095Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614dbf24998be2000941b664\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614e67e6be28fd3d776e107e\",\n            \"insertDate\": \"2021-09-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-25T12:05:55.827Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"614f10a3e9e1e800089c7082\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"614fb966be28fd3d779f5b9e\",\n            \"insertDate\": \"2021-09-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-26T12:05:56.107Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61506224e6dcef00093cb775\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61510ae6be28fd3d77d1d738\",\n            \"insertDate\": \"2021-09-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-27T12:05:56.151Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6151b3a4f6b8b90008ee9bf6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61525c67be28fd3d7720e8ba\",\n            \"insertDate\": \"2021-09-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-28T12:05:56.029Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61530524a62cb2000939f89c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6153ade8be28fd3d777fc496\",\n            \"insertDate\": \"2021-09-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-29T12:05:56.601Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"615456a4fc974300080b224b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6154ff66be28fd3d77dbc8e7\",\n            \"insertDate\": \"2021-09-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-09-30T12:05:57.897Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6155a825e532a700098e1d96\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615650e6be28fd3d776884be\",\n            \"insertDate\": \"2021-09-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-01T12:05:56.185Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6156f9a4e6873e00099c0839\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6157a267be28fd3d77b20ebb\",\n            \"insertDate\": \"2021-10-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-02T12:05:55.866Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61584b234d7a6200092967b8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6158f3e6be28fd3d77ea6ad3\",\n            \"insertDate\": \"2021-10-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-03T12:05:55.983Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61599ca30469fe000999a618\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615a4566be28fd3d77223238\",\n            \"insertDate\": \"2021-10-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-04T12:05:56.272Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"615aee2441494c0009268029\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615b96e7be28fd3d777716e7\",\n            \"insertDate\": \"2021-10-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-05T12:05:56.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"615c3fa46dbb1f0008364807\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615ce866be28fd3d77c79107\",\n            \"insertDate\": \"2021-10-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-06T12:05:56.175Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"615d9124d2e426000869fc75\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615e39e6be28fd3d771c454a\",\n            \"insertDate\": \"2021-10-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-07T12:05:56.069Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"615ee2a4f017ec0009559a20\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"615f8b65be28fd3d777007ec\",\n            \"insertDate\": \"2021-10-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-08T12:05:56.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616034242301630009130731\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6160dce7bf65945c3fde07f1\",\n            \"insertDate\": \"2021-10-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-09T12:05:56.206Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616185a40c06900009c7ae0e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61622e66bf65945c3f1b2102\",\n            \"insertDate\": \"2021-10-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-10T12:05:55.914Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6162d723169f1d0009805b08\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61637fe6bf65945c3f58e519\",\n            \"insertDate\": \"2021-10-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-11T12:05:56.397Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616428a491505c0009344be7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6164d177bf65945c3fb866c1\",\n            \"insertDate\": \"2021-10-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-12T12:05:58.178Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61657a2610f9d70008ee6c91\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616622e8bf65945c3f57a2f0\",\n            \"insertDate\": \"2021-10-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-13T12:05:58.540Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6166cba6a18aa3000968d7a3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61677467bf65945c3fc4a6f9\",\n            \"insertDate\": \"2021-10-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-14T12:05:56.332Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61681d24414814000976c912\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6168c5e7bf65945c3f2c0b54\",\n            \"insertDate\": \"2021-10-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-15T12:05:58.510Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61696ea6e3302a000963159c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616a1766bf65945c3f959008\",\n            \"insertDate\": \"2021-10-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-16T12:05:56.051Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616ac0245c29620009073096\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616b68e6bf65945c3fdbae00\",\n            \"insertDate\": \"2021-10-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-17T12:05:56.067Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616c11a482441600099848da\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616cba66bf65945c3f1e959b\",\n            \"insertDate\": \"2021-10-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-18T12:05:58.219Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616d632691244e0009a0cd63\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616e0be7bf65945c3f875e48\",\n            \"insertDate\": \"2021-10-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-19T12:05:58.610Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"616eb4a62f679e00082e5a8b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"616f5d68bf65945c3fe829cc\",\n            \"insertDate\": \"2021-10-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-20T12:05:59.349Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61700627b1abfa0009ab37aa\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6170aee8bf65945c3f56e7e2\",\n            \"insertDate\": \"2021-10-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-21T12:05:56.493Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617157a4da378d0009227f3f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61720066bf65945c3fba854d\",\n            \"insertDate\": \"2021-10-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-22T12:05:58.626Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6172a9266056ee00095f99dd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617351e8bf65945c3f2e6a7b\",\n            \"insertDate\": \"2021-10-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-23T12:05:56.194Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6173faa4f2917900094b72a2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6174a366bf65945c3f7a38af\",\n            \"insertDate\": \"2021-10-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-24T12:05:56.830Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61754c24a8ac9b0009189a3e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6175f4e6bf65945c3fc5ff81\",\n            \"insertDate\": \"2021-10-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-25T12:05:59.076Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61769da742b367000952e41c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61774667bf65945c3f2f41da\",\n            \"insertDate\": \"2021-10-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-26T12:05:58.984Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6177ef2656b9b2000917ef04\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617897e8bf65945c3fa2c422\",\n            \"insertDate\": \"2021-10-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-27T12:05:55.077Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617940a30178a30009084f61\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6179e967bf65945c3f1a69ab\",\n            \"insertDate\": \"2021-10-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-28T12:05:59.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617a9227831ca0000934e86b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617b3ae6bf65945c3f91f02d\",\n            \"insertDate\": \"2021-10-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-29T12:05:58.165Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617be3a6509ebc000897bd6e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617c8c69bf65945c3f05c2a1\",\n            \"insertDate\": \"2021-10-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-30T12:05:56.174Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617d3524f70430000925dc9a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617ddde6bf65945c3f556910\",\n            \"insertDate\": \"2021-10-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-10-31T12:05:56.277Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617e86a4f8c0900009a4df60\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"617f2f66bf65945c3fa6d809\",\n            \"insertDate\": \"2021-10-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-01T12:05:58.412Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"617fd82690f68800087c8dcb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618080e8bf65945c3f10dfea\",\n            \"insertDate\": \"2021-11-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-02T12:05:58.849Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618129a6f8e58800082b7d2f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6181d268bf65945c3f741b9c\",\n            \"insertDate\": \"2021-11-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-03T12:05:56.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61827b2413f8d80008b1aae1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618323e9bf65945c3fdc7552\",\n            \"insertDate\": \"2021-11-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-04T12:05:56.472Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6183cca4b6dd09000869d40c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61847567bf65945c3f50e7da\",\n            \"insertDate\": \"2021-11-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-05T12:05:56.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61851e24a9fb33000867877a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6185c6e9bf65945c3fc50fcb\",\n            \"insertDate\": \"2021-11-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-06T12:05:56.115Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61866fa4848c5e00090a3dd6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61871867bf65945c3f16e485\",\n            \"insertDate\": \"2021-11-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-07T12:05:56.578Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6187c124a84087000988a921\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618869e8bf65945c3f69abba\",\n            \"insertDate\": \"2021-11-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-08T12:05:56.496Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618912a43cd9c4000837b9ff\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6189bb68bf65945c3fd2859e\",\n            \"insertDate\": \"2021-11-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-09T12:05:55.946Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618a6423455fe10008ebe101\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618b0ce8bf65945c3f48c713\",\n            \"insertDate\": \"2021-11-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-10T12:05:55.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618bb5a31bf03b0008e07137\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618c5e68bf65945c3fe700a7\",\n            \"insertDate\": \"2021-11-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-11T12:05:58.104Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618d0726e87b3b0008b8b631\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618dafe8bf65945c3f744384\",\n            \"insertDate\": \"2021-11-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-12T12:05:58.162Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618e58a6c64704000832c077\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"618f0168bf65945c3fd10e09\",\n            \"insertDate\": \"2021-11-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-13T12:05:55.508Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"618faa230e9ba5000946482e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619052e6bf65945c3f0a3f4e\",\n            \"insertDate\": \"2021-11-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-14T12:05:55.777Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6190fba3fdf5ac00084eeff4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6191a466bf65945c3f422690\",\n            \"insertDate\": \"2021-11-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-15T12:05:58.179Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61924d26395c200008a159e6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6192f5e7bf65945c3f907ecf\",\n            \"insertDate\": \"2021-11-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-16T12:05:57.927Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61939ea5b04bea00086e882e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61944768bf65945c3fe07ec9\",\n            \"insertDate\": \"2021-11-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-17T12:05:59.062Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6194f027d26eb70009818082\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619598e8bf65945c3f3b2c1d\",\n            \"insertDate\": \"2021-11-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-18T12:05:58.826Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619641a6dab70200093a1b10\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6196ea68bf65945c3f96528f\",\n            \"insertDate\": \"2021-11-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-19T12:05:57.807Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619793256ef31b0009887715\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61983be7bf65945c3fece43f\",\n            \"insertDate\": \"2021-11-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-20T12:05:55.953Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6198e4a3e2cd0d00096343b8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61998d66bf65945c3f2750a6\",\n            \"insertDate\": \"2021-11-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-21T12:05:56.353Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619a3624c6b10b000970aef5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619adee6bf65945c3f6011aa\",\n            \"insertDate\": \"2021-11-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-22T12:05:58.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619b87a6b5a919000903ad51\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619c3068bf65945c3fc3bb75\",\n            \"insertDate\": \"2021-11-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-23T12:05:58.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619cd9263809dd0008381a28\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619d81e8bf65945c3f2c3b9d\",\n            \"insertDate\": \"2021-11-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-24T12:05:58.508Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619e2aa69000890009b034b3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"619ed367bf65945c3f8f6d85\",\n            \"insertDate\": \"2021-11-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-25T11:05:58.227Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"619f6e162b8e810008c9d8ca\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a024e729fdcc95016280e7\",\n            \"insertDate\": \"2021-11-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-26T12:05:58.307Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a0cda628cd3f0008a58a39\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a1766729fdcc9501c1ef6e\",\n            \"insertDate\": \"2021-11-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-27T12:05:56.151Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a21f2476c2f00009737327\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a2c7e529fdcc9501f5c0f5\",\n            \"insertDate\": \"2021-11-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-28T12:05:56.240Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a370a40174ff0009ab67b0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a4196629fdcc95012c5981\",\n            \"insertDate\": \"2021-11-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-29T12:05:58.115Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a4c22690db3000089e4c58\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a56ae729fdcc950186a146\",\n            \"insertDate\": \"2021-11-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-11-30T11:05:59.384Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a60597c91a390008c9609f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a6bc6629fdcc9501dda741\",\n            \"insertDate\": \"2021-11-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-01T12:05:58.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a76526e5fe510008a84649\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a80de629fdcc950142e029\",\n            \"insertDate\": \"2021-12-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-02T12:05:58.351Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61a8b6a66397df00092e0251\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61a95f6729fdcc9501ab8cda\",\n            \"insertDate\": \"2021-12-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-03T12:05:58.597Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61aa08261e376b000885069e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61aab0e729fdcc95010cda45\",\n            \"insertDate\": \"2021-12-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-04T12:05:55.852Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61ab59a3731fad0008d864ef\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ac026629fdcc95014b66ea\",\n            \"insertDate\": \"2021-12-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-05T12:05:55.954Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61acab23456f7f0008623bd2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ad53e629fdcc950185ac3f\",\n            \"insertDate\": \"2021-12-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-06T12:05:58.477Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61adfca66355350009e0c1d6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61aea56729fdcc9501f44438\",\n            \"insertDate\": \"2021-12-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-07T12:05:57.949Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61af4e25a066bc0008edc9f0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61aff6e829fdcc95016e6575\",\n            \"insertDate\": \"2021-12-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-08T12:05:58.621Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b09fa605b0e7000941c7c9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b1486729fdcc9501e255e9\",\n            \"insertDate\": \"2021-12-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-09T12:05:58.925Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b1f1260b371c00099fd44a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b299e729fdcc95014d54b7\",\n            \"insertDate\": \"2021-12-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-10T12:05:58.145Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b342a6be9d720008301743\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b3eb68b74184578720417b\",\n            \"insertDate\": \"2021-12-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-11T12:05:57.472Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b49425dd17c20008486b69\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b53ce6b7418457875c028a\",\n            \"insertDate\": \"2021-12-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-12T12:05:55.643Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b5e5a34c300f00086ece08\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b68e66b741845787969aa8\",\n            \"insertDate\": \"2021-12-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-13T12:05:58.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b7372627221c000865e227\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b7dfe9b7418457871c6218\",\n            \"insertDate\": \"2021-12-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-14T12:05:58.552Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b888a661869a0009af3aed\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61b93167b7418457877dafde\",\n            \"insertDate\": \"2021-12-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-15T12:05:58.677Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61b9da26d3bacf0009062031\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ba82e7b741845787da16b1\",\n            \"insertDate\": \"2021-12-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-16T12:05:58.475Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61bb2ba6bc458d0008ba089a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61bbd467b74184578743ec48\",\n            \"insertDate\": \"2021-12-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-17T12:05:57.548Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61bc7d25a84da20008ded084\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61bd25e7b741845787b5eff8\",\n            \"insertDate\": \"2021-12-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-18T12:05:55.684Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61bdcea3031ff40008fb98a7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61be7766b741845787ed4742\",\n            \"insertDate\": \"2021-12-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-19T12:05:55.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61bf2023c071160009d20ba2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61bfc8e6b741845787258a3c\",\n            \"insertDate\": \"2021-12-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-20T12:05:58.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c071a67e7ea3000812772f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c11a68b74184578792b6d7\",\n            \"insertDate\": \"2021-12-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-21T12:05:57.609Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c1c325a2bc2e0008a2c3b2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c26be6b741845787f826b3\",\n            \"insertDate\": \"2021-12-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-22T12:05:57.771Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c314a5380aea00092d059d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c3bd68b74184578761495a\",\n            \"insertDate\": \"2021-12-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-23T12:05:59.979Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c4662759c00c00080f01dc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c50ee8b741845787c0039a\",\n            \"insertDate\": \"2021-12-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-24T12:05:58.058Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c5b7a60aea420008dc5b65\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c66068b74184578712d094\",\n            \"insertDate\": \"2021-12-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-25T12:05:55.743Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c70923103e020008c4c912\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c7b1e6b7418457874e832b\",\n            \"insertDate\": \"2021-12-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-26T12:05:56.196Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c85aa45d895700090e813a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61c90367b7418457878a4558\",\n            \"insertDate\": \"2021-12-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-27T12:05:58.531Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61c9ac260eb535000866db8f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ca54e8b741845787d5fb25\",\n            \"insertDate\": \"2021-12-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-28T12:05:58.466Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61cafda667cade000866a510\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61cba669b7418457871efdce\",\n            \"insertDate\": \"2021-12-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-29T12:05:58.161Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61cc4f26d2426c0009c720cc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ccf7e7b7418457877a24dd\",\n            \"insertDate\": \"2021-12-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-30T12:05:55.086Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61cda0a353f30a000981407b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ce4967b741845787d70d04\",\n            \"insertDate\": \"2021-12-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2021-12-31T12:05:57.799Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61cef22508ca2000090f5b78\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61cf9ae8b741845787297302\",\n            \"insertDate\": \"2021-12-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-01T12:05:55.859Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d043a37f6ca700092af4ce\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d0ec66b7418457876673ae\",\n            \"insertDate\": \"2022-01-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-02T12:05:56.451Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d19524fc47f20008780145\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d23de7b741845787a59adb\",\n            \"insertDate\": \"2022-01-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-03T12:05:57.162Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d2e6a5dedc1e00087171cd\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d38f68b741845787f1f4e6\",\n            \"insertDate\": \"2022-01-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-04T12:05:57.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d438257872d20009a0cf4b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d4e0e7b741845787594fb8\",\n            \"insertDate\": \"2022-01-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-05T12:05:58.779Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d589a62dfbea0008205b56\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d63268b741845787d2bee6\",\n            \"insertDate\": \"2022-01-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-06T12:05:58.159Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d6db2615af47000a3c8a2c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d783e8b74184578750cf1d\",\n            \"insertDate\": \"2022-01-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-07T12:05:58.694Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d82ca6a767090008767c6b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61d8d566b741845787c78261\",\n            \"insertDate\": \"2022-01-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-08T12:05:55.936Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61d97e2391033b0008bc85fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61da26e8b7418457870cab43\",\n            \"insertDate\": \"2022-01-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-09T12:05:55.742Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61dacfa31f6aae000925f852\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61db7866b74184578754662f\",\n            \"insertDate\": \"2022-01-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-10T12:05:57.282Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61dc2125a139380009be6df6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61dcc9e8b741845787c4e470\",\n            \"insertDate\": \"2022-01-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-11T12:05:58.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61dd72a64a17290009f75e86\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61de1b87b741845787262113\",\n            \"insertDate\": \"2022-01-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-12T12:05:58.351Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61dec426f2689a0009558415\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61df6cf7ff22e7e475678560\",\n            \"insertDate\": \"2022-01-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-13T12:05:57.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e015a5c3c5fe000985733e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e0be67ff22e7e475e0b6e4\",\n            \"insertDate\": \"2022-01-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-14T12:05:58.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e167267d35ca0009c79ce4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e20fe9ff22e7e4753c0dfc\",\n            \"insertDate\": \"2022-01-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-15T12:05:55.515Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e2b8a3d7719b0009391173\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e36166ff22e7e47581e5f4\",\n            \"insertDate\": \"2022-01-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-16T12:05:56.223Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e40a247f91c300099398fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e4b2e8ff22e7e475cf7f12\",\n            \"insertDate\": \"2022-01-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-17T12:05:58.821Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e55ba61ee194000938f93e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e60467ff22e7e47543fcf7\",\n            \"insertDate\": \"2022-01-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-18T12:05:58.712Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e6ad26dab4500009ab774c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e755e8ff22e7e475a8684a\",\n            \"insertDate\": \"2022-01-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-19T12:05:58.283Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e7fea61936b700093f1325\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e8a767ff22e7e475194446\",\n            \"insertDate\": \"2022-01-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-20T12:05:58.993Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61e9502606c97700092073b0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61e9f8eaff22e7e4759eba84\",\n            \"insertDate\": \"2022-01-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-21T12:05:56.979Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61eaa1a4b712350009ff61da\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61eb4a68ff22e7e47507a9f4\",\n            \"insertDate\": \"2022-01-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-22T12:05:56.657Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61ebf3245aaadf0009e229a8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ec9be7ff22e7e4754eab86\",\n            \"insertDate\": \"2022-01-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-23T12:05:56.572Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61ed44a433c73f00091e1d80\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61eded67ff22e7e47595dd21\",\n            \"insertDate\": \"2022-01-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-24T12:05:57.998Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61ee9625742dfd0009e1981e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ef3ee6ff22e7e47508c0be\",\n            \"insertDate\": \"2022-01-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-25T12:05:58.079Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61efe7a6efb43b00099664e1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f09067ff22e7e4757484e4\",\n            \"insertDate\": \"2022-01-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-26T12:05:56.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f139247f0ad60009cc9a1b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f1e1e9ff22e7e475cbb57b\",\n            \"insertDate\": \"2022-01-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-27T12:05:59.132Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f28aa77a32dc0009ab1707\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f33367ff22e7e4752b7e49\",\n            \"insertDate\": \"2022-01-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-28T12:05:58.191Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f3dc26c5bdd200093efe62\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f484e8ff22e7e47589b9a6\",\n            \"insertDate\": \"2022-01-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-29T12:05:56.521Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f52da44c6a8b0009736fcc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f5d666ff22e7e475d0c6d3\",\n            \"insertDate\": \"2022-01-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-30T12:05:56.087Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f67f24dbdd820009c0b509\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f727e7ff22e7e475184cd0\",\n            \"insertDate\": \"2022-01-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-01-31T12:05:58.333Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f7d0a67e6a1100095ccc39\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f87966ff22e7e4756f2e2b\",\n            \"insertDate\": \"2022-01-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-01T12:05:59.346Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61f922279943ab0009028287\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61f9cae9ff22e7e475d1dee2\",\n            \"insertDate\": \"2022-02-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-02T12:05:56.127Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61fa73a4e3d2ed0009596b6f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61fb1b68ff22e7e475373da2\",\n            \"insertDate\": \"2022-02-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-03T12:15:22.972Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61fbc75a4890a80009934dcf\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61fc6ce76edd2bde8884d15b\",\n            \"insertDate\": \"2022-02-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-04T12:15:23.925Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61fd18dbf925990009b7688a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61fdbe696edd2bde88f1f360\",\n            \"insertDate\": \"2022-02-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-05T12:15:21.309Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61fe6a59c7ff35000901572c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"61ff0fe86edd2bde883624bf\",\n            \"insertDate\": \"2022-02-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-06T12:15:21.260Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"61ffbbd9deda10000954de65\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620061696edd2bde8877524f\",\n            \"insertDate\": \"2022-02-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-07T12:15:23.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62010d5bc34f9300099593ac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6201b2e96edd2bde88dfd2b2\",\n            \"insertDate\": \"2022-02-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-08T12:15:23.209Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62025edb4edf610009b5f2e2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6203046b6edd2bde883e8a42\",\n            \"insertDate\": \"2022-02-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-09T12:15:23.624Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6203b05b276d060009a92333\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620455ea6edd2bde88adf53d\",\n            \"insertDate\": \"2022-02-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-10T12:15:24.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620501dcd2357800097484ba\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6205a7696edd2bde881c5c1f\",\n            \"insertDate\": \"2022-02-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-11T12:15:23.285Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6206535b2469fe0009a135d1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6206f8e96edd2bde888b5e0d\",\n            \"insertDate\": \"2022-02-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-12T12:15:21.023Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6207a4d996391f0009ad7787\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62084a6a6edd2bde88cf3646\",\n            \"insertDate\": \"2022-02-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-13T12:15:20.865Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6208f658aa005b0009988ab2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62099be86edd2bde8816e263\",\n            \"insertDate\": \"2022-02-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-14T12:15:24.186Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620a47dc684b160009a3b7c7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620aed6b6edd2bde8880f006\",\n            \"insertDate\": \"2022-02-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-15T12:15:23.989Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620b995b122f010009b4619c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620c3eea6edd2bde88f3f11e\",\n            \"insertDate\": \"2022-02-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-16T12:15:24.144Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620ceadc3557fb00090ee689\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620d906a6edd2bde88a86239\",\n            \"insertDate\": \"2022-02-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-17T12:15:24.024Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620e3c5c0ae7cb0009637c93\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"620ee1e76edd2bde88252246\",\n            \"insertDate\": \"2022-02-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-18T12:15:23.677Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"620f8ddb7dca9600093b92e8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621033696edd2bde889a5440\",\n            \"insertDate\": \"2022-02-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-19T12:15:21.010Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6210df59b4c02f0009004d60\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621184e86edd2bde88dd9cb8\",\n            \"insertDate\": \"2022-02-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-20T12:15:21.370Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621230d9cc30080009135771\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6212d6696edd2bde882f1ae0\",\n            \"insertDate\": \"2022-02-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-21T12:15:21.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6213825927bac800090e6f04\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621427ea6edd2bde88a19521\",\n            \"insertDate\": \"2022-02-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-22T12:15:21.807Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6214d3d9f73517000931b1ed\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6215796a6edd2bde8814b8c8\",\n            \"insertDate\": \"2022-02-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-23T12:15:21.585Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62162559e95db90009cc1835\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6216caea6edd2bde888aa391\",\n            \"insertDate\": \"2022-02-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-24T12:15:22.327Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621776da9b558f000926f384\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62181c6a6edd2bde88073923\",\n            \"insertDate\": \"2022-02-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-25T12:15:22.444Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6218c85acede8d0009bef2ac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62196de96edd2bde8886c253\",\n            \"insertDate\": \"2022-02-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-26T12:15:21.322Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621a19d9fb140b0009fa69b7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621abf6a6edd2bde88ca0d5b\",\n            \"insertDate\": \"2022-02-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-27T12:15:21.912Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621b6b59409ae800094cd094\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621c10ea6edd2bde880c044b\",\n            \"insertDate\": \"2022-02-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-02-28T12:15:21.173Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621cbcd9fadcf5000973d91f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621d626b6edd2bde88842ad7\",\n            \"insertDate\": \"2022-02-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-01T12:15:23.043Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621e0e5bd0429600092f04a3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"621eb3eb0d1f84f735a6d779\",\n            \"insertDate\": \"2022-03-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-02T12:15:21.154Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"621f5fd93595290009fcd461\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622005680d1f84f7351d3726\",\n            \"insertDate\": \"2022-03-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-03T12:15:20.897Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6220b15850bed2000934f2b9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622156e80d1f84f735997d93\",\n            \"insertDate\": \"2022-03-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-04T12:15:21.420Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622202d9b9ec6b0009f9ee3a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6222a86a0d1f84f735066178\",\n            \"insertDate\": \"2022-03-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-05T12:15:21.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622354591ad5f800091b49c3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6223f9e90d1f84f7354a3115\",\n            \"insertDate\": \"2022-03-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-06T12:15:21.821Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6224a5d9670d8d000941217c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62254b6a0d1f84f7358ee467\",\n            \"insertDate\": \"2022-03-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-07T12:15:21.900Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6225f75956507900096515f7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62269ceb0d1f84f73501c64e\",\n            \"insertDate\": \"2022-03-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-08T12:15:21.065Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622748d92a79a300093f3d42\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6227ee6bd9cd9785757bcd1c\",\n            \"insertDate\": \"2022-03-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-09T12:15:21.734Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62289a59d975f70009ccff8a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62293fead9cd978575da92a6\",\n            \"insertDate\": \"2022-03-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-10T12:15:21.699Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6229ebd96ceef30009b40e3a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622a9169d9cd9785753c8f50\",\n            \"insertDate\": \"2022-03-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-11T12:15:22.080Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622b3d5ae33d180009abb54a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622be2e9d9cd978575a57fc7\",\n            \"insertDate\": \"2022-03-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-12T12:15:22.180Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622c8eda3a467300096d880b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622d3469d9cd978575e841ac\",\n            \"insertDate\": \"2022-03-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-13T12:15:21.312Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622de0595948240009ca0b18\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622e85e9d9cd9785752af33b\",\n            \"insertDate\": \"2022-03-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-14T12:15:22.934Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"622f31dac5ad620009c7fd47\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"622fd76bd9cd978575942803\",\n            \"insertDate\": \"2022-03-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-15T12:15:21.234Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62308359c0ed1f0009842e8b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623128e9d9cd978575f5fa2f\",\n            \"insertDate\": \"2022-03-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-16T12:15:22.108Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6231d4da2ae7ef0009ff1b93\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62327a6bd9cd9785757227b4\",\n            \"insertDate\": \"2022-03-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-17T12:15:23.492Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 6\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6233265b704ad0000925a102\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6233cbe8d9cd978575d2ca18\",\n            \"insertDate\": \"2022-03-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-18T12:15:18.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"623477d6a49ad500092562c6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62351d69d9cd97857539e174\",\n            \"insertDate\": \"2022-03-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-19T12:15:21.559Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6235c959bf225b0009c95534\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62366ee9d9cd978575819a34\",\n            \"insertDate\": \"2022-03-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-20T12:15:21.453Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62371ad9592bb50009c77491\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6237c069d9cd978575c8c8e0\",\n            \"insertDate\": \"2022-03-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-21T12:15:22.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62386c5aaaebe70009c6415f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623911e9d9cd97857536cf72\",\n            \"insertDate\": \"2022-03-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-22T12:15:21.521Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6239bdd9c86d2b000931fe89\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623a636ad9cd978575a1e268\",\n            \"insertDate\": \"2022-03-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-23T12:15:21.053Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"623b0f59c0e19b0009da1a11\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623bb4e9d9cd9785750699e4\",\n            \"insertDate\": \"2022-03-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-24T12:15:23.678Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"623c60dbfb80ee000907b780\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623d0669d9cd9785755e51dc\",\n            \"insertDate\": \"2022-03-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-25T12:15:21.618Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"623db259f50c1000095eed9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623e57ead9cd978575b7543f\",\n            \"insertDate\": \"2022-03-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-26T12:15:21.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"623f03d91f89c700093fbf46\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"623fa96ad9cd978575023887\",\n            \"insertDate\": \"2022-03-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-27T12:15:21.988Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624055599494f4000958d08c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6240fae9d9cd978575498bc3\",\n            \"insertDate\": \"2022-03-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-28T12:15:22.046Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6241a6daa18fc00009d5b0d8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62424c6bd9cd978575a4195b\",\n            \"insertDate\": \"2022-03-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-29T12:15:21.541Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6242f8595727bc000929fa49\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62439de9d9cd97857529f9f1\",\n            \"insertDate\": \"2022-03-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-30T12:15:22.806Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 7\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624449da2f83360009dd5572\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6244ef69d9cd9785759649b0\",\n            \"insertDate\": \"2022-03-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-03-31T12:15:22.947Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62459b5a824f019116507985\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624640e9d9cd978575f89916\",\n            \"insertDate\": \"2022-03-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-01T12:15:22.366Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6246ecdaf5a4c88fc3c3024f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6247926cd9cd978575670a49\",\n            \"insertDate\": \"2022-04-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-02T12:15:21.886Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62483e591ca4c546826249dc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6248e3e9d9cd978575a8ef15\",\n            \"insertDate\": \"2022-04-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-03T12:15:23.721Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62498fdbde233afe286a4f59\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624a3569d9cd978575e76b86\",\n            \"insertDate\": \"2022-04-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-04T12:15:21.885Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624ae159343755432d2568d3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624b86e9d9cd97857559e2c6\",\n            \"insertDate\": \"2022-04-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-05T11:15:41.696Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624c24ddd043ed6f9cb0a365\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624cd86ad9cd97857511a403\",\n            \"insertDate\": \"2022-04-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-06T11:15:39.953Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624d765b95c5fbaa373f9811\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624e29e8d1fe20ca91e03900\",\n            \"insertDate\": \"2022-04-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-07T11:15:38.335Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"624ec7da7abf8e38829c369f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"624f7b68d1fe20ca916a456b\",\n            \"insertDate\": \"2022-04-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-08T11:15:39.114Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6250195be93431ed4039a08d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6250cce8d1fe20ca91d6c77a\",\n            \"insertDate\": \"2022-04-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-09T11:15:38.978Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62516ada8bb4e429ff6ec4c3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62521e69d1fe20ca91100abe\",\n            \"insertDate\": \"2022-04-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-10T11:15:39.470Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6252bc5bcac1d5ae91ba8f19\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62536fe9d1fe20ca914878ed\",\n            \"insertDate\": \"2022-04-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-11T11:15:39.377Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62540ddb15276e5806b27016\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6254c169d1fe20ca91cd5bab\",\n            \"insertDate\": \"2022-04-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-12T11:15:39.304Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62555f5bff94db129d558bd0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625612e9d1fe20ca9188f95c\",\n            \"insertDate\": \"2022-04-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-13T11:15:38.832Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6256b0dac248f7c0662ccc52\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62576468d1fe20ca91091ad4\",\n            \"insertDate\": \"2022-04-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-14T11:15:38.608Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6258025ad5c340fd36de6573\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6258b5e8d1fe20ca91a10ed0\",\n            \"insertDate\": \"2022-04-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-15T11:15:38.296Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625953da3aa0b8dcb99a0b92\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625a0769d1fe20ca91166ea2\",\n            \"insertDate\": \"2022-04-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-16T11:15:38.712Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625aa55ab129b6edb39159fa\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625b58e9d1fe20ca9156f44d\",\n            \"insertDate\": \"2022-04-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-17T11:15:39.105Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625bf6db6383ba3994893583\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625caa69d1fe20ca9197d4b6\",\n            \"insertDate\": \"2022-04-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-18T11:15:39.273Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625d485b858c0ace6c88a3a5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625dfbe9d1fe20ca91102aac\",\n            \"insertDate\": \"2022-04-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-19T11:15:39.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625e99db7719127575c69f14\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"625f4d68d1fe20ca91a9f45b\",\n            \"insertDate\": \"2022-04-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-20T11:15:39.545Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"625feb5b5dc9585808183a4a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62609ee90371414b29c298e6\",\n            \"insertDate\": \"2022-04-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-21T11:15:39.093Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62613cdb923264b0f0250205\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6261f06a57af393902098f14\",\n            \"insertDate\": \"2022-04-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-22T11:15:39.414Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62628e5b1c09bc5d4aab3010\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626341e79524b9434b78ba2d\",\n            \"insertDate\": \"2022-04-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-23T11:15:39.378Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6263dfdb52bd1a55cba61bac\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626493699524b9434bb7b934\",\n            \"insertDate\": \"2022-04-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-24T11:15:38.759Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6265315aa62b55a74b99e569\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6265e4e99524b9434bf4d2fe\",\n            \"insertDate\": \"2022-04-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-25T11:15:38.479Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626682da3c84c3f88dba210a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626736689524b9434b3cb7c9\",\n            \"insertDate\": \"2022-04-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-26T11:15:39.653Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6267d45b046372258446607a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626887e89524b9434b9eb496\",\n            \"insertDate\": \"2022-04-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-27T11:15:39.003Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626925db7b3d997a0542741d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6269d9699524b9434b142117\",\n            \"insertDate\": \"2022-04-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-28T11:15:26.739Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626a774e60afdf443bc16407\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626b2ae59524b9434b8a4ac3\",\n            \"insertDate\": \"2022-04-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-29T11:15:27.466Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626bc8cf17a14ed77a5361f5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626c7c689524b9434bfea684\",\n            \"insertDate\": \"2022-04-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-04-30T11:15:27.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626d1a4fe9c0c9fabf930ff6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626dcde79524b9434b3f50a5\",\n            \"insertDate\": \"2022-04-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-01T11:15:26.489Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626e6bce06910db4f0d66fc4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"626f1f679524b9434b95a58e\",\n            \"insertDate\": \"2022-05-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-02T11:15:27.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"626fbd4fef36eec975978677\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627070e89524b9434b0a4ae4\",\n            \"insertDate\": \"2022-05-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-03T11:15:27.911Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62710ecf2fc95c5702b3e091\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6271c2699524b9434b90b22a\",\n            \"insertDate\": \"2022-05-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-04T11:15:27.104Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6272604f955718168827b657\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627313e99524b9434bf24a25\",\n            \"insertDate\": \"2022-05-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-05T11:15:27.390Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6273b1cfb09ee0c4d82d60b1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627465679524b9434b6f0411\",\n            \"insertDate\": \"2022-05-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-06T11:15:27.258Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6275034f7b82c8c4584841b8\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6275b6e99524b9434beb1021\",\n            \"insertDate\": \"2022-05-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-07T11:15:27.204Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627654cf48c309fdf4a6baa3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627708679524b9434b29a6bc\",\n            \"insertDate\": \"2022-05-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-08T11:15:27.072Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6277a64fafe1d5d182583d31\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627859e89524b9434b6838fd\",\n            \"insertDate\": \"2022-05-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-09T11:15:28.728Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6278f7d032ab7b9fd95ab2bb\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6279ab689524b9434bf27abd\",\n            \"insertDate\": \"2022-05-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-10T11:15:27.262Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627a494fc87b50363a5baf25\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627afce789162de93290b772\",\n            \"insertDate\": \"2022-05-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-11T11:15:27.264Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627b9acf7c41177f5c80d92a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627c4e68384e2841480263bd\",\n            \"insertDate\": \"2022-05-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-12T11:15:26.447Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627cec4e9ad510391b23a42b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627d9fe726e54809b53a57d8\",\n            \"insertDate\": \"2022-05-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-13T11:15:28.122Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627e3dd017ac268b4f169919\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"627ef16726e54809b5c6751d\",\n            \"insertDate\": \"2022-05-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-14T11:15:29.126Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"627f8f5164d44cc46272afe0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628042e726e54809b5269d00\",\n            \"insertDate\": \"2022-05-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-15T11:15:29.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6280e0d1db7135037b030160\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6281946726e54809b5859e96\",\n            \"insertDate\": \"2022-05-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-16T11:15:24.220Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6282324cbc091191ef69ec7c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6282e5e726e54809b516d85f\",\n            \"insertDate\": \"2022-05-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-17T11:15:26.925Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628383ce8dad9b5e79b01f0d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6284376bc326525827534392\",\n            \"insertDate\": \"2022-05-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-18T11:15:28.131Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6284d5508cd2897066be1bb5\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628588e7f5000a798f5323aa\",\n            \"insertDate\": \"2022-05-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-19T11:15:27.633Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628626cfec7ee1c0c06e99d9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6286da66f5000a798fdebb52\",\n            \"insertDate\": \"2022-05-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-20T11:15:26.872Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6287784e4ddad95a056a4724\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62882be8f5000a798f74690b\",\n            \"insertDate\": \"2022-05-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-21T11:15:27.206Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6288c9cfccfddde2492ac142\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62897d67f5000a798fca5932\",\n            \"insertDate\": \"2022-05-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-22T11:15:26.776Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628a1b4ed81ac34dd06e8632\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628aceea3661078878d93e45\",\n            \"insertDate\": \"2022-05-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-23T11:15:26.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628b6cce18d00ebfa6b1efb4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628c20681c66b3c7fca153a6\",\n            \"insertDate\": \"2022-05-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-24T11:15:28.391Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628cbe50032319e42c464535\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628d71e71c66b3c7fc42cc09\",\n            \"insertDate\": \"2022-05-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-25T11:15:27.327Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628e0fcfff7abfabf97ecb1b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"628ec3681c66b3c7fce856c3\",\n            \"insertDate\": \"2022-05-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-26T11:15:26.788Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"628f614edcaf13106b186908\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629014e71c66b3c7fcb6efc6\",\n            \"insertDate\": \"2022-05-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-27T11:15:26.917Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6290b2ce22843d28099da07e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629166671c66b3c7fca13120\",\n            \"insertDate\": \"2022-05-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-28T11:15:27.071Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6292044ff1922adc535803db\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6292b7e61c66b3c7fc2fcb69\",\n            \"insertDate\": \"2022-05-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-29T11:15:26.450Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"629355cebd625b92dfbf9d5e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629409671c66b3c7fcbe2b8b\",\n            \"insertDate\": \"2022-05-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-30T11:15:28.404Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6294a7508d019f3f4620ffda\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62955ae71c66b3c7fc6ed2c5\",\n            \"insertDate\": \"2022-05-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-05-31T11:15:27.019Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6295f8cf6e66638c5846fba4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6296ac671c66b3c7fc12afbd\",\n            \"insertDate\": \"2022-05-31T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-01T11:15:26.560Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62974a4efb9b56049c4bf445\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"6297fde71c66b3c7fcd0ac4d\",\n            \"insertDate\": \"2022-06-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-02T11:15:26.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62989bced1872744c902203c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62994f641c66b3c7fc650b73\",\n            \"insertDate\": \"2022-06-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-03T11:15:26.682Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"6299ed4eb5022e1a2ce082d0\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629aa0e71c66b3c7fcf52e83\",\n            \"insertDate\": \"2022-06-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-04T11:15:26.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"629b3ece5a3ab944d810dc22\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629bf2661c66b3c7fc755eb5\",\n            \"insertDate\": \"2022-06-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-05T11:15:26.334Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"629c904e712117ccf4de8c82\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629d43e71c66b3c7fcf608f2\",\n            \"insertDate\": \"2022-06-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-06T11:15:26.730Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"629de1cef3bbe208bff42308\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629e95681c66b3c7fc9980b4\",\n            \"insertDate\": \"2022-06-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-07T11:15:28.539Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"629f3350c446ef3deb8420d4\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"629fe6e81c66b3c7fc44e8d0\",\n            \"insertDate\": \"2022-06-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-08T11:15:27.748Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a084cfb6c130b81a70e34b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a138671c66b3c7fc0a17c3\",\n            \"insertDate\": \"2022-06-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-09T11:15:28.441Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a1d650ba5e3b017b088a4f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a289e51c66b3c7fcaedd81\",\n            \"insertDate\": \"2022-06-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-10T11:15:28.676Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a327d07de0e86bdf3a8cdc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a3db671c66b3c7fc590a60\",\n            \"insertDate\": \"2022-06-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-11T11:15:26.716Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a4794e1d4d79fbbbd484ba\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a52ce71c66b3c7fcd60032\",\n            \"insertDate\": \"2022-06-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-12T11:15:26.394Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a5cace1fb2131e293c0b70\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a67e661c66b3c7fc4b2344\",\n            \"insertDate\": \"2022-06-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-13T11:15:28.311Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a71c502c704c307a2cd8e6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a7cfe61c66b3c7fceba3bb\",\n            \"insertDate\": \"2022-06-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-14T11:15:27.858Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a86dcfab5efd99ff8c6896\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62a921681c66b3c7fc917341\",\n            \"insertDate\": \"2022-06-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-15T11:15:28.177Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62a9bf50f7e873c29b6175e3\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62aa72e81c66b3c7fc6773f5\",\n            \"insertDate\": \"2022-06-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-16T11:15:27.555Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62ab10cf1efdd068aad8d02b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62abc4666cb5915245dcfbfa\",\n            \"insertDate\": \"2022-06-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-17T11:15:27.842Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62ac624f8613e05ec225454a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ad15ea70f4b7d69247c3a2\",\n            \"insertDate\": \"2022-06-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-18T11:15:26.480Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62adb3cebcaf2a2704db9874\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ae676736a01cdfc11c30ea\",\n            \"insertDate\": \"2022-06-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-19T11:15:26.905Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62af054ef642950e65663d9e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62afb8e67335bfa1f31e5274\",\n            \"insertDate\": \"2022-06-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-20T11:15:28.240Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b056d0141611b3eca94a54\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b10a677335bfa1f3e8dfc5\",\n            \"insertDate\": \"2022-06-20T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-21T11:15:28.175Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b1a850d8d82aea334f794e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b25beac5840b3cf2b6e2f3\",\n            \"insertDate\": \"2022-06-21T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-22T11:15:28.011Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b2f9d02e82e7d27f0d596a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b3ad6947cf5d302459c226\",\n            \"insertDate\": \"2022-06-22T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-23T11:15:28.840Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b44b5068f93caaee563f5d\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b4fee547cf5d30242adb78\",\n            \"insertDate\": \"2022-06-23T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-24T11:15:28.296Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b59cd0843973fd0451c1fc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b6506747cf5d3024f246b1\",\n            \"insertDate\": \"2022-06-24T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-25T11:15:26.550Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b6ee4e6d6ba0d2dbdfd85b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b7a1e647cf5d30246e9be8\",\n            \"insertDate\": \"2022-06-25T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-26T11:15:26.866Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b83fcee4b6df27cb11ba9b\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62b8f36647cf5d3024ebf3dd\",\n            \"insertDate\": \"2022-06-26T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-27T11:15:28.041Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62b99150709425bfde4745a1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ba44e847cf5d3024a8719b\",\n            \"insertDate\": \"2022-06-27T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-28T11:15:28.057Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62bae2d0042679da127a09ae\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62bb966647cf5d30246dc918\",\n            \"insertDate\": \"2022-06-28T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-29T11:15:28.204Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62bc3450af7a41b5123d21a7\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62bce7e747cf5d302440af92\",\n            \"insertDate\": \"2022-06-29T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-06-30T11:15:27.836Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62bd85cf505df1ba905f5ce6\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62be396547cf5d3024f2ac31\",\n            \"insertDate\": \"2022-06-30T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-01T11:15:26.780Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62bed74edb917b3d8b9a3ddc\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62bf8ae747cf5d30249c62b9\",\n            \"insertDate\": \"2022-07-01T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-02T11:15:27.306Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c028cfe4e5aa225d57794c\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c0dc6747cf5d302419babd\",\n            \"insertDate\": \"2022-07-02T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-03T11:15:26.775Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c17a4eb102aab2e2f4f53e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c22de747cf5d30249a3bfa\",\n            \"insertDate\": \"2022-07-03T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-04T11:15:26.662Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c2cbce584d58109fc5605f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c37f6747cf5d302451a9d2\",\n            \"insertDate\": \"2022-07-04T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-05T11:15:28.007Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c41d505236f9a75ab36c0a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c4d0e747cf5d3024f0c1b3\",\n            \"insertDate\": \"2022-07-05T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-06T11:15:28.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c56ed0bdded932d6975363\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c6226847cf5d3024b3b5da\",\n            \"insertDate\": \"2022-07-06T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-07T11:15:28.363Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c6c050485bb0962c1164c2\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c773e447cf5d30245e9283\",\n            \"insertDate\": \"2022-07-07T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-08T11:15:28.968Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c811d077c190d007f9072e\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62c8c56747cf5d30240a899b\",\n            \"insertDate\": \"2022-07-08T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-09T11:15:26.816Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62c9634e6c8feaf37a185f25\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ca16e7481f2efa042c1e7f\",\n            \"insertDate\": \"2022-07-09T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-10T11:15:26.142Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62cab4cebe205b8596959c30\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62cb68663479c9257546bf52\",\n            \"insertDate\": \"2022-07-10T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-11T11:15:28.428Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62cc0650e4a7aebb82937095\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ccb9e78a2b91513b217618\",\n            \"insertDate\": \"2022-07-11T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-12T11:15:28.754Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62cd57d05a67a2d29a2608c9\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62ce0b678a2b91513b00ed5c\",\n            \"insertDate\": \"2022-07-12T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-13T11:15:28.386Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62cea950f18eb2170f22fa52\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62cf5ce88a2b91513ba46150\",\n            \"insertDate\": \"2022-07-13T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-14T11:15:28.497Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62cffad0ac67ed3c910c636a\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d0ae668a2b91513b4fc67c\",\n            \"insertDate\": \"2022-07-14T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-15T11:15:28.158Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d14c508afc510791646442\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d1ffe88a2b91513b1f01aa\",\n            \"insertDate\": \"2022-07-15T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-16T11:15:25.992Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d29dcd2915754d0507e857\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d351678a2b91513bae0244\",\n            \"insertDate\": \"2022-07-16T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-17T11:15:26.393Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d3ef4e622efc46265f019f\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d4a2e68a2b91513b410400\",\n            \"insertDate\": \"2022-07-17T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-18T11:15:28.676Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d540d00a9a6b1b52493c69\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d5f4688a2b91513b1e437a\",\n            \"insertDate\": \"2022-07-18T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-19T11:15:28.628Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d692501ecace6a1a83f7e1\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        },\n        {\n            \"id\": \"62d745e68a2b91513bc6e548\",\n            \"insertDate\": \"2022-07-19T00:00:00.000Z\",\n            \"ask\": 196.2,\n            \"auditDetails\": {\n                \"application\": \"InstrumentProcessor\",\n                \"updateDate\": \"2022-07-20T11:15:28.968Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 8\n            },\n            \"bid\": 196.2,\n            \"firmId\": \"SECCL\",\n            \"mid\": 196.2,\n            \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n            \"updateId\": \"62d7e3d0021e55f16e183363\",\n            \"yield\": 0.0152,\n            \"assetId\": \"275F1\",\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.0001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Fund\"\n        }\n    ]\n}"}],"_postman_id":"da201a5e-51fa-428f-afa3-0c84a7e8758b"}],"id":"adad6019-2be5-4bfd-aa47-23e70185a4e8","description":"<p>Prices of all the assets held in Seccl's Master Asset Universe are available via the API.</p>\n<p>We update prices at 3:45am every business day, with yesterday's close of business prices. We recommend that you retrieve daily asset prices after 4:00am.</p>\n<p><strong>Note: asset prices are also available via the</strong> <strong><code>asset</code></strong> <strong>endpoint. However, the</strong> <strong><code>price</code></strong> <strong>endpoint is more optimised so should be used for the daily job.</strong></p>\n<p><strong>Endpoints</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/ price\n\n</code></pre><h3 id=\"the-price-object\">The price object</h3>\n<p>This is an object representing the price data of an asset. You can retrieve the price object of an asset to view daily pricing.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the price record</p>\n<hr />\n<p><code>insertDate</code> string</p>\n<p>The date the price was added to Seccl's system</p>\n<hr />\n<p><code>priceDate</code> string</p>\n<p>The date of the price</p>\n<hr />\n<p><code>bid</code> float</p>\n<p>The maximum price that a buyer is willing to pay for an asset</p>\n<hr />\n<p><code>ask</code> float</p>\n<p>The minimum price that a seller is willing to pay for an asset</p>\n<hr />\n<p><code>mid</code> float</p>\n<p>The midpoint between the bid and ask prices</p>\n<hr />\n<p><code>assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>quoteUnit</code> integer</p>\n<p>This indicates the number of units for the quote or price. For example, if the asset is £10 and the quoteUnit is 1, then £10 is the quote for a single unit. If the asset is £100 and the quoteUnit is 100, then £100 is the quote for 100 units</p>\n<hr />\n<p><code>minimumTransferUnit</code> float</p>\n<p>The number of decimal places that the asset can be held. For example, 0.0001 means the asset can be held to 4 decimal places. This is asset specific and varies between a value of 0.0001 and 1</p>\n<hr />\n<p><code>currency</code> enum value</p>\n<p>The currency the asset trades in</p>\n<hr />\n<p><code>exchangeRates</code> array</p>\n<p>This details the exchange rate of the asset, where the currency is non-GBP</p>\n<hr />\n<p><code>instrumentType</code> enum value</p>\n<p>The type of instrument</p>\n<hr />\n","_postman_id":"adad6019-2be5-4bfd-aa47-23e70185a4e8"}],"id":"aab435d1-5676-4e06-8ed0-2a781322e9e6","description":"<p>Seccl has \"whole of market\" access to funds, direct equities, investment trusts and exchange-traded instruments.</p>\n<p>Assets are made available in Seccl's Master Universe. As the platform operator, you can select a sub-section of assets to make available to your investors and users.</p>\n<p><strong>Please note: the master universe asset list in the staging environment differs to the master universe asset list in the production environment.</strong></p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"15c5d94a-3044-4102-9bd1-790296922637"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"872f9a6e-3f59-4f9a-a402-73010ae339d1"}}],"_postman_id":"aab435d1-5676-4e06-8ed0-2a781322e9e6"},{"name":"Fees","item":[{"name":"Seccl fee run","item":[],"id":"6d2385ca-cefc-442a-9623-3b8c7c6fb258","description":"<p>Seccl has the ability to calculate and instruct transactions for various fee types.</p>\n<p>Ongoing fees taken by Seccl are calculated on a monthly basis using the daily average balance.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Sum for the calendar month ((daily_account_balance) / 365 * (fee_amount))\n\n</code></pre><p>Where an investment account has insufficient uninvested cash to cover the fee amount, a sell-down is instructed, and the fee amount is taken when the order executes. The sell-down may include a 10% cash buffer to take into account market movements.</p>\n<p>These are the fees we can facilitate:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Fee type</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Platform fee</td>\n<td>% amount with tiering set at the node level</td>\n</tr>\n<tr>\n<td>Discretionary management fee</td>\n<td>% amount set at the model level</td>\n</tr>\n<tr>\n<td>Adviser fee</td>\n<td>% amount with tiering set at the investment account level</td>\n</tr>\n<tr>\n<td>Subscription fee</td>\n<td>£ amount with tiering set at the node level</td>\n</tr>\n<tr>\n<td>Product fee</td>\n<td>% amount with tiering set at the node level</td>\n</tr>\n</tbody>\n</table>\n</div><p>If you're looking for a specific fee structure that isn't detailed below, please refer to the <strong>DIY fee run</strong> section**.**</p>\n","_postman_id":"6d2385ca-cefc-442a-9623-3b8c7c6fb258"},{"name":"DIY fee run","item":[{"name":"Retrieve portfolio value","id":"63740c42-2565-4805-8a14-a50dc38a0ac6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}","description":"<p>This command retrieves the portfolio value for the client.</p>\n<p>This value should be saved down to your database on a daily basis and used to calculate the fee amount using the above logic.</p>\n","urlObject":{"path":["portfolio","summary","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63740c42-2565-4805-8a14-a50dc38a0ac6"},{"name":"Retrieve account value","id":"bfe2ba4e-94f9-4dde-9b85-3a8c0f5578ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/account/summary/{{firmId}}/{{accountId}}","description":"<p>This retrieves the investment account value.</p>\n<p>This value should be saved down to your database on a daily basis and used to calculate the fee amount using the above logic.</p>\n","urlObject":{"path":["account","summary","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bfe2ba4e-94f9-4dde-9b85-3a8c0f5578ab"},{"name":"Create a fee transaction","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"025aebfc-10b9-4d77-9283-7f798a916873"}}],"id":"993a2a84-affd-4789-bc87-d30ea22208e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Platform Fee\",\n            \"movementType\": \"Out\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates a single fee transactions</p>\n<p>Returns a <code>linkId</code> which can be queried to return the individual fee transaction</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the investment account where the fee should be taken</p>\n<hr />\n<p><code>transactionType</code> enum value <strong>Required</strong><br />The type of transaction taking place. This should be <code>Cash</code> for fee transactions</p>\n<hr />\n<p><code>transactionSubType</code> enum value <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Platform Fee</code></td>\n<td>Charge for platform services</td>\n</tr>\n<tr>\n<td><code>Adviser Fee</code></td>\n<td>Charge for adviser services</td>\n</tr>\n<tr>\n<td><code>Adviser Adhoc Fee</code></td>\n<td>Ad-hoc charge for adviser services</td>\n</tr>\n<tr>\n<td><code>Initial Adviser Fee</code></td>\n<td>Initial charge for adviser services</td>\n</tr>\n<tr>\n<td><code>Subscription Fee</code></td>\n<td>Subscription charge for platform services</td>\n</tr>\n<tr>\n<td><code>Discretionary Management Fee</code></td>\n<td>Charge for DFM services</td>\n</tr>\n<tr>\n<td><code>Product Fee</code></td>\n<td>Charge the provision of a product (pension, ISA, JISA, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>amount</code> float <strong>Required</strong></p>\n<p>The fee amount to be taken</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"993a2a84-affd-4789-bc87-d30ea22208e8"},{"name":"Create a sell and fee transaction","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"93751e84-f659-4057-8aae-3f5f95f5585d"}}],"id":"db961934-fff7-4feb-b3c2-17425ffc3db9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Sell\",\n            \"currency\": \"GBP\",\n            \"amount\": 110,\n            \"assetId\": \"{{assetId}}\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Fee\",\n            \"movementType\": \"Out\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This creates a \"sell and fee\" transaction. The request returns a <code>linkId</code> which can be queried to return the individual transactions.</p>\n<p>A selldown should be instructed where the investment account has insufficient uninvested cash to cover the fee amount.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the investment account where the fee should be taken</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />The unique identifier for the investment account where the sell/fee should be taken</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong><br />The type of transaction taking place. This should be <code>Order</code> for sell transactions</p>\n<hr />\n<p><code>transaction.transactionSubType</code> enum value <strong>Required</strong></p>\n<p>The sub type of the transaction taking place. This should be <code>At Best</code> for sell transactions</p>\n<hr />\n<p><code>movementType</code> enum value <strong>Required</strong></p>\n<p>This should be <code>Sell</code> for sell transactions</p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>The currency of the sell transaction</p>\n<hr />\n<p><code>amount</code> float <strong>Required</strong></p>\n<p>The monetary amount to sell</p>\n<hr />\n<p><code>assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset that's being sold</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong><br />The type of transaction taking place. This should be <code>Cash</code> for fee transactions</p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong><br />The action to be performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Platform Fee Adviser Fee</code>  <br /><code>Adviser Adhoc Fee</code>  <br /><code>Adviser Initial Fee</code>  <br /><code>Subscription Fee</code>  <br /><code>Discretionary Management Fee</code>  <br /><code>Product Fee</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong><br />The fee amount to be taken</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db961934-fff7-4feb-b3c2-17425ffc3db9"}],"id":"cf8f2d5f-e2f5-4df0-834a-cca8e414e0cc","description":"<p>A DIY fee run gives you greater flexibility than a Seccl fee run. With this option, you are free to implement a unique fee structure that works for your platform.</p>\n<p>For example, you may want to set charges based on wrapper types, or calculate fees according to the length of time an investor has been with your platform.</p>\n<p>The operational flow for a DIY fee run works exactly the same as the Seccl fee run. However, you (the platform) are responsible for calculating the fee amount and instructing the fee transaction from the investment account.</p>\n<p>We will pay out fees taken to the platform or relevant party.</p>\n<p>The process works as follows:</p>\n<ol>\n<li>Calculate the fee amount using the daily average balance</li>\n<li>Check if the account has a sufficient uninvested cash balance to cover the fee<ol>\n<li>If yes - instruct the fee transaction</li>\n<li>If no - instruct a group sell and fee transaction</li>\n</ol>\n</li>\n</ol>\n<p>This can be applied to any fee type and amount.</p>\n","_postman_id":"cf8f2d5f-e2f5-4df0-834a-cca8e414e0cc"},{"name":"Ad-hoc and initial adviser fee","item":[{"name":"Create an ad-hoc or initial fee","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"7ed8da5e-81a3-4c33-9bd2-7eb64d635aec"}}],"id":"13f4491c-a7d7-4697-b5b2-adafc43456f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Adhoc Fee\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 200,\n            \"method\": \"Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This creates an ad-hoc adviser fee transaction and returns a <code>linkId,</code>which can be queried to retrieve the individual fee transaction.</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"13f4491c-a7d7-4697-b5b2-adafc43456f1"},{"name":"Create a payment expectation and initial adviser fee","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"29e761f7-1940-4866-9859-9d3e4a6471de"}}],"id":"8a954cea-be96-4ef5-9188-8c6e2bd61356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Adhoc Fee\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 200,\n            \"method\": \"Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This creates a payment expectation and an initial adviser fee, and returns a <code>linkId</code> which can be queried to retrieve the individual transactions.</p>\n<p>The adviser fee is taken when the money is allocated to the payment expectation. For example, if a user creates a £500 expectation with a £50 adviser fee, when the money is allocated, £50 is automatically deducted to cover the fee and the remainder - £450 - will be allocated to the investment account.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the investment account where the fee should be taken</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />The unique identifier for the investment account for the payment/fee</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong><br />The type of transaction taking place. This should be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Deposit</code></p>\n<hr />\n<p><code>movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>In</code></p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>amount</code> float <strong>Required</strong></p>\n<p>The amount to be deposited. This will be gross of the fee amount</p>\n<hr />\n<p><code>method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to deposit the money</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong><br />The type of transaction taking place. This should be <code>Cash</code> for fee transactions</p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong><br />The action to be performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Adviser Adhoc Fee</code>  <br /><code>Adviser Initial Fee</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong><br />The fee amount to be taken</p>\n<hr />\n<p><code>transactions.method</code> float <strong>Required</strong><br />This should be set to <code>Transfer</code></p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c7c2e439-3576-4f4f-9e3c-a5d6d78f5ab9","name":"Create a payment expectation and initial adviser fee","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Initial Fee\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 200,\n            \"method\": \"Transfer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8a954cea-be96-4ef5-9188-8c6e2bd61356"}],"id":"fd8ce1f3-f652-4965-89b2-08670c8b6b0d","description":"<p>Ad-hoc and initial adviser fees can be instructed to cover additional adviser fees over and above the ongoing charge.</p>\n","_postman_id":"fd8ce1f3-f652-4965-89b2-08670c8b6b0d"},{"name":"Fee reconciliation","item":[{"name":"List transaction codes","id":"1c3d5adc-018f-4a73-a8e1-a4acca59c676","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/static/transactiontype","description":"<p>Transaction types can be obtained by GET to this URL. These transaction types can be used to filter the cash postings GET request</p>\n<p><strong>Response Data</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>The Id of the transaction</td>\n</tr>\n<tr>\n<td><code>nodeId</code></td>\n<td>The node of the account</td>\n</tr>\n<tr>\n<td><code>accountId</code></td>\n<td>The account Id that the transaction has taken place</td>\n</tr>\n<tr>\n<td><code>accountName</code></td>\n<td>Name of the account</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The currency of the account</td>\n</tr>\n<tr>\n<td><code>positionType</code></td>\n<td>The type of <code>transactionType</code> of the transaction</td>\n</tr>\n<tr>\n<td><code>transactionId</code> - the unique 'transactionId' that relates to the transaction</td>\n<td></td>\n</tr>\n<tr>\n<td><code>transactionCode</code> - the 'transactionCode' associated with the transactionType</td>\n<td></td>\n</tr>\n<tr>\n<td><code>narrative</code></td>\n<td>Narrative of the transaction</td>\n</tr>\n<tr>\n<td><code>postDate</code></td>\n<td>The date the transaction was posted</td>\n</tr>\n<tr>\n<td><code>valueDate</code></td>\n<td>The date the transaction has value, that is, when money moved between physical bank accounts</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>The amount the transaction was for</td>\n</tr>\n<tr>\n<td><code>reversal</code></td>\n<td>An indicator as to if the transaction was reversed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["static","transactiontype"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c3d5adc-018f-4a73-a8e1-a4acca59c676"},{"name":"List platform fees","id":"6f278a78-959d-4348-bd4c-e53aceab8486","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/cash/{{firmId}}?transactionCode=PFOF&postDateFrom=YYYY-MM-DD&postDateTo=YYYY-MM-DD","description":"<p>All cash postings on all client accounts in your firm or node can be obtained from the API.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. It is used to segregate your data in a different database to other users of the service.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\"><strong>Response data</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. This is used to segregate your data in a different database to other users of the service</td>\n</tr>\n<tr>\n<td><code>nodeId</code></td>\n<td>The node of the account</td>\n</tr>\n<tr>\n<td><code>accountId</code></td>\n<td>The accountId that the transaction has taken place</td>\n</tr>\n<tr>\n<td><code>accountName</code></td>\n<td>Name of the account</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The currency of the account</td>\n</tr>\n<tr>\n<td><code>positionType</code></td>\n<td>The type of <code>transactionType</code> of the transaction</td>\n</tr>\n<tr>\n<td><code>transactionId</code> - The unique 'transactionId' that relates to the transaction</td>\n<td></td>\n</tr>\n<tr>\n<td><code>transactionCode</code> - The 'transactionCode' associated with the transactionType</td>\n<td></td>\n</tr>\n<tr>\n<td><code>narrative</code></td>\n<td>Narrative of the transaction</td>\n</tr>\n<tr>\n<td><code>postDate</code></td>\n<td>The date the transaction was posted</td>\n</tr>\n<tr>\n<td><code>valueDate</code></td>\n<td>The date the transaction has value, that is, when money moved between physical bank accounts</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>The amount the transaction was for</td>\n</tr>\n<tr>\n<td><code>reversal</code></td>\n<td>An indicator as to if the transaction was reversed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["posting","cash","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"transactionCode","value":"PFOF"},{"key":"postDateFrom","value":"YYYY-MM-DD"},{"key":"postDateTo","value":"YYYY-MM-DD"}],"variable":[]}},"response":[],"_postman_id":"6f278a78-959d-4348-bd4c-e53aceab8486"},{"name":"List adviser fees","id":"0c727a10-d932-480b-8556-f7751286ad56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/cash/{{firmId}}?transactionCode=PFOF&postDateFrom=YYYY-MM-DD&postDateTo=YYYY-MM-DD","description":"<p>All cash postings on all client accounts in your firm or node can be obtained from the API. This is how you can list adviser fees.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. This is used to segregate your data in a different database to other users of the service</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\"><strong>Response data</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. This is used to segregate your data in a different database to other users of the service</td>\n</tr>\n<tr>\n<td><code>nodeId</code></td>\n<td>The node of the account</td>\n</tr>\n<tr>\n<td><code>accountId</code></td>\n<td>The account Id that the transaction has taken place</td>\n</tr>\n<tr>\n<td><code>accountName</code></td>\n<td>Name of the account</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The currency of the account</td>\n</tr>\n<tr>\n<td><code>positionType</code></td>\n<td>The type of <code>transactionType</code> of the transaction</td>\n</tr>\n<tr>\n<td><code>transactionId</code> - The unique 'transactionId' that relates to the transaction</td>\n<td></td>\n</tr>\n<tr>\n<td><code>transactionCode</code> - The 'transactionCode' associated with the transactionType</td>\n<td></td>\n</tr>\n<tr>\n<td><code>narrative</code> -</td>\n<td>Narrative of the transaction</td>\n</tr>\n<tr>\n<td><code>postDate</code></td>\n<td>The date the transaction was posted</td>\n</tr>\n<tr>\n<td><code>valueDate</code></td>\n<td>The date the transaction has value, that is, when money moved between physical bank accounts</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>The amount the transaction was for</td>\n</tr>\n<tr>\n<td><code>reversal</code></td>\n<td>An indicator as to if the transaction was reversed</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["posting","cash","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"transactionCode","value":"PFOF"},{"key":"postDateFrom","value":"YYYY-MM-DD"},{"key":"postDateTo","value":"YYYY-MM-DD"}],"variable":[]}},"response":[],"_postman_id":"0c727a10-d932-480b-8556-f7751286ad56"}],"id":"5f0c4aaa-bb61-4104-947b-c2fec6dc8f4a","description":"<p>Seccl pays out fees taken from client investment accounts every Friday for fees accrued between the previous Friday and that Thursday.</p>\n<p>You can access completed fees via the API.</p>\n","_postman_id":"5f0c4aaa-bb61-4104-947b-c2fec6dc8f4a"},{"name":"Fee Structures","item":[{"name":"List fee structures","id":"eb2b2433-806c-4d6c-b258-df7196478f06","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/v1/fee-structures/{{firmId}}?pageSize=20&page=1","description":"<p>All fee structures in the system can be listed/queried here</p>\n","urlObject":{"path":["v1","fee-structures","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>Results per page, optional</p>\n","type":"text/plain"},"key":"pageSize","value":"20"},{"description":{"content":"<p>Page number, optional</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"6583cee8-696a-42f8-8bef-ef9d34665421","name":"List fee structures","originalRequest":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":{"raw":"{{apiRoute}}/v1/fee-structures/{{firmId}}?pageSize=20&page=1","host":["{{apiRoute}}"],"path":["v1","fee-structures","{{firmId}}"],"query":[{"key":"pageSize","value":"20","description":"Results per page, optional"},{"key":"page","value":"1","description":"Page number, optional"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Dec 2025 10:33:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"541"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"23467c1b-093b-46f7-b7f0-09a9e0534974"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"541"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VoCL2HaMjoEEupg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"21d-vUbnFJJUInKPvKEPMTHt6Gsct4c\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-693fe3e5-31e5c11257494b7171599191;Parent=62a5f4ad940b569e;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"67f91b39b902102cbf2b622d\",\n            \"type\": \"Platform Fee\",\n            \"name\": \"Flat platform fee\",\n            \"tiers\": [\n                {\n                    \"fromAmount\": 0,\n                    \"amount\": 120\n                }\n            ]\n        },\n        {\n            \"id\": \"6939a2a78e5f242a9d7ea037\",\n            \"type\": \"Adviser Fee\",\n            \"name\": \"Tiered adviser charge\",\n            \"tiers\": [\n                {\n                    \"fromAmount\": 0,\n                    \"toAmount\": 10000,\n                    \"rate\": 0.0035\n                },\n                {\n                    \"fromAmount\": 10000.01,\n                    \"rate\": 0.0005\n                }\n            ]\n        },\n        {\n            \"id\": \"693fe3d781a888b20a734c0b\",\n            \"type\": \"Platform Fee\",\n            \"name\": \"Tiered platform charge\",\n            \"tiers\": [\n                {\n                    \"fromAmount\": 0,\n                    \"toAmount\": 10000,\n                    \"rate\": 0.0035\n                },\n                {\n                    \"fromAmount\": 10000.01,\n                    \"rate\": 0.0005\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 3,\n        \"page\": 1,\n        \"pageSize\": 20\n    }\n}"}],"_postman_id":"eb2b2433-806c-4d6c-b258-df7196478f06"},{"name":"Filter fee structures","id":"626d0258-f575-4552-9988-f5e0f8cb429c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/v1/fee-structures/{{firmId}}?pageSize=20&page=1&type=Platform Fee","description":"<p>Additional query parameters can be provided to filter the fee structures in the system</p>\n","urlObject":{"path":["v1","fee-structures","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>Results per page, optional</p>\n","type":"text/plain"},"key":"pageSize","value":"20"},{"description":{"content":"<p>Page number, optional</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The 'type' of the Platform Fee</p>\n","type":"text/plain"},"key":"type","value":"Platform Fee"}],"variable":[]}},"response":[{"id":"03d61d1d-4537-4917-9e21-f49cc2cba855","name":"List fee structures Copy","originalRequest":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":{"raw":"{{apiRoute}}/v1/fee-structures/{{firmId}}?pageSize=20&page=1&type=Platform Fee","host":["{{apiRoute}}"],"path":["v1","fee-structures","{{firmId}}"],"query":[{"key":"pageSize","value":"20","description":"Results per page, optional"},{"key":"page","value":"1","description":"Page number, optional"},{"key":"type","value":"Platform Fee","description":"The 'type' of the Platform Fee"}]}},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Dec 2025 10:34:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"359"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"86cd13f7-d061-43d3-8324-ec0c34dabd92"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"359"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VoCVRFt6DoEENWQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"167-rOlSml77Rd+ecqeQ7zoVTjJqiU8\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-693fe421-7ccb2bdd08cd98503b0905b4;Parent=667c638a23fd1df1;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"67f91b39b902102cbf2b622d\",\n            \"type\": \"Platform Fee\",\n            \"name\": \"Flat platform fee\",\n            \"tiers\": [\n                {\n                    \"fromAmount\": 0,\n                    \"amount\": 120\n                }\n            ]\n        },\n        {\n            \"id\": \"693fe3d781a888b20a734c0b\",\n            \"type\": \"Platform Fee\",\n            \"name\": \"Tiered platform charge\",\n            \"tiers\": [\n                {\n                    \"fromAmount\": 0,\n                    \"toAmount\": 10000,\n                    \"rate\": 0.0035\n                },\n                {\n                    \"fromAmount\": 10000.01,\n                    \"rate\": 0.0005\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 2,\n        \"page\": 1,\n        \"pageSize\": 20\n    }\n}"}],"_postman_id":"626d0258-f575-4552-9988-f5e0f8cb429c"},{"name":"Get by ID","id":"ff3110b8-336d-469d-bfee-a8df5d9c7a50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/v1/fee-structures/{{firmId}}/{{feeStructureId}}","description":"<p>Individual fee structures can be retrieved in full by their ID, useful if trying to associate e.g. a <code>platformFeeStructureId</code> on a <code>client</code></p>\n","urlObject":{"path":["v1","fee-structures","{{firmId}}","{{feeStructureId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"8c32df64-f578-41aa-9468-8cd77578b8ef","name":"Get by ID","originalRequest":{"method":"GET","header":[{"key":"api-token","value":"{{apiToken}}"}],"url":"{{apiRoute}}/v1/fee-structures/{{firmId}}/{{feeStructureId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Mon, 15 Dec 2025 10:38:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"192"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"7012f1e6-3787-45f4-a77d-cba1df7b19d5"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"192"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VoDCcGn1joEEd2Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"c0-5gezXVi0oib6938pVhGxHtW9NPY\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-693fe542-7dc71408201e8b5c1569f614;Parent=65dcbee15e16f671;Sampled=0;Lineage=1:47036734:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"693fe3d781a888b20a734c0b\",\n        \"type\": \"Platform Fee\",\n        \"name\": \"Tiered platform charge\",\n        \"tiers\": [\n            {\n                \"fromAmount\": 0,\n                \"toAmount\": 10000,\n                \"rate\": 0.0035\n            },\n            {\n                \"fromAmount\": 10000.01,\n                \"rate\": 0.0005\n            }\n        ]\n    }\n}"}],"_postman_id":"ff3110b8-336d-469d-bfee-a8df5d9c7a50"}],"id":"7e2030af-268e-4085-85a0-f890dd95a67a","description":"<p>Fee structures can be set against entities in the system to finely control how fees are charged, such as providing different structures for different clients explicitly</p>\n","_postman_id":"7e2030af-268e-4085-85a0-f890dd95a67a"}],"id":"d3fba95f-2997-41e4-b605-c13f9368cd4c","description":"<p>Fees describe the charges paid by investors for platform, adviser and investment management services.</p>\n<p>There are several different fee types:</p>\n<ul>\n<li><p><strong>Platform fee:</strong> The charge paid by the client to the platform for platform services. Usually % of assets held on the platform</p>\n</li>\n<li><p><strong>Subscription fee:</strong> The charge paid by the client to the platform for platform services. Usually £ amount</p>\n</li>\n<li><p><strong>Product fee:</strong> The charge paid by the client to the platform for the use of certain wrappers. Can be a % or fixed £ amount</p>\n</li>\n<li><p><strong>Discretionary management fee:</strong> The charge paid by the client to the investment manager for discretionary services. Usually % of assets held in the relevant model</p>\n</li>\n<li><p><strong>Adviser ongoing fee:</strong> The charge paid by the client to the advice firm for financial advice services. Usually % of assets held on the platform</p>\n</li>\n<li><p><strong>Adviser ad-hoc fee:</strong> The charge paid by the client to the advice firm for financial advice services</p>\n</li>\n<li><p><strong>Adviser initial fee:</strong> The charge paid by the client to the advice firm for financial advice services</p>\n</li>\n</ul>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/ portfoliotransactiongroup\n/ portfoliotransaction\n\n</code></pre>\n<p>There are three ways to take fees on the platform:</p>\n<ol>\n<li><p>Seccl fee run</p>\n</li>\n<li><p>DIY fee run</p>\n</li>\n<li><p>Ad-hoc or initial fee transactions</p>\n</li>\n</ol>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"99d184d2-bf08-4592-aeae-86d865d05723"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"0abe3b8a-be0d-423a-9d34-e7b973118490"}}],"_postman_id":"d3fba95f-2997-41e4-b605-c13f9368cd4c"},{"name":"Notifications","item":[{"name":"List notifications","id":"0303f201-227e-4c47-929b-ffdf08c05fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/notification/{{firmId}}","description":"<p>Retrieves all notifications generated on the platform including platform exceptions.</p>\n<p>To view definitions for response fields please view <a href=\"https://seccl-1.postman.co/workspace/Public-API-Docs~1f916fb3-f30d-4d1b-a40c-c833a35ddba8/request/25484536-565fa070-561c-48aa-b9a8-ac4d38b28f8b?action=share&amp;source=copy-link&amp;creator=16519110&amp;ctx=documentation\">GET Retrieive a notification</a></p>\n<p>Examples of query parameters can be found below:</p>\n","urlObject":{"path":["notification","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"notificationType","value":"<notificationType>"},{"disabled":true,"key":"status","value":"<status>"},{"disabled":true,"key":"message","value":"<message>"},{"disabled":true,"key":"pageSize","value":"100"},{"disabled":true,"key":"page","value":"<pageNumber>"},{"disabled":true,"key":"createdFrom","value":"<yyyy-mm-dd>"},{"disabled":true,"key":"createdTo","value":"<yyyy-mm-dd>"}],"variable":[]}},"response":[{"id":"f8e6388f-d220-4195-b74b-69a383486bb6","name":"Query by message (paginated)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/notification/{{firmId}}?message=Insufficient funds for this transaction&pageSize=100&page=1","host":["{{apiRoute}}"],"path":["notification","{{firmId}}"],"query":[{"key":"notificationType","value":"<notificationType>","disabled":true},{"key":"status","value":"<status>","disabled":true},{"key":"message","value":"Insufficient funds for this transaction"},{"key":"pageSize","value":"100"},{"key":"page","value":"1"},{"key":"createdFrom","value":"<yyyy-mm-dd>","disabled":true},{"key":"createdTo","value":"<yyyy-mm-dd>","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"93594"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jan 2025 17:38:20 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67894409-7e5b87fd16c73e890798b30e;Parent=614605a0df79694d;Sampled=0;Lineage=1:79db7189:0"},{"key":"x-amzn-RequestId","value":"710fa483-43ea-4c0d-a482-8723d2dad5d9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"93594"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"EfeRnF9fDoEEAPw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"16d9a-ycbjcFaRsVhgHiOQ7lQIz/MVlXo\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 91353a8aba9ab05d79e9678e004043bc.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"FRA60-P1"},{"key":"X-Amz-Cf-Id","value":"sPtpDCe2TaIGxrYrCs-NNQxMsykYBdLc6I-JpC7_KCB1WtaG3HHhNA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00000027ML\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2018-10-23T12:41:33.564Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Closed\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Post\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D8874\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"amount\": 5000,\n                \"currency\": \"GBP\",\n                \"assetId\": \"286Q5\",\n                \"transactionDate\": \"2018-10-23T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2018-10-25T00:00:00.000Z\",\n                \"assetName\": \"db x-trackers FTSE All-Share UCITS ETF DR\",\n                \"isin\": \"LU0292097747\",\n                \"ticker\": \"XASX\",\n                \"mic\": \"XLON\",\n                \"instrumentType\": \"ETF\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T12:41:32.602Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T12:41:33.412Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000021KG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2023-01-25T08:43:57.471Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B3GJ\",\n                \"version\": 2,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"63d0ebcd0f0836e77a9589bb\",\n            \"notes\": \"2023-01-25T08:43:57.466Z: Issue now resolved.\\r\\n\"\n        },\n        {\n            \"id\": \"00000027MP\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2018-10-23T12:53:03.355Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Post\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D8874\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"amount\": 5000,\n                \"currency\": \"GBP\",\n                \"assetId\": \"286Q5\",\n                \"transactionDate\": \"2018-10-23T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2018-10-25T00:00:00.000Z\",\n                \"assetName\": \"db x-trackers FTSE All-Share UCITS ETF DR\",\n                \"isin\": \"LU0292097747\",\n                \"ticker\": \"XASX\",\n                \"mic\": \"XLON\",\n                \"instrumentType\": \"ETF\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T12:53:02.534Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T12:53:03.204Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000021KH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2018-10-23T12:53:03.442Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5bcf19aff71e19582cb6be8d\"\n        },\n        {\n            \"id\": \"00000027MQ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2018-10-23T14:55:15.269Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Post\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D8874\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"amount\": 1100,\n                \"currency\": \"GBP\",\n                \"assetId\": \"286Q5\",\n                \"transactionDate\": \"2018-10-23T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2018-10-25T00:00:00.000Z\",\n                \"assetName\": \"db x-trackers FTSE All-Share UCITS ETF DR\",\n                \"isin\": \"LU0292097747\",\n                \"ticker\": \"XASX\",\n                \"mic\": \"XLON\",\n                \"instrumentType\": \"ETF\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T14:55:04.798Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2018-10-23T14:55:15.091Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000021KR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2018-10-23T14:55:15.367Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5bcf3653f10ff10d7ce7194d\"\n        },\n        {\n            \"id\": \"0000003BL1\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2019-12-12T20:25:11.062Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Post\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D96B3\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 275,\n                \"assetId\": \"284H9\",\n                \"eventId\": \"00047N\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"SECCI\"\n                },\n                \"transactionDate\": \"2019-12-12T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2019-12-16T00:00:00.000Z\",\n                \"assetName\": \"Marks & Spencer Group PLC\",\n                \"isin\": \"GB0031274896\",\n                \"ticker\": \"MKS\",\n                \"mic\": \"XLON\",\n                \"instrumentType\": \"Equity\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2019-12-12T20:25:10.063Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2019-12-12T20:25:11.056Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"000003K4L\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2019-12-12T20:25:11.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5df2a227810c73000827d6f5\"\n        },\n        {\n            \"id\": \"0000003D49\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2019-12-17T11:58:02.315Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Post\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9F22\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 8200,\n                \"assetId\": \"284JP\",\n                \"eventId\": \"0004GH\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"ljaflksdjf\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"PA124321B\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2019-12-17T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2019-12-19T00:00:00.000Z\",\n                \"assetName\": \"J Sainsbury PLC\",\n                \"isin\": \"GB00B019KW72\",\n                \"ticker\": \"SBRY\",\n                \"mic\": \"XLON\",\n                \"instrumentType\": \"Equity\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2019-12-17T11:58:01.917Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2019-12-17T11:58:02.296Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"000003KPK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2019-12-17T11:58:02.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5df8c2cace4db100075a59f3\"\n        },\n        {\n            \"id\": \"0000003HF8\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-10T12:14:17.866Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"000674\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-10T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-14T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.683Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.859Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000043GD\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-10T12:14:17.870Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e186a997f6fa40008a7d465\"\n        },\n        {\n            \"id\": \"0000003HF9\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-10T12:14:17.960Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"000674\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-10T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-13T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.683Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.952Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000043GD\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-10T12:14:17.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e186a9987705b0007d22b68\"\n        },\n        {\n            \"id\": \"0000003HFB\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-10T12:14:17.963Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"000674\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-10T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-14T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.819Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.957Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000043GF\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-10T12:14:17.966Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e186a997f6fa40008a7d466\"\n        },\n        {\n            \"id\": \"0000003HFC\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-10T12:14:18.064Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"000674\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-10T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-13T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:17.819Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-10T12:14:18.055Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000043GF\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-10T12:14:18.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e186a9a87705b0007d22b69\"\n        },\n        {\n            \"id\": \"0000003JR3\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-17T15:25:12.610Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"0006LC\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-17T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-21T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.469Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.603Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000044SG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-17T15:25:12.614Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e21d1d8e0812d0007f485c3\"\n        },\n        {\n            \"id\": \"0000003JR4\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-17T15:25:12.692Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"0006LC\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-17T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-20T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.469Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.686Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000044SG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-17T15:25:12.694Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e21d1d8e0812d0007f485c4\"\n        },\n        {\n            \"id\": \"0000003JR5\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-17T15:25:12.888Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"0006LC\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-17T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-21T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.719Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.859Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000044SH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-17T15:25:12.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e21d1d855359c0008b614b0\"\n        },\n        {\n            \"id\": \"0000003JR6\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-17T15:25:12.930Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"0006LC\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-17T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-20T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.719Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-17T15:25:12.924Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000044SH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-17T15:25:12.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e21d1d8e0812d0007f485c5\"\n        },\n        {\n            \"id\": \"0000003KF7\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-21T16:40:16.228Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"0006QQ\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-21T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-23T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:15.870Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.220Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000045GM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-21T16:40:16.230Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e272970f8154f00083721fa\"\n        },\n        {\n            \"id\": \"0000003KF8\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-21T16:40:16.309Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9GFB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"0006QQ\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-21T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-22T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:15.870Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.302Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000045GM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-21T16:40:16.311Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e272970f8154f00083721fb\"\n        },\n        {\n            \"id\": \"0000003KF9\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-21T16:40:16.401Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"27518\",\n                \"eventId\": \"0006QQ\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-21T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-23T00:00:00.000Z\",\n                \"assetName\": \"Invesco Perpetual European Equity Z Inc\",\n                \"isin\": \"GB00B8N44K25\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.064Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.391Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000045GN\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-21T16:40:16.414Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e272970f8154f00083721fc\"\n        },\n        {\n            \"id\": \"0000003KFB\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-01-21T16:40:16.498Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9H13\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"assetId\": \"26NHB\",\n                \"eventId\": \"0006QQ\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"transactionDate\": \"2020-01-21T00:00:00.000Z\",\n                \"status\": \"Pending\",\n                \"intendedSettlementDate\": \"2020-01-22T00:00:00.000Z\",\n                \"assetName\": \"M&G UK Emerging Markets Bond I Inc GBP\",\n                \"isin\": \"GB00B4TL2D89\",\n                \"mic\": \"XOFF\",\n                \"instrumentType\": \"Fund\",\n                \"statusChanges\": [\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.064Z\",\n                        \"description\": \"Order request created\"\n                    },\n                    {\n                        \"status\": \"Pending\",\n                        \"statusDate\": \"2020-01-21T16:40:16.492Z\",\n                        \"description\": \"Order request created\"\n                    }\n                ],\n                \"linkId\": \"0000045GN\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-01-21T16:40:16.501Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e272970f8154f00083721fd\"\n        },\n        {\n            \"id\": \"0000003QB4\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:09:53.981Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00083L\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DHQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:09:53.988Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2961380c010008f1ea40\"\n        },\n        {\n            \"id\": \"0000003QB5\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:09:54.085Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00083L\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DHR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:09:54.089Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2962380c010008f1ea41\"\n        },\n        {\n            \"id\": \"0000003QB6\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:09:54.171Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00083L\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DHR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:09:54.186Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2962380c010008f1ea42\"\n        },\n        {\n            \"id\": \"0000003QB7\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:09:54.270Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00083L\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DHQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:09:54.273Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d29623a287b00080ae17c\"\n        },\n        {\n            \"id\": \"0000003QBF\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:35:07.479Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00083M\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DJQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:35:07.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2f4b306a570009c90727\"\n        },\n        {\n            \"id\": \"0000003QBG\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:35:07.570Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00083M\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DJR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:35:07.573Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2f4b306a570009c90728\"\n        },\n        {\n            \"id\": \"0000003QBH\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:35:07.656Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00083M\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DJR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:35:07.658Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2f4b306a570009c90729\"\n        },\n        {\n            \"id\": \"0000003QBJ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T09:35:07.833Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00083M\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DJQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T09:35:07.836Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d2f4b3f73750007726eef\"\n        },\n        {\n            \"id\": \"0000003QBM\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T12:03:53.971Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9F2B\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 40,\n                \"assetId\": \"2851G\",\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DKH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T12:03:53.982Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d5229906dbe00080e5016\"\n        },\n        {\n            \"id\": \"0000003QBN\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-07T12:03:54.024Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9F2B\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 160,\n                \"assetId\": \"284JP\",\n                \"status\": \"Pending\",\n                \"linkId\": \"000004DKH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-07T12:03:54.027Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e3d522a906dbe00080e5017\"\n        },\n        {\n            \"id\": \"0000003SLS\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-19T09:41:44.339Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"0008Q1\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004L5K\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-19T09:41:44.342Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e4d02d82f96a4000708ed5e\"\n        },\n        {\n            \"id\": \"0000003SM1\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-19T09:41:44.346Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"0008Q1\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004L5K\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-19T09:41:44.349Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e4d02d84a32ea0008ca87c6\"\n        },\n        {\n            \"id\": \"0000003SM2\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-19T09:41:44.432Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"0008Q1\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004L5L\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-19T09:41:44.435Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e4d02d82f96a4000708ed5f\"\n        },\n        {\n            \"id\": \"0000003SM3\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-19T09:41:44.480Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"0008Q1\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004L5L\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-19T09:41:44.481Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e4d02d84a32ea0008ca87c7\"\n        },\n        {\n            \"id\": \"00000041B7\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-24T11:34:15.886Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00095H\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004MRK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-24T11:34:15.889Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e53b4b70b55f1000869781e\"\n        },\n        {\n            \"id\": \"00000041B8\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-24T11:34:15.975Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00095H\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004MRK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-24T11:34:15.978Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e53b4b70b55f1000869781f\"\n        },\n        {\n            \"id\": \"00000041B9\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-24T11:34:16.057Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00095H\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004MRL\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-24T11:34:16.059Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e53b4b80b55f10008697820\"\n        },\n        {\n            \"id\": \"00000041BB\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-24T11:34:16.141Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00095H\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004MRL\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-24T11:34:16.143Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e53b4b80b55f10008697821\"\n        },\n        {\n            \"id\": \"000000426P\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T13:57:32.013Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DB4JB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 988.72,\n                \"assetId\": \"2851G\",\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P3M\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T13:57:32.025Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5527cc9f81d1000761946b\"\n        },\n        {\n            \"id\": \"000000426Q\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T13:57:32.095Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DB4JB\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 3954.88,\n                \"assetId\": \"284JP\",\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P3M\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T13:57:32.098Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5527cc9f81d1000761946c\"\n        },\n        {\n            \"id\": \"000000427P\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:11:46.857Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00098B\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P51\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:11:46.868Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e552b224e0dad0008ae6cfc\"\n        },\n        {\n            \"id\": \"000000427Q\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:11:46.959Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00098B\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P52\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:11:46.961Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e552b224e0dad0008ae6cfd\"\n        },\n        {\n            \"id\": \"000000427R\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:11:47.042Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00098B\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P52\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:11:47.045Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e552b234e0dad0008ae6cfe\"\n        },\n        {\n            \"id\": \"000000427S\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:11:47.086Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00098B\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P51\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:11:47.089Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e552b23a8c0a90008732adb\"\n        },\n        {\n            \"id\": \"0000004285\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:40:27.364Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00098C\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P64\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:40:27.367Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5531dbd489f40007c2d5ac\"\n        },\n        {\n            \"id\": \"0000004286\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:40:27.531Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00098C\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P65\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:40:27.543Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5531dbd489f40007c2d5ad\"\n        },\n        {\n            \"id\": \"0000004287\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:40:27.601Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"00098C\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P64\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:40:27.609Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5531db83b75e00072f605d\"\n        },\n        {\n            \"id\": \"0000004288\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-02-25T14:40:27.662Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"00098C\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000004P65\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-02-25T14:40:27.666Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e5531dbd489f40007c2d5ae\"\n        },\n        {\n            \"id\": \"0000004536\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-03-11T12:21:39.327Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9DD9\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 39,\n                \"assetId\": \"27598\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"1234\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB333334B\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"status\": \"Pending\",\n                \"linkId\": \"0000053MQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-03-11T12:21:39.329Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e68d7d3788d270007ca24e5\"\n        },\n        {\n            \"id\": \"0000004537\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-03-11T12:21:39.420Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D9DD9\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 39,\n                \"assetId\": \"27426\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"1234\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB333334B\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"status\": \"Pending\",\n                \"linkId\": \"0000053MQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-03-11T12:21:39.424Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e68d7d3788d270007ca24e6\"\n        },\n        {\n            \"id\": \"00000049CM\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-06T15:26:57.426Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9726\",\n                \"eventId\": \"000DCD\",\n                \"assetId\": \"27426\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"PE123453C\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"PE123453C\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 250,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FBG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-06T15:26:57.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8b4a41c3c25100079cae6a\"\n        },\n        {\n            \"id\": \"00000049CN\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-06T15:26:57.536Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9726\",\n                \"eventId\": \"000DCD\",\n                \"assetId\": \"28546\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"PE123453C\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"PE123453C\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 250,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FBG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-06T15:26:57.540Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8b4a41c3c25100079cae6b\"\n        },\n        {\n            \"id\": \"00000049DP\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.049Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.053Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4b33fc6000752f586\"\n        },\n        {\n            \"id\": \"00000049DQ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.142Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.144Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4b33fc6000752f587\"\n        },\n        {\n            \"id\": \"00000049DR\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.266Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNJ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4b33fc6000752f588\"\n        },\n        {\n            \"id\": \"00000049DS\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.364Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNJ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4b33fc6000752f589\"\n        },\n        {\n            \"id\": \"00000049F1\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.570Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.583Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4fbef2b000856adf4\"\n        },\n        {\n            \"id\": \"00000049F2\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-07T14:15:16.627Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000DG3\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005FNK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-07T14:15:16.638Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e8c8af4b33fc6000752f58a\"\n        },\n        {\n            \"id\": \"0000004C5G\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.167Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5C\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fab8dbb4300072ab140\"\n        },\n        {\n            \"id\": \"0000004C5H\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.285Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5D\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.288Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fab8dbb4300072ab141\"\n        },\n        {\n            \"id\": \"0000004C5J\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.287Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5C\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.290Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fabdae4c70007f97d5c\"\n        },\n        {\n            \"id\": \"0000004C5K\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.390Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5D\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.392Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fab8dbb4300072ab142\"\n        },\n        {\n            \"id\": \"0000004C5L\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.408Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5F\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.411Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fabdae4c70007f97d5d\"\n        },\n        {\n            \"id\": \"0000004C5M\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:06:35.515Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCK\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K5F\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:06:35.517Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e997fab8dbb4300072ab143\"\n        },\n        {\n            \"id\": \"0000004C8H\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.181Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K85\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d16000856941f\"\n        },\n        {\n            \"id\": \"0000004C8J\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.287Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K85\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.290Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d160008569420\"\n        },\n        {\n            \"id\": \"0000004C8K\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.401Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K86\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d160008569421\"\n        },\n        {\n            \"id\": \"0000004C8L\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.514Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K86\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.517Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d160008569422\"\n        },\n        {\n            \"id\": \"0000004C8M\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.612Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K87\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.616Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d160008569423\"\n        },\n        {\n            \"id\": \"0000004C8N\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T10:53:29.732Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCL\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K87\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T10:53:29.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e998aa9fc4d160008569424\"\n        },\n        {\n            \"id\": \"0000004C8S\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.470Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9B\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.480Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e999253c3b45c0008d8eeb4\"\n        },\n        {\n            \"id\": \"0000004C91\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.589Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9C\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.593Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e999253c3b45c0008d8eeb5\"\n        },\n        {\n            \"id\": \"0000004C92\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.664Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9B\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.670Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e9992532b501f000856a070\"\n        },\n        {\n            \"id\": \"0000004C93\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.693Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9C\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.695Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e999253c3b45c0008d8eeb6\"\n        },\n        {\n            \"id\": \"0000004C94\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.784Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9D\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.787Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e9992532b501f000856a071\"\n        },\n        {\n            \"id\": \"0000004C95\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-17T11:26:11.796Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000FCM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005K9D\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-17T11:26:11.809Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5e999253c3b45c0008d8eeb7\"\n        },\n        {\n            \"id\": \"0000004FBD\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.405Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF4\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.421Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd917f28750008bc7603\"\n        },\n        {\n            \"id\": \"0000004FBF\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.502Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF4\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd914235780008ceb058\"\n        },\n        {\n            \"id\": \"0000004FBG\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.569Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF5\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.571Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd917f28750008bc7604\"\n        },\n        {\n            \"id\": \"0000004FBH\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.626Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF5\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd914235780008ceb059\"\n        },\n        {\n            \"id\": \"0000004FBJ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.671Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF6\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd917f28750008bc7605\"\n        },\n        {\n            \"id\": \"0000004FBK\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-04-27T12:18:25.734Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000G6K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"LEI123456\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005NF6\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-04-27T12:18:25.736Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea6cd914235780008ceb05a\"\n        },\n        {\n            \"id\": \"0000004H17\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-03T15:20:59.612Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB685\",\n                \"assetId\": \"26MMM\",\n                \"currency\": \"GBP\",\n                \"amount\": 150,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005S8B\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-03T15:20:59.616Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eaee15b0683d30007a11fe0\"\n        },\n        {\n            \"id\": \"0000004H18\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-03T15:20:59.716Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB685\",\n                \"assetId\": \"26MMS\",\n                \"currency\": \"GBP\",\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005S8B\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-03T15:20:59.719Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eaee15b0683d30007a11fe1\"\n        },\n        {\n            \"id\": \"0000004H63\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-05T11:09:29.378Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D97JB\",\n                \"eventId\": \"000HGN\",\n                \"assetId\": \"284JP\",\n                \"currency\": \"GBP\",\n                \"amount\": 15386.4,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005SSN\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-05T11:09:29.382Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb149694e18800008e22412\"\n        },\n        {\n            \"id\": \"0000004HKS\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.562Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624F\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.569Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fee0288000887da85\"\n        },\n        {\n            \"id\": \"0000004HL1\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.651Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624G\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.653Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fee0288000887da86\"\n        },\n        {\n            \"id\": \"0000004HL2\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.733Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624G\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.749Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fee0288000887da87\"\n        },\n        {\n            \"id\": \"0000004HL3\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.833Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624K\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.849Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fee0288000887da88\"\n        },\n        {\n            \"id\": \"0000004HL4\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.877Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624F\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.879Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fede9720007665cf7\"\n        },\n        {\n            \"id\": \"0000004HL5\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-07T15:25:51.989Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000J1K\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000624K\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-07T15:25:51.991Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb4287fee0288000887da89\"\n        },\n        {\n            \"id\": \"0000004HSG\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.225Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000632S\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.229Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbcdc7e000074578b6\"\n        },\n        {\n            \"id\": \"0000004HSH\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.232Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"00000632S\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.235Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbd1412300074d8160\"\n        },\n        {\n            \"id\": \"0000004HSM\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.768Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000006332\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.770Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbcdc7e000074578bb\"\n        },\n        {\n            \"id\": \"0000004HSN\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.764Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000006332\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.775Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbd1412300074d8164\"\n        },\n        {\n            \"id\": \"0000004HSP\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.910Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"000006333\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.912Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbcdc7e000074578bc\"\n        },\n        {\n            \"id\": \"0000004HSQ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-11T14:14:35.913Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000JKM\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"000006333\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-11T14:14:35.918Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5eb95dcbd1412300074d8165\"\n        },\n        {\n            \"id\": \"0000004JBL\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.209Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 5000,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.217Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae39e6a4f0008de17c6\"\n        },\n        {\n            \"id\": \"0000004JBM\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.275Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.279Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae3bf69a70007e2cf77\"\n        },\n        {\n            \"id\": \"0000004JBN\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.296Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00DB572\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 2000,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PH\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.298Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae33f9c780007c48d41\"\n        },\n        {\n            \"id\": \"0000004JBP\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.325Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.329Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae39e6a4f0008de17c7\"\n        },\n        {\n            \"id\": \"0000004JBQ\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.331Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9H13\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"26NHB\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 200,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.334Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae3c3461b00077c14e9\"\n        },\n        {\n            \"id\": \"0000004JC1\",\n            \"firmId\": \"SECCI\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2020-05-13T14:57:39.735Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"accountId\": \"00D9GFB\",\n                \"eventId\": \"000KBC\",\n                \"assetId\": \"27518\",\n                \"currency\": \"GBP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"888888LEI12345688888\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB123456A\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"amount\": 500,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000063PM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2020-05-13T14:57:39.744Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ebc0ae3a2c1de0007eeef3b\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 6047,\n        \"page\": 1,\n        \"pageSize\": 100\n    }\n}"},{"id":"2f345f55-4a4a-4337-b014-4246de1a80ba","name":"Query by date range","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/notification/{{firmId}}?createdFrom=2025-01-01&createdTo=2025-01-10","host":["{{apiRoute}}"],"path":["notification","{{firmId}}"],"query":[{"key":"notificationType","value":"<notificationType>","disabled":true},{"key":"status","value":"<status>","disabled":true},{"key":"createdFrom","value":"<yyyy-mm-dd>","disabled":true},{"key":"createdTo","value":"<yyyy-mm-dd>","disabled":true},{"key":"createdFrom","value":"2025-01-01"},{"key":"createdTo","value":"2025-01-10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"118028"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jan 2025 17:41:24 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-678944c2-13e3a79029b8c00d50dc3b9a;Parent=1cffecb8ce38f882;Sampled=0;Lineage=1:79db7189:0"},{"key":"x-amzn-RequestId","value":"f0885d2f-2d25-4c6b-865c-578639e6af1a"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"118028"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"EfeucF0eDoEEYAg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1cd0c-PDv98vILmDKlnUecT59plEqYTZ0\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 23e8ec14db0917c91c2c733b45578890.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"FRA60-P1"},{"key":"X-Amz-Cf-Id","value":"AAx4vylnRUS_hYaku0nSHlgGhlYC78RDtEpOt50QP9CTomh6KabxEQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00003GJDH7\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-01T08:00:51.986Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Direct Debit\",\n                \"transactionDate\": \"2025-01-01T00:00:00.000Z\",\n                \"externalAccountId\": \"0262182\",\n                \"externalFirmId\": \"IRNMK\",\n                \"externalId\": \"0000K91S4\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"cashDetails\": {\n                    \"clientAmount\": 50,\n                    \"clientCurrency\": \"GBP\"\n                },\n                \"bankRef\": \"IRNMK-0262182\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-01T08:00:52.000Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"6774f6348fd1633629bf6c0a\"\n        },\n        {\n            \"id\": \"00003GJDJ9\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-01T09:00:45.564Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 8,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041LSF\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-01T09:00:45.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6775043d848bf3d2f6b9bcf3\"\n        },\n        {\n            \"id\": \"00003GJS82\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-01T14:00:39.499Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2024-12-31T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-01T14:00:39.603Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"67754a8786691ed258caee89\"\n        },\n        {\n            \"id\": \"00003GK4B4\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.488Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J7BD\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J7BD\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.496Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b303e32fc156079e0d\"\n        },\n        {\n            \"id\": \"00003GK4B5\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.496Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 0262434 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"0262434\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"0262434\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Deposit\",\n                        \"movementType\": \"In\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"Bank Transfer\",\n                        \"eventId\": \"041MQL\",\n                        \"autoInvest\": true\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b31166bced747b0e94\"\n        },\n        {\n            \"id\": \"00003GK4B6\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.504Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J5GD\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J5GD\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.591Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3662168f964473206\"\n        },\n        {\n            \"id\": \"00003GK4B3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.486Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J5HF\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J5HF\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 25,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.494Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3dbc01abb37b149f9\"\n        },\n        {\n            \"id\": \"00003GK4B8\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.565Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00F2FBB to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00F2FBB\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00F2FBB\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Deposit\",\n                        \"movementType\": \"In\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 25,\n                        \"method\": \"Bank Transfer\",\n                        \"eventId\": \"041MQL\",\n                        \"autoInvest\": true\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.593Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b32c9958b7d4fd5f6a\"\n        },\n        {\n            \"id\": \"00003GK4BG\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.830Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 026F1J6 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"026F1J6\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"026F1J6\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 50,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.835Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b31166bced747b0e97\"\n        },\n        {\n            \"id\": \"00003GK4B7\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.561Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J5FD\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J5FD\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.593Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3cfc638ecd4e086ff\"\n        },\n        {\n            \"id\": \"00003GK4BL\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.876Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02F25HC\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02F25HC\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 100,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.898Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b32c9958b7d4fd5f6b\"\n        },\n        {\n            \"id\": \"00003GK4BN\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.923Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 02619F4 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02619F4\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02619F4\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 400,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.936Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3662168f964473209\"\n        },\n        {\n            \"id\": \"00003GK4B9\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.637Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J5J1\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J5J1\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.655Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3d5c9406298d1e3f3\"\n        },\n        {\n            \"id\": \"00003GK4BP\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.978Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00DDFJ7 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DDFJ7\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00DDFJ7\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 100,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.000Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b42c9958b7d4fd5f6c\"\n        },\n        {\n            \"id\": \"00003GK4BC\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.714Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J5FH\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J5FH\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3680a04034a17a259\"\n        },\n        {\n            \"id\": \"00003GK4BB\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.703Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1166:33)\\n    at /var/task/src/transaction/saveHelpers.js:1491:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02HHCBJ\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02HHCBJ\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.713Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3f057d641ab1c623e\"\n        },\n        {\n            \"id\": \"00003GK4BD\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.759Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00F1244 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00F1244\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00F1244\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 101,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3328ec8e122a59075\"\n        },\n        {\n            \"id\": \"00003GK4C1\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:52.085Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 027H39F to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027H39F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027H39F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 150,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.091Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b4cfc638ecd4e08702\"\n        },\n        {\n            \"id\": \"00003GK4BR\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:52.070Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00DB716 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DB716\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00DB716\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Deposit\",\n                        \"movementType\": \"In\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"Bank Transfer\",\n                        \"eventId\": \"041MQL\",\n                        \"autoInvest\": true\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.087Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b4dbc01abb37b149ff\"\n        },\n        {\n            \"id\": \"00003GK4BF\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.798Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 0261B7C to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"0261B7C\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"0261B7C\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 10000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.805Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b36e548b3b36803028\"\n        },\n        {\n            \"id\": \"00003GK4BJ\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.846Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 025JH5C to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"025JH5C\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"025JH5C\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 50,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:51.857Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b3cf85bf606de31b55\"\n        },\n        {\n            \"id\": \"00003GK4C3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:52.236Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 027H39G to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027H39G\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027H39G\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 10,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.243Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b46e548b3b36803029\"\n        },\n        {\n            \"id\": \"00003GK4BQ\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:51.980Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00D8F44 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00D8F44\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00D8F44\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041MQL\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.001Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b48681b3bc265889fa\"\n        },\n        {\n            \"id\": \"00003GK4C2\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:52.118Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 02622F2 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02622F2\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02622F2\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Employee\",\n                        \"movementType\": \"In\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"Bank Transfer\",\n                        \"eventId\": \"041MQL\",\n                        \"autoInvest\": true\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:52.128Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647b4f69d042076811210\"\n        },\n        {\n            \"id\": \"00003GK4GF\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.214Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Direct debit mandate must be accepted before payments can be made\",\n            \"stack\": \"DataValidationError: Direct debit mandate must be accepted before payments can be made\\n    at checkDirectDebitMandate (/var/task/src/handlers/transactions/paymentDepositIn/create/validation.js:23:19)\\n    at createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:163:52)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"errorMessage\": \"Direct debit mandate must be accepted before payments can be made\",\n                    \"fieldName\": \"method\",\n                    \"type\": \"validDirectDebitMandateMethod\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"025JJFC\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 100,\n                \"method\": \"Direct Debit\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LFC\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.222Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bb3179a014b6bb0c24\"\n        },\n        {\n            \"id\": \"00003GK4GG\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.225Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Direct debit mandate must be accepted before payments can be made\",\n            \"stack\": \"DataValidationError: Direct debit mandate must be accepted before payments can be made\\n    at checkDirectDebitMandate (/var/task/src/handlers/transactions/paymentDepositIn/create/validation.js:23:19)\\n    at createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:163:52)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"errorMessage\": \"Direct debit mandate must be accepted before payments can be made\",\n                    \"fieldName\": \"method\",\n                    \"type\": \"validDirectDebitMandateMethod\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00D96CC\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 500,\n                \"method\": \"Direct Debit\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LFJ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.236Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bbcfc638ecd4e08743\"\n        },\n        {\n            \"id\": \"00003GK4GL\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.385Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"02FC222\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 10000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LFR\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.421Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bb6c8566c798005f53\"\n        },\n        {\n            \"id\": \"00003GK4GQ\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.521Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"025B74J\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 1000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LG3\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.529Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bbc061128e7c5e6a9a\"\n        },\n        {\n            \"id\": \"00003GK4H4\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.648Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at iErrorFormatter (/var/task/node_modules/@seccl/validation-utils/src/errorFormatter/iErrorFormatter.js:36:12)\\n    at Object.nestedRequestError [as requestDataError] (/var/task/node_modules/@seccl/validation-utils/src/customErrorFormatter/requestDataError.js:35:67)\\n    at Function.processValidationResults (/var/task/node_modules/validate.js/validate.js:152:38)\\n    at /var/task/node_modules/validate.js/validate.js:180:26\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"accountId\",\n                    \"errorMessage\": \"Account is not active\",\n                    \"type\": \"validAccountStatus\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Employee\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00D9483\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 2000,\n                \"method\": \"Bank Transfer\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LGM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.655Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bb1166bced747b0ed7\"\n        },\n        {\n            \"id\": \"00003GK4H5\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:00:59.675Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"025B74H\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 450,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LGJ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:00:59.684Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bbcfc638ecd4e08746\"\n        },\n        {\n            \"id\": \"00003GK4HN\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:00.182Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at iErrorFormatter (/var/task/node_modules/@seccl/validation-utils/src/errorFormatter/iErrorFormatter.js:36:12)\\n    at Object.nestedRequestError [as requestDataError] (/var/task/node_modules/@seccl/validation-utils/src/customErrorFormatter/requestDataError.js:35:67)\\n    at Function.processValidationResults (/var/task/node_modules/validate.js/validate.js:152:38)\\n    at /var/task/node_modules/validate.js/validate.js:180:26\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Please provide existing employer registration number\",\n                    \"type\": \"contributorType\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Employer\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00DG5BG\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 50,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"companyRegNo\": \"12345\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LHS\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:00.191Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bc662168f964473247\"\n        },\n        {\n            \"id\": \"00003GK4HQ\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:00.225Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00DFBFD\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 357,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LHM\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:00.246Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bc03e32fc156079e6f\"\n        },\n        {\n            \"id\": \"00003GK4HP\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:00.226Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"025B752\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 1000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LHQ\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:00.246Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bcf69d042076811259\"\n        },\n        {\n            \"id\": \"00003GK4HR\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:00.246Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00DCCG1\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 12312,\n                \"method\": \"Bank Transfer\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LJ6\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:00.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bc1166bced747b0edc\"\n        },\n        {\n            \"id\": \"00003GK4J6\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:00.555Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00D88G7\",\n                \"eventId\": \"041MQL\",\n                \"currency\": \"GBP\",\n                \"amount\": 1000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000K9LJK\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:00.580Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677647bcd5c9406298d1e446\"\n        },\n        {\n            \"id\": \"00003GK4L4\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:03.501Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Direct Debit\",\n                \"transactionDate\": \"2025-01-02T00:00:00.000Z\",\n                \"externalAccountId\": \"026B564\",\n                \"externalFirmId\": \"OCTAC\",\n                \"externalId\": \"0000K9NDH\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"cashDetails\": {\n                    \"clientAmount\": 250,\n                    \"clientCurrency\": \"GBP\"\n                },\n                \"bankRef\": \"OCTAC-026B564\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:03.552Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"677647bf40d7fee6e3fbf4d1\"\n        },\n        {\n            \"id\": \"00003GK4L8\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T08:01:03.841Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Bank Transfer\",\n                \"transactionDate\": \"2025-01-02T00:00:00.000Z\",\n                \"externalAccountId\": \"02BFJ9F\",\n                \"externalFirmId\": \"SIPPD\",\n                \"externalId\": \"0000K9NFP\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"cashDetails\": {\n                    \"clientAmount\": 25,\n                    \"clientCurrency\": \"GBP\"\n                },\n                \"bankRef\": \"SIPPD-02BFJ9F\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T08:01:03.849Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"677647bfc50360173d1968fe\"\n        },\n        {\n            \"id\": \"00003GK4R9\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T09:01:06.850Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 9,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041NN1\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T09:01:06.883Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677655d21ee1c6fa60e9c78c\"\n        },\n        {\n            \"id\": \"00003GKGHJ\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-02T14:00:39.562Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-01T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-02T14:00:39.686Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"67769c07e0795dfc3a23aa74\"\n        },\n        {\n            \"id\": \"00003GKLF3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-03T09:00:59.817Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 10,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041QJ6\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-03T09:00:59.842Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6777a74bdb16b3083c29273b\"\n        },\n        {\n            \"id\": \"00003GKLF4\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-03T09:00:59.833Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD39\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD39\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"041QJ6\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-03T09:00:59.847Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6777a74bea836ec27a504cd0\"\n        },\n        {\n            \"id\": \"00003GL459\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-03T14:00:31.566Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-02T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-03T14:00:31.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"6777ed7fb3b546d24697a7d8\"\n        },\n        {\n            \"id\": \"00003GLL59\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-04T14:00:37.977Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-03T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-04T14:00:38.075Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"67793f06753e8bb09ff5ed93\"\n        },\n        {\n            \"id\": \"00003GM9N4\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-05T11:00:49.872Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"No outgoing message is found!\",\n            \"stack\": \"DataNotFoundError: No outgoing message is found!\\n    at Object.sendIncomeStatementReport [as IncomeStatementReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:134:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Income Statement Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"firmId\": \"SECCI\",\n                \"externalMessageType\": \"IncomeStatementReport\",\n                \"type\": \"Send\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-05T11:00:49.882Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677a6661fd27537747e0b8bb\"\n        },\n        {\n            \"id\": \"00003GMB6M\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-05T14:00:39.066Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-04T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-05T14:00:39.182Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677a9087d78434166b02e703\"\n        },\n        {\n            \"id\": \"00003GMF8M\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T08:00:47.559Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Direct Debit\",\n                \"transactionDate\": \"2025-01-06T00:00:00.000Z\",\n                \"externalAccountId\": \"02C233B\",\n                \"externalFirmId\": \"IRNMK\",\n                \"externalId\": \"0000KBK6S\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"cashDetails\": {\n                    \"clientAmount\": 25,\n                    \"clientCurrency\": \"GBP\"\n                },\n                \"bankRef\": \"IRNMK-02C233B\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T08:00:47.568Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"677b8daf76b30433c76fd664\"\n        },\n        {\n            \"id\": \"00003GMF9R\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T09:00:45.667Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 13,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"0427B9\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T09:00:45.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677b9bbd68899f44882eab12\"\n        },\n        {\n            \"id\": \"00003GMF9P\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T09:00:45.671Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 12,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"0427B9\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T09:00:45.710Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677b9bbd12473b72de1f0198\"\n        },\n        {\n            \"id\": \"00003GMF9Q\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T09:00:45.673Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 11,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"0427B9\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T09:00:45.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677b9bbdc9d0a2b266ec6ab3\"\n        },\n        {\n            \"id\": \"00003GMF9N\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T09:00:45.668Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD35\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD35\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"0427B9\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T09:00:45.710Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677b9bbdf512b43aa27507b9\"\n        },\n        {\n            \"id\": \"00003GN1BH\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-06T14:00:30.859Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-05T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-06T14:00:30.960Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677be1fe9b78fb3fa5050630\"\n        },\n        {\n            \"id\": \"00003GPH4P\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.587Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"025JJFC\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"025JJFC\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 600,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Largest\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.637Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e3b8af4e4dd0533d8\"\n        },\n        {\n            \"id\": \"00003GPH4H\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.356Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02DJC43\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02DJC43\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.376Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e63341d1238d92589\"\n        },\n        {\n            \"id\": \"00003GPH4D\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.245Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027H75J\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027H75J\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.313Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e548b2cf5af54895d\"\n        },\n        {\n            \"id\": \"00003GPH4K\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.384Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02F167C\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02F167C\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 250,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.400Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4ea25a10ede0e71a00\"\n        },\n        {\n            \"id\": \"00003GPH4F\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.247Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J761\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J761\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.313Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4ebb571e120aaf8c89\"\n        },\n        {\n            \"id\": \"00003GPH4G\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.348Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02F147D\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02F147D\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1212,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.366Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e1a1b6124daacb149\"\n        },\n        {\n            \"id\": \"00003GPH4J\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.372Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02F2899\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02F2899\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 855,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.398Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4ed6495e063645d788\"\n        },\n        {\n            \"id\": \"00003GPH4M\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.536Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 14,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.580Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e7a5b6ccc928ebe89\"\n        },\n        {\n            \"id\": \"00003GPH4N\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.573Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02G367J\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02G367J\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 500,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.586Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e02d9c1fc2d729124\"\n        },\n        {\n            \"id\": \"00003GPH4L\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.535Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027G83B\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027G83B\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1200,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.551Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4ebaee81ae11e8a381\"\n        },\n        {\n            \"id\": \"00003GPH4Q\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.696Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02617C6\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02617C6\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 123,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e9ec7c313b837c6de\"\n        },\n        {\n            \"id\": \"00003GPH4R\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.787Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02F1698\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02F1698\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 3000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.803Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4ed1f79d2d8ea086d2\"\n        },\n        {\n            \"id\": \"00003GPH4S\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.819Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GJ8D\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GJ8D\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 100,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.855Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e63b4e85bc382e81a\"\n        },\n        {\n            \"id\": \"00003GPH51\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.840Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J6J8\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J6J8\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 25,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.857Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4e0aa240731146ef11\"\n        },\n        {\n            \"id\": \"00003GPH52\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T09:01:02.854Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027J61J\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027J61J\",\n                        \"transactionType\": \"Expectation\",\n                        \"transactionSubType\": \"FAD Gross Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 1000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"04295D\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T09:01:02.868Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677ced4edb1ea4d75e4d78db\"\n        },\n        {\n            \"id\": \"00003GPSN5\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-07T14:00:31.539Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-06T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-07T14:00:31.634Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677d337f6b72455cdb91517a\"\n        },\n        {\n            \"id\": \"00003GR8P3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-08T08:00:55.204Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account A052DR4 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"A052DR4\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"A052DR4\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 100,\n                        \"method\": \"Bank Transfer\",\n                        \"eventId\": \"042B4F\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-08T08:00:55.209Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677e30b728aef063a2a06c47\"\n        },\n        {\n            \"id\": \"00003GR8PB\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-08T08:01:03.401Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Direct Debit\",\n                \"transactionDate\": \"2025-01-08T00:00:00.000Z\",\n                \"externalAccountId\": \"0261G39\",\n                \"externalFirmId\": \"IRNMK\",\n                \"externalId\": \"0000KCCL5\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"cashDetails\": {\n                    \"clientAmount\": 25,\n                    \"clientCurrency\": \"GBP\"\n                },\n                \"bankRef\": \"IRNMK-0261G39\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-08T08:01:03.415Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"677e30bf94b45936ea6511a9\"\n        },\n        {\n            \"id\": \"00003GR93D\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-08T09:00:43.391Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:959:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1125:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:59:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 15,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042C1N\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-08T09:00:43.405Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677e3ebb39fef9e26a1fe922\"\n        },\n        {\n            \"id\": \"00003GRP3N\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-08T14:00:38.651Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-07T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-08T14:00:38.758Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677e8506ccf671bd09d34479\"\n        },\n        {\n            \"id\": \"00003GS3GR\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:46.640Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1173:33)\\n    at /var/task/src/transaction/saveHelpers.js:1498:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02DB88F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02DB88F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 12.57,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:46.646Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822eeae8e9a57f89c0f5\"\n        },\n        {\n            \"id\": \"00003GS3H1\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:46.741Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account type does not support transaction(s)\",\n            \"stack\": \"DataValidationError: Account type does not support transaction(s)\\n    at raiseValidationError (/var/task/src/transaction/saveHelpers.js:1173:33)\\n    at /var/task/src/transaction/saveHelpers.js:1498:20\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"wrapperDetail.wrapperType\",\n                    \"errorMessage\": \"Account type PENSION does not support transactions of type Payment, Withdrawal\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"025JJ8G\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"025JJ8G\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 10,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:46.764Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822efa856bb363e7f113\"\n        },\n        {\n            \"id\": \"00003GS3H3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:46.923Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 02DF3GF to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02DF3GF\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02DF3GF\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 200,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:46.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822ee27b0a43b15c63be\"\n        },\n        {\n            \"id\": \"00003GS3H5\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:46.960Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 02619F4 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02619F4\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02619F4\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 50,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:46.970Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822e4b0c73f0e74d34f6\"\n        },\n        {\n            \"id\": \"00003GS3H8\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:47.214Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00DDFJ7 to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DDFJ7\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00DDFJ7\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 100,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:47.223Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822f0a80a9fc48b4c67b\"\n        },\n        {\n            \"id\": \"00003GS3HB\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:47.275Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 02H7D4C to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02H7D4C\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"02H7D4C\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 70,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:47.299Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f822f897d64ab8e6c0a17\"\n        },\n        {\n            \"id\": \"00003GS3HG\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:49.544Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient available balances to facilitate this request\",\n            \"stack\": \"DataValidationError: Insufficient available balances to facilitate this request\\n    at checkAndRingfenceBalances (/var/task/src/transaction/helpers/validation.js:158:37)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"amount\",\n                    \"errorMessage\": \"Insufficient available cash on account 00DFC3F to fulfil the request for GBP\",\n                    \"type\": \"value\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"00DFC3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"00DFC3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 2000,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042CS1\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:49.557Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f823128d48a3f615aaacd\"\n        },\n        {\n            \"id\": \"00003GS3J3\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.442Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Direct debit mandate must be accepted before payments can be made\",\n            \"stack\": \"DataValidationError: Direct debit mandate must be accepted before payments can be made\\n    at checkDirectDebitMandate (/var/task/src/handlers/transactions/paymentDepositIn/create/validation.js:23:19)\\n    at createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:163:52)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"errorMessage\": \"Direct debit mandate must be accepted before payments can be made\",\n                    \"fieldName\": \"method\",\n                    \"type\": \"validDirectDebitMandateMethod\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"02F11BH\",\n                \"eventId\": \"042CS1\",\n                \"currency\": \"GBP\",\n                \"amount\": 100,\n                \"method\": \"Direct Debit\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000KDRGL\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.455Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f8233cfc385e9a36e6c81\"\n        },\n        {\n            \"id\": \"00003GS3J6\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.583Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account is not active\",\n            \"stack\": \"DataValidationError: Account is not active\\n    at getAccountWithValidStatus (/var/task/src/handlers/shared/dataAccess.js:63:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:140:21)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"02DJ127\",\n                \"eventId\": \"042CS1\",\n                \"currency\": \"GBP\",\n                \"amount\": 70,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000KDRH4\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.603Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f823399c9a8d76ae5de59\"\n        },\n        {\n            \"id\": \"00003GS3JC\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.643Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Account is not active\",\n            \"stack\": \"DataValidationError: Account is not active\\n    at getAccountWithValidStatus (/var/task/src/handlers/shared/dataAccess.js:63:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:140:21)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"0227118\",\n                \"eventId\": \"042CS1\",\n                \"currency\": \"GBP\",\n                \"amount\": 350,\n                \"method\": \"Bank Transfer\",\n                \"status\": \"Pending\",\n                \"linkId\": \"0000KDRHC\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.651Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f823328d48a3f615aaad9\"\n        },\n        {\n            \"id\": \"00003GS3JP\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.831Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at iErrorFormatter (/var/task/node_modules/@seccl/validation-utils/src/errorFormatter/iErrorFormatter.js:36:12)\\n    at Object.nestedRequestError [as requestDataError] (/var/task/node_modules/@seccl/validation-utils/src/customErrorFormatter/requestDataError.js:35:67)\\n    at Function.processValidationResults (/var/task/node_modules/validate.js/validate.js:152:38)\\n    at /var/task/node_modules/validate.js/validate.js:180:26\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"accountId\",\n                    \"errorMessage\": \"Account is not active\",\n                    \"type\": \"validAccountStatus\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02DJ127\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 35,\n                \"assetId\": \"27426\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"1234567890qwertyuioP\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB121212B\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"status\": \"Waiting\",\n                \"linkId\": \"0000KDRH4\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.841Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f8233fcf1ad8fc55afc38\"\n        },\n        {\n            \"id\": \"00003GS3JB\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.632Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at iErrorFormatter (/var/task/node_modules/@seccl/validation-utils/src/errorFormatter/iErrorFormatter.js:36:12)\\n    at Object.nestedRequestError [as requestDataError] (/var/task/node_modules/@seccl/validation-utils/src/customErrorFormatter/requestDataError.js:35:67)\\n    at Function.processValidationResults (/var/task/node_modules/validate.js/validate.js:152:38)\\n    at /var/task/node_modules/validate.js/validate.js:180:26\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"accountId\",\n                    \"errorMessage\": \"Account is not active\",\n                    \"type\": \"validAccountStatus\"\n                }\n            ],\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"02DJ127\",\n                \"transactionType\": \"Order\",\n                \"transactionSubType\": \"At Best\",\n                \"movementType\": \"Invest\",\n                \"currency\": \"GBP\",\n                \"amount\": 14,\n                \"assetId\": \"284JP\",\n                \"investmentDecision\": {\n                    \"firmLei\": \"1234567890qwertyuioP\",\n                    \"firmCountry\": \"GB\",\n                    \"personId\": \"AB121212B\",\n                    \"personIdType\": \"NINO\",\n                    \"personCountry\": \"GB\"\n                },\n                \"status\": \"Waiting\",\n                \"linkId\": \"0000KDRH4\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.650Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f823382b58d6763b2cc8e\"\n        },\n        {\n            \"id\": \"00003GS3KC\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:52.065Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"0263242\",\n                \"eventId\": \"042CS1\",\n                \"currency\": \"GBP\",\n                \"amount\": 1000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000KDRH8\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:52.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f8234cfc385e9a36e6c84\"\n        },\n        {\n            \"id\": \"00003GS3JM\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:51.813Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"stack\": \"DataValidationError: Subscription limit for this year has been exceeded\\n    at checkAccountSubscriptionLimits (/var/task/src/rules/transaction/subscriptions.js:75:19)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async createTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:210:5)\\n    at async createPaymentDepositInTransaction (/var/task/src/handlers/transactions/paymentDepositIn/create/handler.js:166:30)\\n    at async savePortfolioTransaction (/var/task/src/transaction/index.js:31:16)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"026271J\",\n                \"eventId\": \"042CS1\",\n                \"currency\": \"GBP\",\n                \"amount\": 1000,\n                \"method\": \"Bank Transfer\",\n                \"autoInvest\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"0000KDRHG\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:51.839Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f8233af939986a481ebf1\"\n        },\n        {\n            \"id\": \"00003GS3L8\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T08:00:53.544Z\",\n            \"systemArea\": \"Transaction\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"The request has failed validation\",\n            \"stack\": \"DataValidationError: The request has failed validation\\n    at validateData (/var/task/node_modules/@seccl/validation-engine/src/index.js:118:33)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async validateTransactionRequest (/var/task/packages/service/src/transaction/index.js:766:12)\\n    at async saveTransaction (/var/task/packages/service/src/transaction/index.js:785:32)\\n    at async processor (/var/task/packages/service/legacy/transactionProcessor.js:51:16)\\n    at async /var/task/packages/service/legacy/transactionProcessor.js:63:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Create\",\n            \"fieldErrors\": [\n                {\n                    \"fieldName\": \"bankAccountId\",\n                    \"errorMessage\": \"Bank account not populated\",\n                    \"type\": \"presence\"\n                },\n                {\n                    \"fieldName\": \"transactionSubType\",\n                    \"errorMessage\": \"Payment type not found\",\n                    \"type\": \"presence\"\n                }\n            ],\n            \"queue\": \"transaction\",\n            \"queueMessage\": {\n                \"type\": \"Create\",\n                \"firmId\": \"SECCI\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Direct Debit\",\n                \"transactionDate\": \"2025-01-09T00:00:00.000Z\",\n                \"externalAccountId\": \"0261815\",\n                \"externalFirmId\": \"SIPPD\",\n                \"externalId\": \"0000KDSCK\",\n                \"movementType\": \"In\",\n                \"externalSource\": \"SecclPfolio\",\n                \"bankRef\": \"SIPPD-0261815\",\n                \"cashDetails\": {\n                    \"clientAmount\": 1000,\n                    \"clientCurrency\": \"GBP\"\n                }\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T08:00:53.561Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"TransactionProcessor\"\n            },\n            \"updateId\": \"677f82358b7a033addf2c4c3\"\n        },\n        {\n            \"id\": \"00003GS3PH\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T09:01:01.368Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Insufficient funds for this transaction\",\n            \"stack\": \"DataValidationError: Insufficient funds for this transaction\\n    at generateAutoDisinvestOrders (/var/task/src/transaction/saveHelpers.js:966:15)\\n    at generateAutoDisinvestTransactions (/var/task/src/transaction/saveHelpers.js:1132:56)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async /var/task/legacy/processor.js:60:5\\n    at async /var/task/node_modules/@seccl/aws-utils/src/Lambda/snsHandler.js:19:9\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"CreateGroup\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"type\": \"CreateGroup\",\n                \"firmId\": \"SECCI\",\n                \"accountId\": \"027GD3F\",\n                \"transactions\": [\n                    {\n                        \"firmId\": \"SECCI\",\n                        \"accountId\": \"027GD3F\",\n                        \"transactionType\": \"Payment\",\n                        \"transactionSubType\": \"Withdrawal\",\n                        \"movementType\": \"Out\",\n                        \"currency\": \"GBP\",\n                        \"amount\": 16,\n                        \"method\": \"BACS Credit\",\n                        \"eventId\": \"042DP7\",\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                ]\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T09:01:01.494Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"677f904d881c0833332e633d\"\n        },\n        {\n            \"id\": \"00003GSH3H\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2025-01-09T14:00:31.427Z\",\n            \"systemArea\": \"Interface\",\n            \"exceptionFirmId\": \"SECCI\",\n            \"status\": \"Open\",\n            \"message\": \"Unable to find outgoing messages for BulkValuationReport for Intelliflo\",\n            \"stack\": \"DataNotFoundError: Unable to find outgoing messages for BulkValuationReport for Intelliflo\\n    at Object.sendBulkValuationReport [as BulkValuationReport] (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:50:15)\\n    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)\\n    at async Object.sendMessage (/var/task/node_modules/@seccl/interface-manager/src/send/intelliflo.js:213:20)\",\n            \"firmId\": \"SECCI\",\n            \"systemAreaAction\": \"Send\",\n            \"queue\": \"outgoing_message\",\n            \"queueMessage\": {\n                \"eventType\": \"Bulk Valuation Send\",\n                \"externalSystem\": \"Intelliflo\",\n                \"externalMessageType\": \"BulkValuationReport\",\n                \"firmId\": \"SECCI\",\n                \"type\": \"Send\",\n                \"valuationDate\": \"2025-01-08T00:00:00.000Z\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-01-09T14:00:31.434Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"InterfaceOutboundProcessor\"\n            },\n            \"updateId\": \"677fd67fabd8d3aac4445830\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 88\n    }\n}"}],"_postman_id":"0303f201-227e-4c47-929b-ffdf08c05fb5"},{"name":"Retrieve a notification","id":"565fa070-561c-48aa-b9a8-ac4d38b28f8b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/notification/{{firmId}}/{{notificationId}}","description":"<p>This retrieves a single notification.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>notificationType</code> enum value</p>\n<p>The type of notification</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Exception</code></td>\n<td>Refers to errors generated by activity on the platform</td>\n</tr>\n<tr>\n<td><code>Information</code></td>\n<td>Refers to information on the platform. This is not currently in use</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>created</code> string</p>\n<p>The date the notification was generated</p>\n<hr />\n<p><code>systemArea</code> string</p>\n<p>The area of the system that the notification relates</p>\n<hr />\n<p><code>exceptionFirmId</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the notification</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Open</code></td>\n<td>Status assigned when a notification is first generated</td>\n</tr>\n<tr>\n<td><code>Closed</code></td>\n<td>Updated status when a notification has been reviewed and actioned</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>message</code> enum value</p>\n<p>Examples below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Adviser charge not found</code></td>\n<td>Attempt to take an adviser charge where no adviser charge is set on the account</td>\n</tr>\n<tr>\n<td><code>Client must have valid national identifier for orders to be placed</code></td>\n<td>Missing national identifier on the client record when attempting to instruct order in an ETI</td>\n</tr>\n<tr>\n<td><code>Discretionary charge not found</code></td>\n<td>Attempt to take a discretionary charge where no discretionary charge is set on the account or model</td>\n</tr>\n<tr>\n<td><code>Disinvest amount required is greater than the current value of active account positions</code></td>\n<td>Attempt to instruct disinvestment that's greater than the available value</td>\n</tr>\n<tr>\n<td><code>Gocardless mandate search did not return a counterparty ID</code></td>\n<td>GoCardless mandate error</td>\n</tr>\n<tr>\n<td><code>Insufficient funds for auto-disinvestment</code></td>\n<td>Attempt to sell down more than the available assets</td>\n</tr>\n<tr>\n<td><code>Insufficient funds for this transaction</code></td>\n<td>Attempt to instruct a transaction but insufficient cash</td>\n</tr>\n<tr>\n<td><code>Insufficient stock for this transaction</code></td>\n<td>Attempt to instruct a transaction but insufficient units</td>\n</tr>\n<tr>\n<td><code>Internal Cash Movement</code></td>\n<td>Attempt to instruct a cash movement between two invalid wrappers</td>\n</tr>\n<tr>\n<td><code>Order quantity error</code></td>\n<td>Attempt to instruct an order for a number of units that doesn't comply with the minimum transfer units of the asset</td>\n</tr>\n<tr>\n<td><code>Pension Drawdown Transfer</code></td>\n<td>Attempt to instruct a drawdown transfer where the account isn't in <code>drawdownPending</code> status</td>\n</tr>\n<tr>\n<td><code>Rebalances are currently suspended for this asset allocation</code></td>\n<td>Attempt to rebalance a model where <code>suspendRebalance</code> flag is <code>true</code></td>\n</tr>\n<tr>\n<td><code>Subscription limit for this year has been exceeded</code></td>\n<td>Attempt to instruct a payment expectation that takes the client over their subscription limit</td>\n</tr>\n<tr>\n<td><code>Trust accounts require LEI for this transaction</code></td>\n<td>Missing LEI for a trust account to execute an ETI order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>systemAreaAction</code> enum value</p>\n<p>The action type of the instruction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Create</code></td>\n<td>Attempt to create a resource</td>\n</tr>\n<tr>\n<td><code>Send</code></td>\n<td>Attempt to send a resource</td>\n</tr>\n<tr>\n<td><code>Action</code></td>\n<td>Attempt to action an instruction</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>queue</code> string</p>\n<p>This will be <code>pfolio</code></p>\n<hr />\n<p><code>queueMessage</code> array</p>\n<p>This provides details of the specific API request that has errored</p>\n<hr />\n<p><code>exceptionType</code> enum value</p>\n<p>This will be <code>Business</code></p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>This provides audit details of the notification</p>\n<hr />\n","urlObject":{"path":["notification","{{firmId}}","{{notificationId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b9eeaabd-23f3-4fc3-9837-60572684b85b","name":"Notification response","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/notification/{{firmId}}/00000027ML"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1222"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 16 Jan 2025 17:42:58 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67894522-5de40fc535e6728d22257d7f;Parent=6a61335cb6d0bab1;Sampled=0;Lineage=1:79db7189:0"},{"key":"x-amzn-RequestId","value":"edce2e5b-0c96-4ebb-a76d-c1100aa0e174"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1222"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Efe9gG9QDoEEmdQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"4c6-vNCNyfqymVKKLY0SOYT8DoImtxw\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1877c1d3c1c0435e896415d580d52c52.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"FRA60-P1"},{"key":"X-Amz-Cf-Id","value":"gH9eut1dQntM_qlWdouvaniU_vRwVno7hW53nMDnhs1Omy8nJhV3MA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00000027ML\",\n        \"firmId\": \"SECCI\",\n        \"notificationType\": \"Exception\",\n        \"created\": \"2018-10-23T12:41:33.564Z\",\n        \"systemArea\": \"Portfolio\",\n        \"exceptionFirmId\": \"SECCI\",\n        \"status\": \"Closed\",\n        \"message\": \"Insufficient funds for this transaction\",\n        \"systemAreaAction\": \"Post\",\n        \"queue\": \"pfolio\",\n        \"queueMessage\": {\n            \"firmId\": \"SECCI\",\n            \"accountId\": \"00D8874\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"amount\": 5000,\n            \"currency\": \"GBP\",\n            \"assetId\": \"286Q5\",\n            \"transactionDate\": \"2018-10-23T00:00:00.000Z\",\n            \"status\": \"Pending\",\n            \"intendedSettlementDate\": \"2018-10-25T00:00:00.000Z\",\n            \"assetName\": \"db x-trackers FTSE All-Share UCITS ETF DR\",\n            \"isin\": \"LU0292097747\",\n            \"ticker\": \"XASX\",\n            \"mic\": \"XLON\",\n            \"instrumentType\": \"ETF\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2018-10-23T12:41:32.602Z\",\n                    \"description\": \"Order request created\"\n                },\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2018-10-23T12:41:33.412Z\",\n                    \"description\": \"Order request created\"\n                }\n            ],\n            \"linkId\": \"0000021KG\",\n            \"type\": \"Create\"\n        },\n        \"exceptionType\": \"Business\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-01-25T08:43:57.471Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 2,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"63d0ebcd0f0836e77a9589bb\",\n        \"notes\": \"2023-01-25T08:43:57.466Z: Issue now resolved.\\r\\n\"\n    }\n}"}],"_postman_id":"565fa070-561c-48aa-b9a8-ac4d38b28f8b"},{"name":"Action a notification","id":"f473f5ce-74a0-497f-b18d-a27b6d51ff81","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"exceptionAction\" : \"Close\",\n    \"actionReason\" : \"Issue now resolved.\"\n}"},"url":"{{apiRoute}}/exceptionaction/{{firmId}}/{{notificationId}}","description":"<p>This updates the status of a notification.</p>\n<p>This should be used once the notification has been investigated and actioned by the platform operations team.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>exceptionAction</code> enum value <strong>Required</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Close</td>\n<td>Closes the exception</td>\n</tr>\n<tr>\n<td>Reprocess</td>\n<td>Attempts to reprocess the initial instruction. This should be used after the issue is resolved. If a notification is reprocessed and the error persists, it will generate a new exception notification</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>actionReason</code> string <strong>Required</strong></p>\n<p>This field should be used to add narrative around why the exception is closed or reprocessed</p>\n<hr />\n","urlObject":{"path":["exceptionaction","{{firmId}}","{{notificationId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"8b39779e-b74a-4c22-9540-777a04cf9f51","name":"Reprocess an exception","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"exceptionAction\" : \"Reprocess\",\n    \"actionReason\" : \"Issue now resolved.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/exceptionaction/{{firmId}}/{{notificationId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"432eccfd-eae8-4de0-9b0d-7bc9a64dafa3","name":"Close an exception","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"exceptionAction\" : \"Close\",\n    \"actionReason\" : \"No further action required.\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/exceptionaction/{{firmId}}/{{notificationId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f473f5ce-74a0-497f-b18d-a27b6d51ff81"}],"id":"17d9c9a0-90e2-4abc-b0b5-8c527cca9405","description":"<p>Notifications will alert you to asynchronous error exceptions and platform information notices.</p>\n<p>All notifications should be monitored by the platform operations team and actioned where relevant.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/ notification\n\n</code></pre><h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>notificationType</code> enum value</p>\n<p>The type of notification</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Exception</code></td>\n<td>Refers to errors generated by activity on the platform</td>\n</tr>\n<tr>\n<td><code>Information</code></td>\n<td>Refers to information on the platform. This is not currently in use</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>created</code> string</p>\n<p>The date the notification was generated</p>\n<hr />\n<p><code>systemArea</code> string</p>\n<p>The area of the system that the notification relates</p>\n<hr />\n<p><code>exceptionFirmId</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the notification</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Open</code></td>\n<td>Status assigned when a notification is first generated</td>\n</tr>\n<tr>\n<td><code>Closed</code></td>\n<td>Updated status when a notification has been reviewed and actioned</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>message</code> enum value</p>\n<p>Examples below:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Adviser charge not found</code></td>\n<td>Attempt to take an adviser charge where no adviser charge is set on the account</td>\n</tr>\n<tr>\n<td><code>Client must have valid national identifier for orders to be placed</code></td>\n<td>Missing national identifier on the client record when attempting to instruct order in an ETI</td>\n</tr>\n<tr>\n<td><code>Discretionary charge not found</code></td>\n<td>Attempt to take a discretionary charge where no discretionary charge is set on the account or model</td>\n</tr>\n<tr>\n<td><code>Disinvest amount required is greater than the current value of active account positions</code></td>\n<td>Attempt to instruct disinvestment that's greater than the available value</td>\n</tr>\n<tr>\n<td><code>Gocardless mandate search did not return a counterparty ID</code></td>\n<td>GoCardless mandate error</td>\n</tr>\n<tr>\n<td><code>Insufficient funds for auto-disinvestment</code></td>\n<td>Attempt to sell down more than the available assets</td>\n</tr>\n<tr>\n<td><code>Insufficient funds for this transaction</code></td>\n<td>Attempt to instruct a transaction but insufficient cash</td>\n</tr>\n<tr>\n<td><code>Insufficient stock for this transaction</code></td>\n<td>Attempt to instruct a transaction but insufficient units</td>\n</tr>\n<tr>\n<td><code>Internal Cash Movement</code></td>\n<td>Attempt to instruct a cash movement between two invalid wrappers</td>\n</tr>\n<tr>\n<td><code>Order quantity error</code></td>\n<td>Attempt to instruct an order for a number of units that doesn't comply with the minimum transfer units of the asset</td>\n</tr>\n<tr>\n<td><code>Pension Drawdown Transfer</code></td>\n<td>Attempt to instruct a drawdown transfer where the account isn't in <code>drawdownPending</code> status</td>\n</tr>\n<tr>\n<td><code>Rebalances are currently suspended for this asset allocation</code></td>\n<td>Attempt to rebalance a model where <code>suspendRebalance</code> flag is <code>true</code></td>\n</tr>\n<tr>\n<td><code>Subscription limit for this year has been exceeded</code></td>\n<td>Attempt to instruct a payment expectation that takes the client over their subscription limit</td>\n</tr>\n<tr>\n<td><code>Trust accounts require LEI for this transaction</code></td>\n<td>Missing LEI for a trust account to execute an ETI order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>systemAreaAction</code> enum value</p>\n<p>The action type of the instruction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Narrative</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Create</code></td>\n<td>Attempt to create a resource</td>\n</tr>\n<tr>\n<td><code>Send</code></td>\n<td>Attempt to send a resource</td>\n</tr>\n<tr>\n<td><code>Action</code></td>\n<td>Attempt to action an instruction</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>queue</code> string</p>\n<p>This will be <code>pfolio</code></p>\n<hr />\n<p><code>queueMessage</code> array</p>\n<p>This provides details of the specific API request that has errored</p>\n<hr />\n<p><code>exceptionType</code> enum value</p>\n<p>This will be <code>Business</code></p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>This provides audit details of the notification</p>\n<hr />\n","_postman_id":"17d9c9a0-90e2-4abc-b0b5-8c527cca9405"},{"name":"Dashboard information","item":[{"name":"Get dashboard information","id":"34ace6c8-d795-422e-8ee9-8f966d19ad18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/dashboard/information/{{firmId}}","description":"<p>This returns dashboard information.</p>\n<p>When querying by <code>nodeId</code>, the data returned relates to the node specified and all sub-nodes. This allows you to retrieve information by business stream, proposition, or adviser, for example.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>type</code> enum value</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Number of clients</td>\n<td>Total number of clients - includes <code>Pending</code>, <code>Registered</code> and <code>Active</code></td>\n</tr>\n<tr>\n<td>Number of accounts</td>\n<td>Total number of investment accounts - includes all statuses</td>\n</tr>\n<tr>\n<td>Number of instruments</td>\n<td>Total number of assets held in the platform's universe</td>\n</tr>\n<tr>\n<td>Total assets under administration</td>\n<td>Total assets under administration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>total</code> float</p>\n<p>The number of the specified <code>type</code></p>\n<hr />\n","urlObject":{"path":["dashboard","information","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"nodeId","value":"<nodeId>"}],"variable":[]}},"response":[{"id":"b5efeff0-b70b-4b1c-93ee-611f29d49cc3","name":"Get dashboard information","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/dashboard/information/{{firmId}}","host":["{{apiRoute}}"],"path":["dashboard","information","{{firmId}}"],"query":[{"key":"nodeId","value":"<nodeId>","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"234"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 12 Aug 2022 11:18:59 GMT"},{"key":"x-amzn-RequestId","value":"463df7e8-1762-4e0e-b1ab-7d01f54a2407"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"234"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Wv2NZHItjoEFh7A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"ea-DwENQ5P87dfM9NfuiVlRsaZ6Mug\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62f63722-1c4470867f6b97290d337014;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ec809871438c11b540493503de981368.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD50-C2"},{"key":"X-Amz-Cf-Id","value":"C94S81BfQzTjZqqGOJGhO6wxJlZ55ePfMtxtSW0PU0s58vBJQ_fVOw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"Number Of Clients\",\n            \"total\": 5958\n        },\n        {\n            \"type\": \"Number Of Accounts\",\n            \"total\": 4188\n        },\n        {\n            \"type\": \"Number Of Instruments\",\n            \"total\": 32925\n        },\n        {\n            \"type\": \"Total Assets Under Administration\",\n            \"currency\": \"GBP\",\n            \"total\": 78005223.82\n        }\n    ],\n    \"meta\": {}\n}"}],"_postman_id":"34ace6c8-d795-422e-8ee9-8f966d19ad18"},{"name":"Get dashboard exceptions","id":"52b4a009-b032-4446-a46b-e32bcbf9aa92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/dashboard/exception/{{firmId}}","description":"<p>This route returns dashboard exceptions.</p>\n<p>These differ from asynchronous exceptions, and are raised by successful API instructions covered under the <strong>Notifications</strong> section.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>type</code> enum value</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Suspicious Transactions</code></td>\n<td>Withdrawal transaction instructed within 90 days of an update to the client's bank details</td>\n</tr>\n<tr>\n<td><code>Unpaid Deposits</code></td>\n<td>Pending payment expectation</td>\n</tr>\n<tr>\n<td><code>Unexecuted Orders</code></td>\n<td>Pending orders older than 4 working days from instruction</td>\n</tr>\n<tr>\n<td><code>Accounts Fallen 10%</code></td>\n<td><strong><code>outstanding work required</code></strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>total</code> integer</p>\n<p>The number of the specified <code>type</code></p>\n<hr />\n","urlObject":{"path":["dashboard","exception","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d6989625-675d-4a3f-8a03-90cc6f315b50","name":"Get dashboard exceptions","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/dashboard/exception/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"184"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 12 Aug 2022 11:21:45 GMT"},{"key":"x-amzn-RequestId","value":"fb23832c-1739-4835-84db-a111d9f4fb1b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"184"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Wv2nZHVQjoEFZAg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b8-ULxrJomera49m9ICL+15pzT2VoI\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62f637c8-655313d6074045d9099f8cbd;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e0ed595b39732d9e9972db26854384ec.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD50-C2"},{"key":"X-Amz-Cf-Id","value":"wO1WPtnt20UFUEKJxVfQxtqAp1ry67x6btv2pV36--4ig1X0mIWxtg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"type\": \"Suspicious Transactions\",\n            \"total\": 0\n        },\n        {\n            \"type\": \"Unpaid Deposits\",\n            \"total\": 64\n        },\n        {\n            \"type\": \"Unexecuted Orders\",\n            \"total\": 15\n        },\n        {\n            \"type\": \"Accounts Fallen 10%\",\n            \"total\": 0\n        }\n    ],\n    \"meta\": {}\n}"}],"_postman_id":"52b4a009-b032-4446-a46b-e32bcbf9aa92"}],"id":"358ce423-5205-477e-bb87-4c5de209080c","description":"<p>A dashboard information request returns high-level information on the platform, including assets under Administration(AUA), number of clients, number of investment accounts, number of asset lines in the universe and exceptions information.</p>\n<p><strong>Endpoints</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/dashboard/information\n/dashboard/exception\n\n</code></pre>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"f2cfb24d-535a-4604-bd67-c1966f20277f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"49aa1456-a394-4e1e-b593-c88c45c8ad3b"}}],"_postman_id":"358ce423-5205-477e-bb87-4c5de209080c"},{"name":"Suspicious activity","item":[{"name":"List transactions at checking","id":"3a1df53a-b588-4bac-9009-a11da6d2dccc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?status=Checking","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"status","value":"Checking"}],"variable":[]}},"response":[{"id":"fc9f9750-7e3a-4686-9541-27f77d10db7c","name":"List transactions at checking","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":{"raw":"{{apiRoute}}/portfoliotransaction/{{firmId}}?status=Checking","host":["{{apiRoute}}"],"path":["portfoliotransaction","{{firmId}}"],"query":[{"key":"status","value":"Checking"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Jan 2024 14:48:02 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2224"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"4337de00-32e7-4dc3-b0a6-020f315452bd"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2224"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Ryq_zHhwDoEEH9A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"8b0-mrFr1nkS7v5AHwOXCbP2fe8G07k\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-65aa8b98-3e50ebde565c7e376c38b773;Sampled=0;lineage=80d77620:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00008H355\",\n            \"firmId\": \"TEST1\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"035CJ3C\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"BACS Credit\",\n            \"providerId\": \"Test Provider\",\n            \"transactionDate\": \"2024-01-19T00:00:00.000Z\",\n            \"status\": \"Checking\",\n            \"accountName\": \"Test Account\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2024-01-19T09:49:33.293Z\",\n                    \"description\": \"Payment request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank details added within last 90 days\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank account status pending\",\n                    \"passed\": false\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2024-01-19T09:49:33.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2024-01-19T09:49:33.373Z\",\n                \"userFirmId\": \"TEST1\",\n                \"userId\": \"029B3FF\",\n                \"version\": 1,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"65aa45ad92c97703b832d136\"\n        },\n        {\n            \"id\": \"00008H38H\",\n            \"coreId\": \"JHZTIAAE\",\n            \"firmId\": \"TEST1\",\n            \"accountId\": \"035CJ8D\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Interest\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 18,\n            \"transactionDate\": \"2024-01-19T00:00:00.000Z\",\n            \"status\": \"Checking\",\n            \"accountName\": \"Test Account\",\n            \"accountType\": \"Wrapper\",\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": false\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2024-01-19T09:49:58.001Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2024-01-19T09:49:58.005Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"65aa45c69bf789d6efe8753a\"\n        },\n        {\n            \"id\": \"00008H3B3\",\n            \"firmId\": \"TEST1\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"accountId\": \"035CJCF\",\n            \"currency\": \"GBP\",\n            \"amount\": 20000,\n            \"method\": \"Transfer\",\n            \"transactionDate\": \"2024-01-19T00:00:00.000Z\",\n            \"status\": \"Checking\",\n            \"accountName\": \"Test Account\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2024-01-19T09:50:09.739Z\",\n                    \"description\": \"Payment request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": false\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2024-01-19T09:50:09.785Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2024-01-19T09:50:09.790Z\",\n                \"userFirmId\": \"TEST1\",\n                \"userId\": \"029B3FF\",\n                \"version\": 1,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"65aa45d1620917efedc2385b\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 3\n    }\n}"}],"_postman_id":"3a1df53a-b588-4bac-9009-a11da6d2dccc"},{"name":"Clear suspicious transaction","id":"bfaef7e9-ccb4-4a35-9a69-45e0198da2bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{transactionId}}\",\n    \"actionReason\": \"{{actionReason}}\"\n}"},"url":"{{apiRoute}}/portfoliotransaction/action/authorise/{{firmId}}/{{transactionId}}","description":"<p>Updates transaction status from <code>Checking</code> to <code>Pending</code> – the withdrawal is then processed via BACS and will land with the client in 3 to 5 working days</p>\n<p>Returns a successful array</p>\n<hr />\n<p><strong>Please note: suspicious transactions should only be cleared after the new bank details have been confirmed that they belong to that of the client.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmid</code> string <strong>Required</strong></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The transaction ID of the withdrawal</p>\n<hr />\n<p><code>actionReason</code> string <strong>Required</strong></p>\n<p>This field should be used to add narrative around why the payment is authorised</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","action","authorise","{{firmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"65fcbef4-2dd5-4173-a233-79d4697d79be","name":"Clear suspicious transaction","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"id\": \"00003PN12\",\n    \"actionReason\": \"Payment authorised!\"\n}"},"url":"{{apiRoute}}/portfoliotransaction/action/authorise/{{firmId}}/{{transactionId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 12 Aug 2022 11:47:00 GMT"},{"key":"x-amzn-RequestId","value":"946aa9a7-8a14-4ac5-acf3-c00459ebf72e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Wv6UOGjhDoEFx1g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62f63db4-4b95bc8d51b44c982c93a23a;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e7e267d22aaab825174c9e30c630f528.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-P2"},{"key":"X-Amz-Cf-Id","value":"zdX1Pvw7BA7z--rZVjEpfYdEE8JgULgPqohnUsDgge5uoaDw1l2FDQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"bfaef7e9-ccb4-4a35-9a69-45e0198da2bd"}],"id":"cc2ba91a-7fca-4921-beaf-65c9ce36589c","description":"<p>Suspicious activity refers to transactions which have been sent to checking due to not passing one or more of the following rules:</p>\n<p>Rule - \"Check transaction\"<br />Rule - \"Bank details added within last 90 days\"<br />Rule - \"Bank account status pending\"</p>\n<p>Each rule will return a result of passed as True or False with False sending the transaction to checking.</p>\n<p><strong>Check transaction</strong><br />This rule is to detect any suspicious clients which have been added as a sanctioned client. Please see the API documentation under section Client onboarding &gt; Update a client &gt; Update a client to PEP or sanctioned.</p>\n<p><strong>Bank details added within last 90 days</strong></p>\n<p>This rule will detect any changes made to the bank account details within the past 90 days for withdrawals. If the bank details have been changed the transaction will go to checking.</p>\n<p><strong>Bank account status pending</strong></p>\n<p>This rule will detect if the bank account the withdrawal is being paid to has the status of \"Pending\". This is for a soon to be released feature for bank account verification. Once a bank account has been verified it will have the status of \"Active\" and will pass the rule.</p>\n<p><strong>Please note: this functionality should be used to trigger a manual process whereby the firms compliance function reviews, validates, and confirms if the transaction should proceed forwards from checking. Details of this exact procedure followed should be included in the firms AML policy.</strong></p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/portfoliotransaction \n/portfoliotransaction/action/authorise/\n\n</code></pre>","_postman_id":"cc2ba91a-7fca-4921-beaf-65c9ce36589c"},{"name":"Secure data transfers","item":[{"name":"Requesting a file","id":"5b353ea4-f5c4-4080-b0c1-705237ef89ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{firmId}}_{{fileType}}_2025-08-08_000.csv\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/data/{{fileType}}","description":"<p>Retrieve a pre-signed URL to download a specific data file.</p>\n<h4 id=\"endpoint\">Endpoint</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">GET/data/{fileType}\n\n</code></pre>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>Full filename of the extract. Format:</p>\n<p><code>FIRMID_FileType_yyyy-mm-dd_000.csv</code></p>\n<p>Please note that date in the file name is the date of extract.</p>\n","urlObject":{"path":["data","{{fileType}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b353ea4-f5c4-4080-b0c1-705237ef89ad"}],"id":"457b319a-2ba5-4c19-979c-dd9e6e18730e","description":"<p>The Secure data transfers API allows authorised users to retrieve structured data files in csv format via pre-signed URLs. These files are purpose-built to support platform operators with reconciliation activities by offering consistent, high-quality data across:</p>\n<ul>\n<li><p>Clients</p>\n</li>\n<li><p>Accounts</p>\n</li>\n<li><p>Account positions</p>\n</li>\n<li><p>Transactions</p>\n</li>\n<li><p>Client documents</p>\n</li>\n</ul>\n<p>These files are designed for platform operators and will, by design, include data across your entire node hierarchy. They cannot be configured to run at individual node levels.</p>\n<h2 id=\"available-files\">Available files</h2>\n<p>We provide five core files to support this activity. In addition, there are supporting files that enable change tracking across key entities, along with a new metadata file designed to make file processing and reconciliation more efficient.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>File name {{fileType}}</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Accounts</td>\n<td>Detailed information for each account including ID, wrapper type, and status.</td>\n</tr>\n<tr>\n<td>Clients</td>\n<td>Data on individual clients such as ID, address, and account status.</td>\n</tr>\n<tr>\n<td>Positions</td>\n<td>Settled positions as of close of business the previous day.</td>\n</tr>\n<tr>\n<td>Transactions</td>\n<td>Full transaction history from day one, with a future plan for daily updates</td>\n</tr>\n<tr>\n<td>Documents</td>\n<td>Details of each document created for clients</td>\n</tr>\n<tr>\n<td>Account status</td>\n<td>Captures status transitions at account level</td>\n</tr>\n<tr>\n<td>Client status</td>\n<td>Highlights any status changes made to client level</td>\n</tr>\n<tr>\n<td>Transaction status</td>\n<td>Surfaces status changes to transaction records</td>\n</tr>\n<tr>\n<td>Check file</td>\n<td>A summary metadata file listing all available data files for the day, including file names, types, and record counts.</td>\n</tr>\n</tbody>\n</table>\n</div><p>Please note: files will be available for collection from 8am each day, and all information in these files reflects data as of the end of the previous business day.</p>\n<h2 id=\"testing-in-staging\">Testing in staging</h2>\n<p>If you would like to test this process in your staging environment, please contact your Account Manager. We can arrange for test files containing staging data to be made available for you to retrieve.</p>\n<h2 id=\"endpoint\">Endpoint</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{{apiRoute}}/data/{{fileType}}\n\n</code></pre>\n<p>Replace <code>{{fileType}}</code> with any of the other available file types as needed.</p>\n<h2 id=\"access-permissions\">Access permissions</h2>\n<p>We have created a new user scope to prevent unauthorised access. Please note, that users will need to have the <strong>Bulk Data Download</strong> scope in order to request these.</p>\n<p>If you need your machine user to updated, please contact your Account Manager.</p>\n<h2 id=\"pre-signed-urls\">Pre-signed URLs</h2>\n<ul>\n<li><p>Each file is served via a pre-signed URL, valid for <strong>1 minute</strong> after creation.</p>\n</li>\n<li><p>After expiry, a new request must be made to retrieve a new URL.</p>\n</li>\n</ul>\n<h2 id=\"file-retention\">File retention</h2>\n<ul>\n<li><p>Files will be retained for <strong>1 week</strong> before being archived.</p>\n</li>\n<li><p>Archived files are not accessible via this API.</p>\n</li>\n</ul>\n<h2 id=\"error-handling\">Error handling</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Condition</strong></th>\n<th><strong>Response code</strong></th>\n<th><strong>Message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>User lacks <code>Bulk Data Download</code> scope</td>\n<td>403 Forbidden</td>\n<td><code>Access Denied - Scope missing</code></td>\n</tr>\n<tr>\n<td>User is not authorised for the requested <code>firmId</code></td>\n<td>403 Forbidden</td>\n<td><code>Access Denied - Firm access unauthorised</code></td>\n</tr>\n<tr>\n<td>File not found</td>\n<td>400 Bad request</td>\n<td><code>File retrieval error</code></td>\n</tr>\n<tr>\n<td>File found - Pre-signed URL generated successfully</td>\n<td>200 OK</td>\n<td><code>{ \"url\": \"https://...\" }</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"457b319a-2ba5-4c19-979c-dd9e6e18730e"}],"id":"e91cc03c-8a66-43b1-9f50-eb1d10e77d79","description":"<p>This section focuses on the setup and running of your investment platform, including:</p>\n<ul>\n<li>Creating and retrieving nodes</li>\n<li>Setting up and managing platform users</li>\n<li>Adding assets and prices</li>\n<li>Fees</li>\n<li>Notifications</li>\n<li>Dashboard information</li>\n<li>Spotting and escalating suspicious activity</li>\n</ul>\n","_postman_id":"e91cc03c-8a66-43b1-9f50-eb1d10e77d79"},{"name":"Client onboarding","item":[{"name":"The client object","item":[],"id":"7ed3530a-305b-4254-b1f7-5fd5e00d294d","description":"<p>The client object is used to store and manage information on the client (client type Individual and Indivual Minor, see Corporate clients and Trust clients for other client types).</p>\n<p>It's important the client's details are kept up to date as this will impact regulatory reporting – you can view updates made to the client record in the <code>updateHistory</code> array</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"middleName\": \"Anna\"\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"wflintstone@example.com\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"QQ123456A\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"QQ123456A\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}\n\n</code></pre>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client object</p>\n<hr />\n<p><code>firmId</code> alphanumerical string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> integer<br />The unique identifier for the firm node's account. This is a single number.</p>\n<hr />\n<p><code>clientType</code> string<br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Individual</code></td>\n<td>An adult client</td>\n</tr>\n<tr>\n<td><code>Individual minor</code></td>\n<td>A child client</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string<br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Dr</code></td>\n</tr>\n<tr>\n<td><code>Professor</code></td>\n</tr>\n<tr>\n<td><code>Mrs</code></td>\n</tr>\n<tr>\n<td><code>Miss</code></td>\n</tr>\n<tr>\n<td><code>Mr</code></td>\n</tr>\n<tr>\n<td><code>Ms</code></td>\n</tr>\n<tr>\n<td><code>Mx</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string<br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> array<br />Contains details of the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's home address</p>\n<hr />\n<p><code>addressDetail.country</code> string<br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = <code>GB</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string<br />The postcode of the client's home address</p>\n<hr />\n<p><code>language</code> string<br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = <code>en</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address – this must be unique to other clients on the platform</p>\n<hr />\n<p><code>mobile</code> array<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location for the client's mobile phone number – uses <code>isMobilePhone</code> from <a href=\"https://github.com/validatorjs/validator.js\">validator.js</a></p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string<br />The client's nationality</p>\n<hr />\n<p><code>nationalities</code> array<br />Contains details of the client's nationality/s and the relevant national identifier. Required for trading Exchange-Traded Instruments (ETIs)</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is a mandatory field for clients opening an ISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the ISO format – <code>YYYY-MM-DD</code></p>\n<hr />\n<p><code>taxDomicile</code> string<br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string<br />Before creating a client record, you must carry out necessary AML/KYC checks – once the client is deemed eligible, this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean<br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>status</code> string</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has passed KYC and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client has signed up but has not yet passed KYC or accepted platform terms</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>An illustration has been created for the client and a skeletal client record</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>bankDetails</code> array<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>employmentStatus</code> string</p>\n<p>The employment status of the client – this is required for clients opening a pension</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employed</code></td>\n</tr>\n<tr>\n<td><code>Retired</code></td>\n</tr>\n<tr>\n<td><code>Self Employed</code></td>\n</tr>\n<tr>\n<td><code>Care Under 16s</code></td>\n</tr>\n<tr>\n<td><code>Care Over 16</code></td>\n</tr>\n<tr>\n<td><code>Education</code></td>\n</tr>\n<tr>\n<td><code>Unemployed</code></td>\n</tr>\n<tr>\n<td><code>Other</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>maritalStatus</code> string</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Single</code></td>\n</tr>\n<tr>\n<td><code>Married</code></td>\n</tr>\n<tr>\n<td><code>Divorced</code></td>\n</tr>\n<tr>\n<td><code>Widowed</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>retirementAge</code> integer</p>\n<p>The date the client is expected to retire</p>\n<hr />\n<p><code>employers</code> array</p>\n<p>Contains details of the client's employer – only required where the client is making employer payments to their pension</p>\n<hr />\n<p><code>recordCreationDate</code> numerical string</p>\n<p>The date the client record was created in ISO format (YYYY-MM-DD)</p>\n<hr />\n<p><code>updateHistory</code> array</p>\n<p>Contains details of updates made to the client record</p>\n<hr />\n","_postman_id":"7ed3530a-305b-4254-b1f7-5fd5e00d294d"},{"name":"Create a client","item":[{"name":"Create a client from scratch","item":[{"name":"Individual clients","item":[{"name":"Create a client | Individual","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"33b07510-4774-46d2-93fb-4af0b465137c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms  <br />Mx</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client, required for pension clients but can be derived from title</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support. <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date). <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"a0428352-1414-4b2d-be68-54555996c5e4","name":"Create a client – Success: Client created","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"},{"id":"55cfac80-b006-49b2-9ce9-d933e3272f1f","name":"Create a client – Error: Provided identifier value does not match the required format","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"ABC1234D\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"nationalities\",\n                \"errorMessage\": \"The value of the provided National Insurance Number is not a valid format\",\n                \"type\": \"validNationality\"\n            }\n        ]\n    }\n}"},{"id":"b0a862ff-a2e2-40ea-bc88-e1c6543c99f8","name":"Create a client - PEP","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 22 Dec 2022 15:30:09 GMT"},{"key":"x-amzn-RequestId","value":"8723ef93-6397-429f-9806-575e3e116d63"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"djewBFuCDoEFc9g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-AVtFxTtzq2pglY6mHU7TQYDUVks\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63a477ff-4dd590a732de74c30b324a3e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4dd28c7d9439664c66fbf62f5cd00636.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"mmobsBjLHfQmAkDKYcYjWjJMaW0aNbE5SciHqFL4X4U9UVwlCTXLMw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02G876D\"\n    }\n}"}],"_postman_id":"33b07510-4774-46d2-93fb-4af0b465137c"},{"name":"Create a client | With CONCAT nationalities","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"8e9a95e7-c38b-46b0-a276-8601ade205b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"AT\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"AT\",\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms  <br />Mx</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client, required for pension clients but can be derived from title</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support. <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date). <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"eb31c74e-f511-4684-8935-6e3bf8d76997","name":"Create a client – Success: Client created with CONCAT identifier","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"AT\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"nationalities\": [\n      {\n          \"code\": \"AT\",\n          \"identifiers\": [\n              {\n                \"name\": \"CONCAT\",\n                \"available\": true,\n                \"value\": \"ABCDEF99A31A123A\"\n              }\n          ]\n      }\n  ],\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"}],"_postman_id":"8e9a95e7-c38b-46b0-a276-8601ade205b4"},{"name":"Create a client | With two nationalities and CONCAT priority","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"3d07594c-9fb9-411c-964e-dc9ac6058032","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"AT\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"AT\",\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\",\n                    \"priority\": 1\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms  <br />Mx</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client, required for pension clients but can be derived from title</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support. <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date). <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3ad70dc3-8fa4-469a-9ee8-70df34520cfc","name":"Create a client – Success: Client created with multiple nationalities and CONCAT priority","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"AT\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"nationalities\": [\n    {\n        \"code\": \"AT\",\n        \"identifiers\": [\n            {\n                \"name\": \"CONCAT\",\n                \"available\": true,\n                \"value\": \"ABCDEF99A31A123A\",\n                \"priority\": 0\n            }\n        ]\n    },\n    {\n        \"code\": \"GB\",\n        \"identifiers\": [\n            {\n                \"name\": \"National Insurance Number\",\n                \"available\": true,\n                \"value\": \"ABCDEF99A31A123A\",\n                \"priority\": 1\n            }\n        ]\n    }\n  ],\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"}],"_postman_id":"3d07594c-9fb9-411c-964e-dc9ac6058032"},{"name":"Create a client | With two nationalities and NINO priority","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"99b68021-2914-48ad-b792-92c899030bb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"AT\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"PL\",\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\",\n                    \"priority\": 0\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms  <br />Mx</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client, required for pension clients but can be derived from title</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support. <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date). <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f6e889af-001d-441b-bf0d-1cf39b13d42f","name":"Create a client – Success: Client created with multiple nationalities and NINO priority","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"AT\",\n  \"nationalities\": [\n    {\n        \"code\": \"AT\",\n        \"identifiers\": [\n            {\n                \"name\": \"CONCAT\",\n                \"available\": true,\n                \"value\": \"ABCDEF99A31A123A\",\n                \"priority\": 1\n            }\n        ]\n    },\n    {\n        \"code\": \"GB\",\n        \"identifiers\": [\n            {\n                \"name\": \"National Insurance Number\",\n                \"available\": true,\n                \"value\": \"ABCDEF99A31A123A\",\n                \"priority\": 0\n            }\n        ]\n    }\n  ],\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"}],"_postman_id":"99b68021-2914-48ad-b792-92c899030bb2"}],"id":"b55aaa97-abc0-419e-8ec8-df76993e8e78","description":"<p>This flow will show you how to create a new client record.</p>\n<p>Before sending the request, the client should pass through the journey below:</p>\n<ul>\n<li><p>Signs up and sets a password via your application's authentication system</p>\n</li>\n<li><p>Passes a AML/KYC check</p>\n</li>\n<li><p>Enters the required information</p>\n</li>\n<li><p>Views and accepts the platform terms</p>\n</li>\n</ul>\n<p>At this point, you can send the request to create the client record with a status of <code>Active</code> to indicate they are ready to trade</p>\n<h5 id=\"national-identifiers\">National Identifiers</h5>\n<p>For clients investing in Exchange Traded Instruments – including Exchange Traded Funds (ETFs), Investment Trusts, and Equities – there might be additional national identifiers required for non-GB or dual nationals in line with FCA regulation. Please refer to the <strong>Nationalities checker.</strong></p>\n<h5 id=\"pension-clients\">Pension clients</h5>\n<p>For clients looking to open a pension, there are some additional regulatory fields required. Please refer to the <strong>Pension</strong> flows.</p>\n","_postman_id":"b55aaa97-abc0-419e-8ec8-df76993e8e78"},{"name":"Corporate clients","item":[{"name":"Create a client | Corporate","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"corporateClientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"e4a78e7b-5ef3-4072-b411-fdc01cc758e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Corporate\",\n    \"entityName\": \"Bedrock Corp\",\n    \"entityDetails\": {\n        \"companyRegNo\": \"07845123\",\n        \"stakeholders\": [\n            {\n                \"role\": \"Director\",\n                \"clientId\": \"03B2D6F\",\n                \"clientAndAccountManagement\": false\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURSDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}\n","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client","description":"<p>Creates a new client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong><br />An array containing the node IDs associated with the firm</p>\n<hr />\n<p><code>nodeId[0]</code> string <strong>Required</strong><br />The node number in which the company will exist</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Corporate</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityName</code> string <strong>Required</strong><br />The name of the company</p>\n<hr />\n<p><code>entityDetails</code> object <strong>Required</strong><br />The details of the company</p>\n<hr />\n<p><code>entityDetails.companyRegNo</code> string <strong>Required</strong><br />The company registration number</p>\n<hr />\n<p><code>entityDetails.stakeholders</code> array <strong>Required</strong><br />The list of stakeholders associated with the entity. Must have at least one stakeholder object</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].role</code> string <strong>Required</strong></p>\n<p>The role of the stakeholder. <code>Significant Shareholder</code> must be associated with an AML verified <code>clientId</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Director  <br />Significant Shareholder  <br />Principal Or Partner</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityDetails.stakeholders[0].clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of an <code>Individual</code> client record already on the system</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].clientAndAccountManagement</code> boolean <strong>Required</strong></p>\n<p>Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true</p>\n<hr />\n<p><code>entityDetails.legalEntityIdentifier</code> string<br />The legal entity identifier for the client. 20 character alpha numeric string. Required for trading ETIs</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness</code> object<br />Information about the Know Your Business (KYB) checks. Corporate KYB and trust verification checks user scope required to add field</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness.checksPerformed</code> string<br />The date when Corporate KYB and trust verification checks were performed. Format: YYYY-MM-DD</p>\n<hr />\n<p><code>entityDetails.declarationAccepted</code> boolean<br />Indicates if the user has accepted the declaration statement. Must be true to create a corporate client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The corporate client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The corporate client's current place of business</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the corporate client's address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the corporate client's address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the corporate client's address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the corporate client's address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the corporate client's address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The country in which corporate client's address resides</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the corporate client's address</p>\n<hr />\n<p><code>bankDetails</code> object <strong>Required</strong><br />The corporate client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> string<br />The corporate client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> string<br />The corporate client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the corporate client has accepted the platform terms and conditions. Corporate KYB and trust verification checks user scope required to set to true</p>\n","urlObject":{"path":["client"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"ad632f62-20ec-4a4b-b2f6-8607912d181c","name":"201 | Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Corporate\",\n    \"entityName\": \"Bedrock Corp\",\n    \"entityDetails\": {\n        \"companyRegNo\": \"07845123\",\n        \"stakeholders\": [\n            {\n                \"role\": \"Director\",\n                \"clientId\": \"03B2D6F\",\n                \"clientAndAccountManagement\": false\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURSDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"000085D\"\n    }\n}"},{"id":"c3741e7f-1d5e-4621-a2d2-d64988024628","name":"400 | Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Corporate\",\n    \"entityDetails\": {\n        \"companyRegNo\": \"07845123\",\n        \"stakeholders\": [\n            {\n                \"role\": \"Director\",\n                \"clientId\": \"03B2D6F\",\n                \"clientAndAccountManagement\": false\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURSDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[0].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6F not found\"\n            },\n            {\n                \"fieldName\": \"entityName\",\n                \"errorMessage\": \"Entity name can't be blank\",\n                \"type\": \"presence\"\n            }\n        ]\n    }\n}"},{"id":"1f31baab-95c8-46e6-9db1-2745a993551f","name":"403 | Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"invalid"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Corporate\",\n    \"entityName\": \"Bedrock Corp\",\n    \"entityDetails\": {\n        \"companyRegNo\": \"07845123\",\n        \"stakeholders\": [\n            {\n                \"role\": \"Director\",\n                \"clientId\": \"03B2D6F\",\n                \"clientAndAccountManagement\": false\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURSDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"AccessDeniedError\",\n        \"errorMessage\": \"Session Id not authenticated\",\n        \"statusCode\": 403,\n        \"fieldErrors\": []\n    }\n}"},{"id":"45c27792-8b09-4413-b1a6-26402af3bbe3","name":"500 | Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Corporate\",\n    \"entityName\": \"Bedrock Corp\",\n    \"entityDetails\": {\n        \"companyRegNo\": \"07845123\",\n        \"stakeholders\": [\n            {\n                \"role\": \"Director\",\n                \"clientId\": \"03B2D6F\",\n                \"clientAndAccountManagement\": false\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURSDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true,\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"ServerError\",\n        \"errorMessage\": \"Something went wrong processing the request\",\n        \"statusCode\": 500,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"e4a78e7b-5ef3-4072-b411-fdc01cc758e6"}],"id":"3379f4e0-719e-48e3-8424-8ca4dcb0f814","description":"<p>This section provides you with all the information you need to add new corporate clients to the system with all necessary company details. This endpoint is designed to streamline the onboarding of corporate clients, ensuring that all required information is captured accurately and efficiently.</p>\n<p>Once the client record has been created, a GIA can be opened for the corporate client. This is created using the existing account opening flow, but is limited to advised only via <code>wrapperDetail.advised: true</code>.</p>\n","_postman_id":"3379f4e0-719e-48e3-8424-8ca4dcb0f814"},{"name":"Trust clients","item":[{"name":"Create a client | Trust","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"trustClientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"f69d285f-dc8f-4b2e-8927-8f762bd6ef96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            },\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"clientId\": \"03B2D70\",\n                \"role\": \"Beneficiary\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong><br />An array containing the node IDs associated with the firm</p>\n<hr />\n<p><code>nodeId[0]</code> string <strong>Required</strong><br />The node number in which the trust will exist</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Trust</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityName</code> string <strong>Required</strong><br />The name of the trust</p>\n<hr />\n<p><code>entityDetails</code> object <strong>Required</strong><br />The details of the trust</p>\n<hr />\n<p><code>entityDetails.type</code> string <strong>Required</strong><br />Classification or category of a trust based on its purpose</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Discretionary  <br />Bare  <br />Interest in possession  <br />Accumulation  <br />Mixed  <br />Settlor-interested</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityDetails.uniqueTrustReference</code> string<br />Identifier assigned to a trust to distinguish it from other trusts</p>\n<hr />\n<p><code>entityDetails.stakeholders</code> array <strong>Required</strong><br />The list of stakeholders associated with the entity. Must have at least one stakeholder object</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].role</code> string <strong>Required</strong></p>\n<p>The role of the stakeholder. <code>Significant Shareholder</code> must be associated with an AML verified <code>clientId</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Trustee  <br />Beneficiary  <br />Settlor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityDetails.stakeholders[0].clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of an <code>Individual</code> client record already on the system</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].clientAndAccountManagement</code> boolean</p>\n<p>Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].relationshipToBeneficiary</code> string</p>\n<p>Only valid for <code>Settlor</code>, in which it is required</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].sourceOfWealth</code> string<br />Only valid for <code>Settlor</code>, in which it is required</p>\n<hr />\n<p><code>entityDetails.legalEntityIdentifier</code> string<br />The legal entity identifier for the client. 20 character alpha numeric string. Required for trading ETIs</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness</code> object<br />Information about the Know Your Business (KYB) checks. Corporate KYB and trust verification checks user scope required to add field</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness.checksPerformed</code> string<br />The date when corporate KYB and trust verification checks user scope required to add field checks were performed. Format: YYYY-MM-DD</p>\n<hr />\n<p><code>entityDetails.declarationAccepted</code> boolean<br />Indicates if the user has accepted the declaration statement. Must be true to create a trust client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The trust client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The trust client's current place of business</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>bankDetails</code> object <strong>Required</strong><br />The trust client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> string<br />The trust client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> string<br />The trust client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the trust client has accepted the platform terms and conditions. Corporate KYB and trust verification checks user scope required to set to true</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"54129cf3-2696-4647-ba61-dcf39f2c462f","name":"201 | Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            },\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"clientId\": \"03B2D70\",\n                \"role\": \"Beneficiary\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"000085E\"\n    }\n}"},{"id":"5fcb144c-92ea-4fa8-8601-8f93a484351d","name":"400 | Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            },\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"clientId\": \"03B2D70\",\n                \"role\": \"Beneficiary\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[0].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6F not found – 'role' is set to 'Settlor'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[1].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6G not found – 'clientAndAccountManagement' is set to 'true'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[1].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6G not found – 'role' is set to 'Trustee'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[2].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D70 not found – 'role' is set to 'Beneficiary'\"\n            }\n        ]\n    }\n}"},{"id":"d3d46d88-ae19-45df-a6b6-3a3ce9321150","name":"403 | Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Bearer {{YOUR_API_TOKEN}}","value":"invalid"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            },\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"clientId\": \"03B2D70\",\n                \"role\": \"Beneficiary\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"AccessDeniedError\",\n        \"errorMessage\": \"Session Id not authenticated\",\n        \"statusCode\": 403,\n        \"fieldErrors\": []\n    }\n}"},{"id":"aeae0a64-3e58-4e82-aba4-f9851816d243","name":"500 | Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            },\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"clientId\": \"03B2D70\",\n                \"role\": \"Beneficiary\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true,\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"ServerError\",\n        \"errorMessage\": \"Something went wrong processing the request\",\n        \"statusCode\": 500,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"f69d285f-dc8f-4b2e-8927-8f762bd6ef96"},{"name":"Create a client | Trust charity","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"trustClientId\", data.data.id)"],"type":"text/javascript","packages":{},"requests":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"58c7705c-8a9b-4fe8-8f6d-5324968dee0b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Charity\",\n        \"uniqueCharityreference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"addressDetail\": {\n        \"flatNumber\": \"80\",\n        \"address1\": \"Brady Village\",\n        \"address2\": \"Huntsville\",\n        \"country\": \"GB\",\n        \"postCode\": \"XXXX XXX\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong><br />An array containing the node IDs associated with the firm</p>\n<hr />\n<p><code>nodeId[0]</code> string <strong>Required</strong><br />The node number in which the trust will exist</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Trust</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityName</code> string <strong>Required</strong><br />The name of the trust</p>\n<hr />\n<p><code>entityDetails</code> object <strong>Required</strong><br />The details of the trust</p>\n<hr />\n<p><code>entityDetails.type</code> string <strong>Required</strong><br />Classification or category of a trust based on its purpose</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Charity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityDetails.uniqueCharityReference</code> string<br />Identifier assigned to a charity to distinguish it from other charities</p>\n<hr />\n<p><code>entityDetails.stakeholders</code> array <strong>Required</strong><br />The list of stakeholders associated with the entity. Must have at least one stakeholder object</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].role</code> string <strong>Required</strong></p>\n<p>The role of the stakeholder. Charity trust clients can only have <code>Trustee</code> stakeholders.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Trustee</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>entityDetails.stakeholders[0].clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of an <code>Individual</code> client record already on the system</p>\n<hr />\n<p><code>entityDetails.stakeholders[0].clientAndAccountManagement</code> boolean</p>\n<p>Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true</p>\n<hr />\n<p><code>entityDetails.legalEntityIdentifier</code> string<br />The legal entity identifier for the client. 20 character alpha numeric string. Required for trading ETIs</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness</code> object<br />Information about the Know Your Business (KYB) checks. Corporate KYB and trust verification checks user scope required to add field</p>\n<hr />\n<p><code>entityDetails.knowYourBusiness.checksPerformed</code> string<br />The date when corporate KYB and trust verification checks user scope required to add field checks were performed. Format: YYYY-MM-DD</p>\n<hr />\n<p><code>entityDetails.declarationAccepted</code> boolean<br />Indicates if the user has accepted the declaration statement. Must be true to create a trust client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The trust client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The trust client's current place of business</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>bankDetails</code> object <strong>Required</strong><br />The trust client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> string<br />The trust client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> string<br />The trust client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the trust client has accepted the platform terms and conditions. Corporate KYB and trust verification checks user scope required to set to true</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"47be28ee-7cb4-4e57-87cf-6150446b82ff","name":"201 | Created","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Charity\",\n        \"uniqueCharityReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"addressDetail\": {\n        \"flatNumber\": \"886\",\n        \"address1\": \"Murphy Motorway\",\n        \"address2\": \"Lake Shanna\",\n        \"country\": \"GB\",\n        \"postCode\": \"XXX XXXX\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"000085E\"\n    }\n}"},{"id":"95beef39-04ff-45cd-819f-24740ac63129","name":"400 | Bad Request","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Discretionary\",\n        \"uniqueTrustReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6F\",\n                \"role\": \"Settlor\",\n                \"relationshipToBeneficiary\": \"Parent\",\n                \"sourceOfWealth\": \"Inheritance\"\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[0].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6F not found – 'role' is set to 'Settlor'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[1].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6G not found – 'clientAndAccountManagement' is set to 'true'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[1].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D6G not found – 'role' is set to 'Trustee'\"\n            },\n            {\n                \"type\": \"codependence – stakeholderId\",\n                \"fieldName\": \"entityDetails.stakeholders[2].clientId\",\n                \"errorMessage\": \"Stakeholder with id 03B2D70 not found – 'role' is set to 'Beneficiary'\"\n            }\n        ]\n    }\n}"},{"id":"8b6c8d2e-4e19-4faa-8a68-66d63e4bb306","name":"403 | Forbidden","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Bearer {{YOUR_API_TOKEN}}","value":"invalid"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Charity\",\n        \"uniqueCharityReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"addressDetail\": {\n        \"flatNumber\": \"268\",\n        \"address1\": \"Mueller Crest\",\n        \"address2\": \"Lewisport\",\n        \"country\": \"GB\",\n        \"postCode\": \"XXX XXXX\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"AccessDeniedError\",\n        \"errorMessage\": \"Session Id not authenticated\",\n        \"statusCode\": 403,\n        \"fieldErrors\": []\n    }\n}"},{"id":"e391f6bd-5a9d-4ca7-a4bc-9092e92bcae3","name":"500 | Internal Server Error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Trust\",\n    \"entityName\": \"Bedrock Trust\",\n    \"entityDetails\": {\n        \"type\": \"Charity\",\n        \"uniqueCharityReference\": \"1234567890\",\n        \"stakeholders\": [\n            {\n                \"clientId\": \"03B2D6G\",\n                \"role\": \"Trustee\",\n                \"clientAndAccountManagement\": true\n            }\n        ],\n        \"legalEntityIdentifier\": \"529900T8BM49AURDDO55\",\n        \"knowYourBusiness\": {\n            \"checksPerformed\": \"2024-05-20\"\n        },\n        \"declarationAccepted\": true\n    },\n    \"currency\": \"GBP\",\n    \"language\": \"en\",\n    \"taxDomicile\": \"GB\",\n    \"bankDetails\": {\n        \"sortCode\": \"123456\",\n        \"accountNumber\": \"12345678\"\n    },\n    \"addressDetail\": {\n        \"flatNumber\": \"83\",\n        \"address1\": \"Jaylin Parks\",\n        \"address2\": \"Mannport\",\n        \"country\": \"GB\",\n        \"postCode\": \"XXX XXXX\"\n    },\n    \"termsAccepted\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"json","header":[{},{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"ServerError\",\n        \"errorMessage\": \"Something went wrong processing the request\",\n        \"statusCode\": 500,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"58c7705c-8a9b-4fe8-8f6d-5324968dee0b"}],"id":"0dc25664-cd1c-4d4a-b2cc-97fec87e322e","description":"<p>This section provides you with all the information you need to add new trust clients to the system with all necessary trust details. This endpoint is designed to streamline the onboarding of trust clients, ensuring that all required information is captured accurately and efficiently.</p>\n<p>All trust types must have at least one stakeholder. Stakeholder validation for a <code>Bare</code> Trust differs slightly to other trust types, and requires one <code>Beneficiary</code> stakeholder, and one <code>Trustee</code> stakeholder with <code>clientAndAccountManagement</code> set to true.</p>\n<p>Once the client record has been created, a GIA can be opened for the trust client. This is created using the existing account opening flow, but is limited to advised only via <code>wrapperDetail.advised: true</code>.</p>\n","_postman_id":"0dc25664-cd1c-4d4a-b2cc-97fec87e322e"}],"id":"87c7bdec-a921-4df2-bee5-133082ad4279","description":"<p>This section lays out how to create our different client types.</p>\n<p>We have three types of clients</p>\n<ul>\n<li><p>Individual client</p>\n</li>\n<li><p>Corporate client</p>\n</li>\n<li><p>Trust client</p>\n</li>\n</ul>\n<p>Each client type has different requirements in order to support the types of accounts available under each client type.</p>\n<p>If a client has already been created via the illustration route the remaining required fields should be updated through the PUT request listed <a href=\"https://seccl-1.postman.co/workspace/6cedc952-07bb-4ba1-81c4-30de15877671/request/25991236-7f55ae41-d409-4ccd-b8b9-3914f2ca3a5b?action=share&amp;source=copy-link&amp;creator=25991236&amp;ctx=documentation\">here</a></p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"8919397b-e653-46fd-8a76-3cb01f36a39a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"b434e2e2-8324-4990-8510-b5722870b3fb"}}],"_postman_id":"87c7bdec-a921-4df2-bee5-133082ad4279"},{"name":"Create a client through an illustration","item":[{"name":"Create a client through an illustration","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"illustrationId\", data.data.id)"],"type":"text/javascript","id":"8f3d0a95-7b4e-474d-b5ca-9c62fb9df1ab"}}],"id":"ad427360-a258-40a3-b075-dbec0a8fa4f3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"New Home\",\n    \"firmId\": \"{{firmId}}\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Jane Adviser\",\n        \"FCANumber\": \"290920\",\n        \"company\": \"ABC Advice Ltd\"\n    },\n    \"clientInfo\": {\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"email\": \"wilmaflintstone56@example.com\",\n        \"dateOfBirth\": \"1983-10-01T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-08-23\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"ISA\",\n    \"withdrawals\": {\n        \"singleWithdrawals\": [],\n        \"regularWithdrawals\": []\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"initialAdviserCharge\": {},\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 10000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-09-16\",\n                \"paymentAmount\": 23000,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-08-30\",\n                \"toDate\": \"2032-08-30\",\n                \"paymentAmount\": 600,\n                \"percentageGrowth\": 0.02,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product","description":"<p>Returns the <code>illustrationId</code>, <code>clientId</code>, <code>firmId</code> and <code>status</code>.</p>\n<p>Illustrations can be generated for ISAs, GIAs and pensions and can use either a model or a set of transactions.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>clientInfo</code> array <strong>Required</strong></p>\n<p>Contains details of the new client</p>\n<hr />\n<p><code>clientInfo.title</code> string </p>\n<p>The title of the client</p>\n<hr />\n<p><code>clientInfo.firstName</code> string <strong>Required</strong></p>\n<p>The first name of the client</p>\n<hr />\n<p><code>clientInfo.surname</code> string <strong>Required</strong></p>\n<p>The surname of the client</p>\n<hr />\n<p><code>clientInfo.email</code> string <strong>Required</strong></p>\n<p>The email of the client</p>\n<hr />\n<p><code>clientInfo.dateOfBirth</code> string <strong>Required</strong></p>\n<p>The date of birth of the client in ISO format (YYYY-MM-DD)</p>\n<hr />\n<p><code>clientInfo.clientType</code> string <strong>Required</strong></p>\n<p>The type of client – this should be set to <code>Individual</code></p>\n<hr />\n<p><code>clientInfo.language</code> string <strong>Required</strong></p>\n<p>This should be set to <code>en-GB</code></p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>planLengthYear</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in years</p>\n<hr />\n<p><code>periods</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in months</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>GIA</code> or <code>ISA</code></p>\n<hr />\n<p><code>withdrawals</code> array</p>\n<p>Contains details of withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals</code> array</p>\n<p>Contains details of single withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.date</code> numerical string</p>\n<p>The date of the withdrawal is expected to be instructed</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.amount</code> float</p>\n<p>The withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals</code> array</p>\n<p>Contains details of regular withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.date</code> numerical string</p>\n<p>The first date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.endDate</code> numerical string</p>\n<p>The end date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.amount</code> float</p>\n<p>The regular withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.frequency</code></p>\n<p>The frequency of the regular withdrawal – this should be set to <code>Monthly</code></p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set <code>Monthly</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> array</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> array</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> array <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Required if not including</strong> <strong><code>modelId</code></strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Required if not including</strong> <strong><code>transactions</code></strong> <strong>array</strong></p>\n<p>The unique identifier of the model the account will invested in</p>\n<hr />\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2942764b-35d6-427f-afa6-0a0c7e439ab4","name":"Create a client through an illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"New Home \",\n    \"firmId\": \"SECCI\",\n    \"clientInfo\": {\n        \"title\": \" \",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"email\": \"wilmaflintstone@bedrock.com\",\n        \"dateOfBirth\": \"1983-10-01\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-08-23\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"ISA\",\n    \"withdrawals\": {\n        \"singleWithdrawals\": [],\n        \"regularWithdrawals\": []\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"initialAdviserCharge\": {},\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 10000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-09-16\",\n                \"paymentAmount\": 23000,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-08-30\",\n                \"toDate\": \"2032-08-30\",\n                \"paymentAmount\": 600,\n                \"percentageGrowth\": 0.02,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 Aug 2022 14:28:17 GMT"},{"key":"x-amzn-RequestId","value":"9fe8fba2-24b6-4f82-b14a-5b5d4d165de6"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XUiQJE9lDoEFyzQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-r6JKK4+q79Omjqrd5dNiqvkFOiQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6304e400-1c0c08cd02d483085707145f;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 48e4ae8ebef8c772e9f38b0ce2960754.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"2ftAqep6QrQYn1tleLvQXOUi9-vL8-yciYQsK80PNRmgk-P6kc1DLw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6304e401573554558866d548\",\n        \"clientId\": \"0268HC7\",\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"},{"id":"dcc4f0ef-75e0-4468-a2d6-988d4c2a556b","name":"Create a client through an illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's ISA\",\n    \"firmId\": \"SECCI\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Jane\",\n        \"FCANumber\": \"1234563\",\n        \"company\": \"ABC Advice\"\n    },\n    \"clientInfo\": {\n        \"title\": \" \",\n        \"firstName\": \"Barney\",\n        \"surname\": \"Rubble\",\n        \"email\": \"barney.rubble@email.com\",\n        \"dateOfBirth\": \"1975-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-08-29\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"ISA\",\n    \"withdrawals\": {\n        \"singleWithdrawals\": [\n            {\n                \"date\": \"2022-11-30\",\n                \"amount\": 4000\n            }\n        ],\n        \"regularWithdrawals\": [\n            {\n                \"date\": \"2022-09-01\",\n                \"endDate\": \"2032-09-01\",\n                \"amount\": 120,\n                \"percentageGrowth\": 0.02,\n                \"frequency\": \"Monthly\"\n            }\n        ]\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": true,\n        \"adviserTieredCharges\": {\n            \"tiers\": [\n                {\n                    \"toAmount\": 50000,\n                    \"rate\": 0.004,\n                    \"fromAmount\": 0\n                },\n                {\n                    \"toAmount\": 100000,\n                    \"rate\": 0.002,\n                    \"fromAmount\": 50000.01\n                }\n            ]\n        },\n        \"discretionaryManagementCharge\": 0.002,\n        \"initialAdviserCharge\": {\n            \"amount\": 250,\n            \"percent\": 0.01\n        },\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 5000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-08-29\",\n                \"paymentAmount\": 1000,\n                \"contributor\": \"Employee\",\n                \"movementType\": \"In\"\n            },\n            {\n                \"paymentDate\": \"2022-09-05\",\n                \"paymentAmount\": 45000,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-09-30\",\n                \"toDate\": \"2032-09-30\",\n                \"paymentAmount\": 150,\n                \"percentageGrowth\": 0.02,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 Aug 2022 14:28:17 GMT"},{"key":"x-amzn-RequestId","value":"9fe8fba2-24b6-4f82-b14a-5b5d4d165de6"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XUiQJE9lDoEFyzQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-r6JKK4+q79Omjqrd5dNiqvkFOiQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6304e400-1c0c08cd02d483085707145f;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 48e4ae8ebef8c772e9f38b0ce2960754.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"2ftAqep6QrQYn1tleLvQXOUi9-vL8-yciYQsK80PNRmgk-P6kc1DLw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6304e401573554558866d548\",\n        \"clientId\": \"0268HC7\",\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"}],"_postman_id":"ad427360-a258-40a3-b075-dbec0a8fa4f3"},{"name":"Generate the illustration PDF","id":"a36f10f2-3369-4f6a-a74d-7de896fe82b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{illustrationId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"GENERATE_ILLUSTRATION_DOC\",\n    \"fileType\": \"ILLUSTRATION\"\n}"},"url":"{{apiRoute}}/files/generate","description":"<p>Returns a successful array</p>\n<p>This request converts the projections calculated by the provided information, into a PDF document that you can make available to the client or include in their suitability pack</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GENERATE_ILLUSTRATION_DOC</code></p>\n<hr />\n<p><code>fileType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ILLUSTRATION</code></p>\n<hr />\n","urlObject":{"path":["files","generate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a36f10f2-3369-4f6a-a74d-7de896fe82b0"},{"name":"Download the illustration PDF","id":"62203d9c-7e5f-46f3-8682-56d87f1c91fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"clientId\": \"{{clientId}}\",\n  \"firmId\": \"{{firmId}}\",\n  \"id\": \"{{illustrationId}}\"\n}"},"url":"{{apiRoute}}/files/illustration","description":"<p>Returns the <code>illustrationId</code> and the link to the PDF URL</p>\n<p><strong>Please note: This should only be requested AFTER the generate illustration request has been made</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client that the illustration was generated for</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your platform</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n","urlObject":{"path":["files","illustration"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"62203d9c-7e5f-46f3-8682-56d87f1c91fb"},{"name":"Retrieve a client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"e4f0c673-2274-4641-aa1b-91f2d2ed085a"}}],"id":"91ddd38a-21eb-4353-b097-8e43cfd2e6de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Returns the client object of the specified <code>clientId</code></p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91ddd38a-21eb-4353-b097-8e43cfd2e6de"},{"name":"Update registered client to active","id":"2bbb2f96-e190-4a95-9238-d919f25e5df9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{clientId}}\",\n    \"updateAction\": \"CompleteRegisteredClient\",\n    \"updateReason\": \"Missing client details provided\",\n    \"updateData\": {\n        \"status\": \"Pending\",\n        \"title\": \"Ms\",\n        \"email\": \"wilmaflintstone@seccl.tech\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"addressDetail\": {\n            \"buildingName\": \"Rubble House\",\n            \"address1\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"BR1 6PR\"\n        },\n        \"bankDetails\": {\n            \"sortCode\": \"123122\",\n            \"accountNumber\": \"21312322\"\n        },\n        \"requiresDebitMandate\": false,\n        \"currency\": \"GBP\",\n        \"amlStatus\": \"Approved\",\n        \"termsAccepted\": true,\n        \"clientType\": \"Individual\",\n        \"dateOfBirth\": \"1995-10-30T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"nationalInsuranceNo\": \"PC672672C\",\n        \"nationality\": \"GB\",\n        \"nationalities\": [\n            {\n                \"code\": \"GB\",\n                \"identifiers\": [\n                    {\n                        \"name\": \"National Insurance Number\",\n                        \"value\": \"PC672672C\",\n                        \"available\": true\n                    }\n                ]\n            }\n        ]\n    }\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Returns a successful array</p>\n<p>This request can be used once the client has viewed the illustration provided. It must be used with an update action of <code>CompleteRegisteredContact.</code></p>\n<p>When the additional mandatory information required for the client is provided with the status set to <code>Pending</code>, following validation the status of the account will be automatically updated to <code>Active</code>.</p>\n<p><strong>Please note: This should only be done after the client has passed the KYC check and viewed and accepted the platform terms</strong></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>id</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong><br />The action taken on the account – this should be set to <code>CompletedRegisteredClient</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong></p>\n<p>The reason why the action was taken on the client – this should be set to <code>Missing client details provided</code></p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the updates made to the client record</p>\n<hr />\n<p><code>updateData.status</code> array <strong>Required</strong></p>\n<p>Must be set to \"Pending\" for the <code>CompletedRegisteredClient</code> update action. The system will update this to \"Active\" when the process is complete</p>\n<hr />\n<p><code>updateData.clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Corporate  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>updateData.title</code> string<br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>updateData.gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>updateData.currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>updateData.addressDetail</code> array <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>updateData.addressDetail.flatNumber</code> or <code>updateData.addressDetail.buildingName</code> or <code>updateData.addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>updateData.addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>updateData.addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>updateData.addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>updateData.addressDetail.postCode</code> string <strong>Required</strong></p>\n<p>The postcode of the client's legal home address</p>\n<hr />\n<p><code>updateData.mobile</code> array<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>updateData.mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>updateData.mobile.locale</code> string<br />The geographical location for the client's mobile phone number</p>\n<hr />\n<p><code>updateData.mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>updateData.nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>updateData.nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening a ISA, JISA or SIPP</p>\n<hr />\n<p><code>updateData.taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>updateData.amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>updateData.termsAccepted</code> boolean<br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>updateData.bankDetails</code> array<br />The client's bank details</p>\n<hr />\n<p><code>updateData.bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>updateData.bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>updateData.nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2bbb2f96-e190-4a95-9238-d919f25e5df9"}],"id":"bf0f8307-e2b3-4931-9090-f1cb794eb09b","description":"<p>You can use this set of requests to generate a product illustration and a client record with minimal information. The illustration can be provided to the client ahead of fully onboarding to the platform.</p>\n<p>The product illustration can be used in client suitabilities and covers pre-cost disclosures under MiFID II.</p>\n<p>Client records created via this route have a status of <code>Registered</code> – this indicates that an illustration has been generated for them but the client is missing some of the mandatory information to make <code>Active</code> and ready to trade.</p>\n<p>The user flow to create a client through an illustration is as follows:</p>\n<ul>\n<li>Enter the required information to create the skeletal client record</li>\n<li>Complete the required fields to create the illustration</li>\n<li>Download the illustration and make it available to the client</li>\n</ul>\n<p>When the client has reviewed the illustration and is ready to fully onboard to the platform, the client:</p>\n<ul>\n<li>Signs up and sets a password</li>\n<li>Passes the AML/KYC check</li>\n<li>Enters the outstanding information</li>\n<li>Views and accepts the platform terms</li>\n</ul>\n<p>At this point, you can send the request to update the client record and move the status from <code>Registered</code> to <code>Active</code>.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"0bf64879-5945-4cae-b82c-bac653a700d3"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"efd8579d-5a21-4fce-abb2-bd731f364f57"}}],"_postman_id":"bf0f8307-e2b3-4931-9090-f1cb794eb09b"}],"id":"b0542061-050e-476e-b754-9db18c132638","description":"<p>This section covers the below flows:</p>\n<ol>\n<li>Nationalities checker</li>\n<li>Create a client from scratch</li>\n<li>Create a client from an illustration</li>\n</ol>\n<p>To create a pension client, which requires additional fields, please see the Pension flows under Investment Accounts.</p>\n<p>When trading Exchange-Traded instruments (ETIs), you are required to declare the client's nationality and confirm the relevant national identifiers. This flow is outlined under \"Nationalities checker\" and should be used before creating the actual client record on our platform.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"44dfce54-e6d6-40c7-82fa-5b6c45023496"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"48fe9bc0-1f9e-47bd-a540-49b95656d18b"}}],"_postman_id":"b0542061-050e-476e-b754-9db18c132638"},{"name":"Retrieve a client","item":[{"name":"Retrieve a client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"d7b6b02f-fd8f-4b41-9050-452f4ed47ca2"}}],"id":"1975a5ea-77dd-4c81-accf-6dbdf86cecce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Retrieves a specific client record using <code>firmId</code> and <code>clientId</code></p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"dc903922-d98f-48db-b50a-8802df4ccaec","name":"Retrieve a client","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02692H8\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient248254@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB340890C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": true,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\"\n        },\n        \"emailVerified\": true,\n        \"mobileVerified\": false,\n        \"smsToken\": \"384929\",\n        \"smsTokenExpiry\": \"2022-08-24T12:35:59.162Z\",\n        \"status\": \"Active\",\n        \"nodeName\": [\n            \"Seccl Invest\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"termsAcceptedDate\": \"2022-08-24T12:25:59.252Z\",\n        \"amlData\": {\n            \"checkDate\": \"2022-08-24T12:25:59.252Z\",\n            \"checkNode\": [\n                \"0\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"BYPASSED\",\n            \"checks\": []\n        },\n        \"recordCreationDate\": \"2022-08-24T12:25:59.252Z\",\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-08-24T12:25:59.375Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"630618d785ba3ad5bf63731e\",\n        \"updateHistory\": [],\n        \"externalIds\": []\n    }\n}"}],"_postman_id":"1975a5ea-77dd-4c81-accf-6dbdf86cecce"},{"name":"List clients","id":"b3242b2f-fab5-4ec3-a052-ca7f95b38097","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}?pageSize=100&page=1","description":"<p>Retrieves all client records on the platform</p>\n","urlObject":{"path":["client","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"status","value":"Active"},{"key":"pageSize","value":"100"},{"key":"page","value":"1"},{"disabled":true,"key":"firstName","value":""},{"disabled":true,"key":"surname","value":""},{"disabled":true,"key":"nodeId","value":""},{"disabled":true,"description":{"content":"<p>Search by the externalReference provided on client creation</p>\n","type":"text/plain"},"key":"externalReference","value":""},{"disabled":true,"key":"status","value":""}],"variable":[]}},"response":[],"_postman_id":"b3242b2f-fab5-4ec3-a052-ca7f95b38097"}],"id":"c810e3ac-b5cb-4ce7-8d69-a030cae53c26","description":"<p>This section allows you to:</p>\n<ul>\n<li>Retrieve a specific client record</li>\n<li>Retrieve all clients records on the platform</li>\n</ul>\n","_postman_id":"c810e3ac-b5cb-4ce7-8d69-a030cae53c26"},{"name":"Update a client","item":[{"name":"Individual clients","item":[{"name":"Retrieve a client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"6c859c5f-bf6c-4004-a8d5-464cfa56304f"}}],"id":"ac4d5334-a774-4258-bf2f-e8bf5470481d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Retrieves the client object – you can use this request to retrieve the <code>updateId</code> of the record</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac4d5334-a774-4258-bf2f-e8bf5470481d"},{"name":"Update client fields","id":"7fde2795-8404-45d8-9e24-4a3c44d099bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientupdateId}}\",\n    \"name\": \"Steven\",\n    \"bankDetails\": {\n        \"sortCode\": \"222222\",\n        \"accountNumber\": \"88888888\"\n    },\n    \"email\": \"steven1@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>You can update multiple fields at once using this request</p>\n<p>Returns a successful response</p>\n<p><strong>Please note: When you update an object/array on the client record, the whole object/array will be overwritten. Existing fields within the array should be included in the request body.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b0205eb4-7920-4c24-8e1f-a6d63136fdbe","name":"Update Client fields – National Identifiers","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientupdateId}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"IT\",\n            \"identifiers\": [\n                {\n                    \"name\": \"Fiscal Code\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\"\n                }\n            ]\n        },\n        {\n            \"code\": \"RO\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"7fde2795-8404-45d8-9e24-4a3c44d099bc"},{"name":"Update client to PEP or sanctioned","id":"2b628510-8bdd-4daa-9064-059744230c78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>You can update a client to a PEP or flag as sanctioned using this request.</p>\n<p>Returns a successful response</p>\n<h4 id=\"url-parameters\">URL parameters</h4>\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the client record</p>\n<hr />\n<h4 id=\"body-parameters\">Body parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"32c73739-85bc-4fec-b288-0de4f914d6c2","name":"Update client to PEP or sanctioned","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"64d378de766b542d1105002e\",\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 09 Aug 2023 11:31:50 GMT"},{"key":"x-amzn-RequestId","value":"f628daf5-6dcb-41ca-a698-7dfcafb7349e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"JY_d-Er9joEF43A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-64d37925-7a3982ee4be038072ecde00d;Sampled=0;lineage=2ce6d6c0:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1bc76a14967a660022b25f573baec632.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"AMS54-C1"},{"key":"X-Amz-Cf-Id","value":"_kDbjFdaoQpUrKqX6VSzONfEOjMOZEUM20s_RU1yrNtDQ9gDLtKUZw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"2b628510-8bdd-4daa-9064-059744230c78"},{"name":"Update client to vulnerable status","id":"8ea99e54-4b4a-43ed-a483-326cc0af7716","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>You can update a client to 'vulnerable' status</p>\n<p>Returns a successful response</p>\n<h4 id=\"url-parameters\">URL parameters</h4>\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the client record</p>\n<hr />\n<h4 id=\"body-parameters\">Body parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date)</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7148f563-46d2-4cc1-a71a-d1cf321828ec","name":"Update client to vulnerable status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"64d378de766b542d1105002e\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 09 Aug 2023 11:31:50 GMT"},{"key":"x-amzn-RequestId","value":"f628daf5-6dcb-41ca-a698-7dfcafb7349e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"JY_d-Er9joEF43A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-64d37925-7a3982ee4be038072ecde00d;Sampled=0;lineage=2ce6d6c0:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1bc76a14967a660022b25f573baec632.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"AMS54-C1"},{"key":"X-Amz-Cf-Id","value":"_kDbjFdaoQpUrKqX6VSzONfEOjMOZEUM20s_RU1yrNtDQ9gDLtKUZw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"8ea99e54-4b4a-43ed-a483-326cc0af7716"},{"name":"Update client date of death confirmation","id":"20e5c828-daff-43d1-8049-ab430bb38b68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n          \"updateAction\": \"SetDateOfDeathConfirmation\",\n          \"updateReason\": \"The Client passed away confirmed\",\n          \"updateData\": {\n                \"dateOfDeathConfirmation\": \"2022-10-11\"\n          }\n      }"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Updates the date the client's death was confirmed</p>\n<p>To view updates, retrieve the client using the <code>clientId</code></p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong></p>\n<p>The update type – set to <code>SetDateOfDeathConfirmation</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong></p>\n<p>Free format narrative for the reason the update is made</p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the update to be made</p>\n<hr />\n<p><code>updateData.dateOfDeathConfirmation</code> array <strong>Required</strong></p>\n<p>The client's date of death confirmation in ISO format (YYYY-MM-DD)</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20e5c828-daff-43d1-8049-ab430bb38b68"},{"name":"Update date of death","id":"3356ef96-c00b-48c8-97b7-37b29a80876b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"SetDateOfDeath\",\n    \"updateReason\": \"The Client passed away\",\n    \"updateData\": {\n        \"dateOfDeath\": \"2022-10-10\"\n    }\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Updates a client's date of death</p>\n<p>To view updates, retrieve the client using the <code>clientId</code></p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong><br />The update type – set to <code>SetDateofDeath</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong><br />Free format narrative for the reason the update is made</p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the update to be made</p>\n<hr />\n<p><code>updateData.dateOfDeath</code> array <strong>Required</strong></p>\n<p>The client's date of death in ISO format (YYYY-MM-DD)</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3356ef96-c00b-48c8-97b7-37b29a80876b"},{"name":"Update client to active (terms accepted)","id":"f6fe2dde-b685-4fe6-9651-0beaf4c20b68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendTermsAccepted\",\n    \"updateReason\": \"The client has accepted the terms\",\n    \"updateData\": {\n        \"termsAccepted\": true\n    }\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Updates the client record with accepted terms and sets account status to active.</p>\n<p>To view updates, retrieve the client using the <code>clientId</code></p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong><br />The update type – set to <code>AmendTermsAccepted</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong><br />Free format narrative for the reason the update is made</p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the update to be made</p>\n<hr />\n<p><code>updateData.termsAccepted</code> boolean <strong>Required</strong></p>\n<p>To set the client's active to status, they must accept the platform terms and condition. This should be set to <code>true</code></p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f6fe2dde-b685-4fe6-9651-0beaf4c20b68"}],"id":"29ed2c3a-f8ec-4648-b087-b4610af20139","description":"<p>In this folder you will find typical scenarios for updating Individual clients</p>\n","_postman_id":"29ed2c3a-f8ec-4648-b087-b4610af20139"},{"name":"Corporate clients","item":[],"id":"dd3bfc18-1d39-40ca-a774-fcae5cd4dc61","description":"<h1 id=\"patch-client\">PATCH /client</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint is used to update a Corporate client for a firm to manage their investments. It allows users to update information about the corporate client, including their address, entity details, and stakeholders.</p>\n<ul>\n<li><p><strong>URL</strong>: <code>/client</code></p>\n</li>\n<li><p><strong>Method</strong>: <code>PATCH</code></p>\n</li>\n<li><p><strong>Authentication</strong>: <code>API Token</code></p>\n</li>\n</ul>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"url-parameters\">URL Parameters</h3>\n<p>No URL parameters are required for this endpoint.</p>\n<h3 id=\"headers\">Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>The content type of the request body</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>Authorization</code></td>\n<td><code>Bearer {{YOUR_API_TOKEN}}</code></td>\n<td>The API token for authentication</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>Only updateId is a required field which can be retrieved from the GET /client endpoint.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"entityName\": \"New Entity Name\",\n    \"entityDetails\": { \n       \"legalEntityIdentifier\": \"529900T8BM49AURSDO55Ï\"\n    }\n}\n\n</code></pre>\n<h3 id=\"field-descriptions\">Field Descriptions</h3>\n<p>All field descriptions are as per the create corporate client flows. Some fields are locked down and cannot be changed. You can find a list of fields that can be updated below:</p>\n<ul>\n<li><p><code>nodeId</code> (array of strings, <strong>required</strong>): An array containing the node IDs associated with the firm.</p>\n<ul>\n<li><code>nodeId[0]</code> (string, <strong>required</strong>): The node number in which the entity will exist.</li>\n</ul>\n</li>\n<li><p><code>currency</code> (string, <strong>required</strong>): The currency code for the entity. Use <code>GBP</code>.</p>\n</li>\n<li><p><code>language</code> (string, <strong>required</strong>): The language code for the entity. Use <code>en</code>.</p>\n</li>\n<li><p><code>taxDomicile</code> (string, <strong>required</strong>): The entity's tax domicile country code. Use <code>GB</code>.</p>\n</li>\n<li><p><code>addressDetail</code> (object, <strong>required</strong>): The address details of the entity.</p>\n<ul>\n<li><p><code>buildingNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>301</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>buildingName</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>Building Name</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>flatNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>301</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>address1</code> (string, <strong>required</strong>): The first line of the address. Example: <code>Cobblestone Way</code>.</p>\n</li>\n<li><p><code>address2</code> (string, <strong>optional</strong>): The second line of the address. Example: <code>Bedrock</code>.</p>\n</li>\n<li><p><code>country</code> (string, <strong>required</strong>): The country code for the address. Example: <code>GB</code>.</p>\n</li>\n<li><p><code>postCode</code> (string, <strong>required</strong>): The postal code for the address. Example: <code>B70 777</code>.</p>\n</li>\n</ul>\n</li>\n<li><p><code>entityDetails</code> (object, <strong>required</strong>): The details of the entity.</p>\n<ul>\n<li><p><code>companyRegNo</code> (string, <strong>required</strong>): The company registration number. Example: <code>07845123</code>.</p>\n</li>\n<li><p><code>stakeholders</code> (array of objects, <strong>required</strong>): The list of stakeholders associated with the entity. Must have at least one stakeholder object.</p>\n<ul>\n<li><p><code>stakeholders[0]</code> (object, <strong>required</strong>): A stakeholder object.</p>\n<ul>\n<li><p><code>clientId</code> (string, <strong>required</strong>): The unique identifier of an <code>Individual</code> client already on the system. Example <code>00005G8</code>.</p>\n</li>\n<li><p><code>role</code> (string, <strong>required</strong>): The role of the stakeholder. Must be one of <code>Director</code>, <code>Significant Shareholder</code>, <code>Principal Or Partner</code>. Significant shareholders must be associated with an AML verified <code>clientId</code>. Example: <code>Director</code></p>\n</li>\n<li><p><code>clientAndAccountManagement</code> (boolean, <strong>optional</strong>): Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true. Example <code>true</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>legalEntityIdentifier</code> (string, <strong>optional</strong>): The legal entity identifier. Example: <code>529900T8BM49AURSDO55</code>.</p>\n</li>\n<li><p><code>knowYourBusiness</code> (object, <strong>optional</strong>): Information about the Know Your Business (KYB) checks. Corporate and trust KYB checks scope required to edit field.</p>\n<ul>\n<li><code>checksPerformed</code> (string, <strong>required</strong>): The date when KYB checks were performed. Format: YYYY-MM-DD. Example: <code>2024-05-20</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>entityName</code> (string, <strong>required</strong>): The name of the entity. Example: <code>Bedrock Corp</code>.</p>\n</li>\n<li><p><code>termsAccepted</code> (boolean, <strong>required</strong>): Indicates if the terms have been accepted. Corporate and trust KYB checks scope required to set to true. Example: <code>true</code>.</p>\n</li>\n</ul>\n<h3 id=\"stakeholders\">Stakeholders</h3>\n<p>When updating the stakeholders field, you must provide the entire stakeholder object, including ALL stakeholders. Partial updates (e.g., sending just one stakeholder to update) will overwrite the entire block, replacing all previously existing stakeholders. For example, if you have two stakeholders and want to add a third, you must send all three in the request. Similarly, to remove one, you must provide only the two remaining stakeholders in the update. Always include the full, updated stakeholder list to avoid unintentional data loss.</p>\n","_postman_id":"dd3bfc18-1d39-40ca-a774-fcae5cd4dc61"},{"name":"Trust clients","item":[],"id":"30e7546c-d78b-4d44-9f1e-de38ffc3ee89","description":"<h1 id=\"patch-client\">PATCH /client</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint is used to create a Trust client for a firm to manage their investments. It allows users to input detailed information about the trust client, including their address, entity details, and stakeholders, to register them in the system.</p>\n<ul>\n<li><p><strong>URL</strong>: <code>/client</code></p>\n</li>\n<li><p><strong>Method</strong>: <code>PATCH</code></p>\n</li>\n<li><p><strong>Authentication</strong>: <code>API Token</code></p>\n</li>\n</ul>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"url-parameters\">URL Parameters</h3>\n<p>No URL parameters are required for this endpoint.</p>\n<h3 id=\"headers\">Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>The content type of the request body</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>Authorization</code></td>\n<td><code>apitoken</code></td>\n<td>The API token for authentication</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>Only updateId is a required field which can be retrieved from the GET /client endpoint.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"entityName\": \"New Entity Name\",\n    \"entityDetails\": { \n       \"legalEntityIdentifier\": \"529900T8BM49AURSDO55Ï\"\n    }\n}\n\n</code></pre>\n<h3 id=\"field-descriptions\">Field Descriptions</h3>\n<p>All field descriptions are as per the create trust client flows. Some fields are locked down and cannot be changed. You can find a list of fields that can be updated below:</p>\n<ul>\n<li><p><code>nodeId</code> (array of strings, <strong>required</strong>): An array containing the node IDs associated with the firm.</p>\n<ul>\n<li><code>nodeId[0]</code> (string, <strong>required</strong>): The node number in which the entity will exist.</li>\n</ul>\n</li>\n<li><p><code>currency</code> (string, <strong>required</strong>): The currency code for the entity. Use <code>GBP</code>.</p>\n</li>\n<li><p><code>language</code> (string, <strong>required</strong>): The language code for the entity. Use <code>en</code>.</p>\n</li>\n<li><p><code>taxDomicile</code> (string, <strong>required</strong>): The entity's tax domicile country code. Use <code>GB</code>.</p>\n</li>\n<li><p><code>addressDetail</code> (object, <strong>required</strong>): The address details of the entity.</p>\n<ul>\n<li><p><code>buildingNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: 301. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>buildingName</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>Building Name</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>flatNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>301</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>address1</code> (string, <strong>required</strong>): The first line of the address. Example: <code>Cobblestone Way</code>.</p>\n</li>\n<li><p><code>address2</code> (string, <strong>optional</strong>): The second line of the address. Example: <code>Bedrock</code>.</p>\n</li>\n<li><p><code>country</code> (string, <strong>required</strong>): The country code for the address. Example: GB.</p>\n</li>\n<li><p><code>postCode</code> (string, <strong>required</strong>): The postal code for the address. Example: B70 777.</p>\n</li>\n</ul>\n</li>\n<li><p><code>entityDetails</code> (object, <strong>required</strong>): The details of the entity.</p>\n<ul>\n<li><p><code>uniqueTrustReference</code> (string, <strong>required</strong>): Identifier assigned to a trust to distinguish it from other trusts. Example: <code>1234567890</code>.</p>\n</li>\n<li><p><code>stakeholders</code> (array of objects, <strong>required</strong>): The list of stakeholders associated with the entity. A bare trust must have at least one trustee with <code>clientAndAccountManagement</code> and only one beneficiary. All other trust types must have at least one trustee.</p>\n<ul>\n<li><p><code>stakeholders[0]</code> (object, <strong>required</strong>): A stakeholder object.</p>\n<ul>\n<li><p><code>clientId</code> (string, <strong>required</strong>): The unique identifier of an <code>Individual</code> client already on the system. Example <code>03B2D6F</code>.</p>\n</li>\n<li><p><code>role</code> (string, <strong>required</strong>): The role of the stakeholder. Must be one of <code>Settlor</code>, <code>Beneficiary</code>, <code>Trustee</code>. A Beneficiary must be associated with an AML verified <code>clientId</code>. Example: <code>Beneficiary</code></p>\n</li>\n<li><p><code>relationshipToBeneficiary</code> (string, <strong>required</strong>): The stakeholders relationship with the trust. Only a valid &amp; required field where role is Settlor. Example: <code>Parent</code>.</p>\n</li>\n<li><p><code>sourceOfWealth</code> (string, <strong>required</strong>): Origin of the assets or funds that are placed into the trust. Only a valid &amp; required field where role is Settlor. Example: <code>Inheritance</code>.</p>\n</li>\n<li><p><code>clientAndAccountManagement</code> (boolean, <strong>optional</strong>): Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true. Example <code>true</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>legalEntityIdentifier</code> (string, <strong>optional</strong>): The legal entity identifier. Example: <code>529900T8BM49AURDDO55</code>.</p>\n</li>\n<li><p><code>knowYourBusiness</code> (object, <strong>optional</strong>): Information about the Know Your Business (KYB) checks. Corporate and trust KYB checks scope required to add field.</p>\n<ul>\n<li><code>checksPerformed</code> (string, <strong>required</strong>): The date when KYB checks were performed. Format: YYYY-MM-DD. Example: <code>2024-05-20</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>entityName</code> (string, <strong>required</strong>): The name of the entity. Example: <code>Bedrock Corp</code>.</p>\n</li>\n<li><p><code>termsAccepted</code> (boolean, <strong>required</strong>): Indicates if the terms have been accepted. Corporate and trust KYB checks scope required to set to true. Example: <code>true</code>.</p>\n</li>\n</ul>\n<p>The trust <code>type</code> field should not be updated.</p>\n<h3 id=\"stakeholders\">Stakeholders</h3>\n<p>When updating the stakeholders field, you must provide the entire stakeholder object, including ALL stakeholders. Partial updates (e.g., sending just one stakeholder to update) will overwrite the entire block, replacing all previously existing stakeholders. For example, if you have two stakeholders and want to add a third, you must send all three in the request. Similarly, to remove one, you must provide only the two remaining stakeholders in the update. Always include the full, updated stakeholder list to avoid unintentional data loss.</p>\n","_postman_id":"30e7546c-d78b-4d44-9f1e-de38ffc3ee89"},{"name":"Charity trust","item":[],"id":"2c80384d-3912-4815-9b7d-a0287b42ee74","description":"<h1 id=\"patch-client\">PATCH /client</h1>\n<h2 id=\"overview\">Overview</h2>\n<p>This endpoint is used to create a Trust client for a firm to manage their investments. It allows users to input detailed information about the trust client, including their address, entity details, and stakeholders, to register them in the system.</p>\n<ul>\n<li><p><strong>URL</strong>: <code>/client</code></p>\n</li>\n<li><p><strong>Method</strong>: <code>PATCH</code></p>\n</li>\n<li><p><strong>Authentication</strong>: <code>API Token</code></p>\n</li>\n</ul>\n<h2 id=\"request\">Request</h2>\n<h3 id=\"url-parameters\">URL Parameters</h3>\n<p>No URL parameters are required for this endpoint.</p>\n<h3 id=\"headers\">Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Description</th>\n<th>Required</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>The content type of the request body</td>\n<td>Yes</td>\n</tr>\n<tr>\n<td><code>Authorization</code></td>\n<td><code>apitoken</code></td>\n<td>The API token for authentication</td>\n<td>Yes</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"request-body\">Request Body</h3>\n<p>Only updateId is a required field which can be retrieved from the GET /client endpoint.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"entityName\": \"New Entity Name\",\n    \"entityDetails\": { \n       \"legalEntityIdentifier\": \"529900T8BM49AURSDO55Ï\"\n    }\n}\n\n</code></pre>\n<h3 id=\"field-descriptions\">Field Descriptions</h3>\n<p>All field descriptions are as per the create trust client flows. Some fields are locked down and cannot be changed. You can find a list of fields that can be updated below:</p>\n<ul>\n<li><p><code>nodeId</code> (array of strings, <strong>required</strong>): An array containing the node IDs associated with the firm.</p>\n<ul>\n<li><code>nodeId[0]</code> (string, <strong>required</strong>): The node number in which the entity will exist.</li>\n</ul>\n</li>\n<li><p><code>currency</code> (string, <strong>required</strong>): The currency code for the entity. Use <code>GBP</code>.</p>\n</li>\n<li><p><code>language</code> (string, <strong>required</strong>): The language code for the entity. Use <code>en</code>.</p>\n</li>\n<li><p><code>taxDomicile</code> (string, <strong>required</strong>): The entity's tax domicile country code. Use <code>GB</code>.</p>\n</li>\n<li><p><code>bankDetails</code> object <strong>required</strong></p>\n<ul>\n<li><p><code>bankDetails.sortCode</code> string<br />  The trust client's sort code. This is an six-digit number</p>\n</li>\n<li><p><code>bankDetails.accountNumber</code> string<br />  The trust client's account number. This is an eight-digit number</p>\n</li>\n</ul>\n</li>\n<li><p><code>addressDetail</code> (object, <strong>required</strong>): The address details of the entity.</p>\n<ul>\n<li><p><code>buildingNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: 301. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>buildingName</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>Building Name</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>flatNumber</code> (string, <strong>optional</strong>): The building number in the address. Example: <code>301</code>. Must include one of <code>buildingNumber</code>, <code>buildingName</code> or <code>flatNumber</code>.</p>\n</li>\n<li><p><code>address1</code> (string, <strong>required</strong>): The first line of the address. Example: <code>Cobblestone Way</code>.</p>\n</li>\n<li><p><code>address2</code> (string, <strong>optional</strong>): The second line of the address. Example: <code>Bedrock</code>.</p>\n</li>\n<li><p><code>country</code> (string, <strong>required</strong>): The country code for the address. Example: GB.</p>\n</li>\n<li><p><code>postCode</code> (string, <strong>required</strong>): The postal code for the address. Example: B70 777.</p>\n</li>\n</ul>\n</li>\n<li><p><code>entityDetails</code> (object, <strong>required</strong>): The details of the entity.</p>\n<ul>\n<li><p><code>uniqueCharityReference</code> (string, <strong>required</strong>): Identifier assigned to a trust to distinguish it from other trusts. Example: <code>1234567890</code>.</p>\n</li>\n<li><p><code>stakeholders</code> (array of objects, <strong>required</strong>): The list of stakeholders associated with the entity. A bare trust must have at least one trustee with <code>clientAndAccountManagement</code> and only one beneficiary. All other trust types must have at least one trustee.</p>\n<ul>\n<li><p><code>stakeholders[0]</code> (object, <strong>required</strong>): A stakeholder object.</p>\n<ul>\n<li><p><code>clientId</code> (string, <strong>required</strong>): The unique identifier of an <code>Individual</code> client already on the system. Example <code>03B2D6F</code>.</p>\n</li>\n<li><p><code>role</code> (string, <strong>required</strong>): The role of the stakeholder. Must only be of type <code>Trustee</code>.</p>\n</li>\n<li><p><code>clientAndAccountManagement</code> (boolean, <strong>optional</strong>): Indicates if the stakeholder is involved in client and account management. Client will need to be AML verified if true. Example <code>true</code>.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>legalEntityIdentifier</code> (string, <strong>optional</strong>): The legal entity identifier. Example: <code>529900T8BM49AURDDO55</code>.</p>\n</li>\n<li><p><code>knowYourBusiness</code> (object, <strong>optional</strong>): Information about the Know Your Business (KYB) checks. Corporate and trust KYB checks scope required to add field.</p>\n<ul>\n<li><code>checksPerformed</code> (string, <strong>required</strong>): The date when KYB checks were performed. Format: YYYY-MM-DD. Example: <code>2024-05-20</code>.</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>entityName</code> (string, <strong>required</strong>): The name of the entity. Example: <code>Bedrock Corp</code>.</p>\n</li>\n<li><p><code>termsAccepted</code> (boolean, <strong>required</strong>): Indicates if the terms have been accepted. Corporate and trust KYB checks scope required to set to true. Example: <code>true</code>.</p>\n</li>\n</ul>\n<p>The trust <code>type</code> field should not be updated.</p>\n<h3 id=\"stakeholders\">Stakeholders</h3>\n<p>When updating the stakeholders field, you must provide the entire stakeholder object, including ALL stakeholders. Partial updates (e.g., sending just one stakeholder to update) will overwrite the entire block, replacing all previously existing stakeholders. For example, if you have two stakeholders and want to add a third, you must send all three in the request. Similarly, to remove one, you must provide only the two remaining stakeholders in the update. Always include the full, updated stakeholder list to avoid unintentional data loss.</p>\n","_postman_id":"2c80384d-3912-4815-9b7d-a0287b42ee74"}],"id":"c78815c3-b20a-4655-94fa-b30e78e62526","description":"<p>There are a number of reasons you might need to change a client's details – such as a change in address or marital status. It's important this information is kept up to date has it may impact regulatory reporting.</p>\n<p>Each time an update is made to a client record, it is stored in the <code>updateHistory</code> array</p>\n<p>To update a client record, you can follow the below steps:</p>\n<ol>\n<li>Retrieve the client <code>updateId</code> on the client record</li>\n<li>Update the relevant fields using a PATCH request</li>\n</ol>\n","_postman_id":"c78815c3-b20a-4655-94fa-b30e78e62526"},{"name":"Additional support flag for customers","item":[{"name":"Create a client","item":[{"name":"Create a vulnerable client record","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a"}},{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04"}}],"id":"f798f8c8-bcb7-43f2-b065-dce19eed5347","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new vulnerable client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"new-parameters\"><strong>New parameters</strong></h4>\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date)</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string<br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening an ISA, JISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the client has accepted the platform terms and conditions – this should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"610928a5-f4ed-46b9-9a93-d96efd041aab","name":"Client with vulnerabilities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 12 Jul 2024 16:29:13 GMT"},{"key":"x-amzn-RequestId","value":"437fec02-3ee7-4196-a9e4-7fecc9ae8d30"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"azr5-GHpDoEEBZQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-bWnp9UKIR09jWHsCZEwA9tCPtvA\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-669159d9-0d973aa373b5c8945a00a114"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f4152a7e3f38840de1666dec1da22a5c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P2"},{"key":"X-Amz-Cf-Id","value":"-Ps83QueViBd00L7_CBqKHZpp4PHdHlb5oNQntmMF2IWrIwQHRR6OQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005HJ\"\n    }\n}"}],"_postman_id":"f798f8c8-bcb7-43f2-b065-dce19eed5347"},{"name":"Create a client record without vulnerabilities","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"641ee1e7-9301-45ca-a5a8-0f1c7b3ad3bd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new vulnerable client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"new-parameters\"><strong>New parameters</strong></h4>\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date)</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string<br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening an ISA, JISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the client has accepted the platform terms and conditions – this should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"9446b0f9-9e47-4245-97b4-00dd225acfa9","name":"Client with no vulnerabilities","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 12 Jul 2024 16:28:03 GMT"},{"key":"x-amzn-RequestId","value":"73fcb0a6-14ed-44cf-a2de-10cbda57c8e0"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"azrvCEEpjoEES0w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-AQRU7JHJL8E5C1+q/+Py5Btbasc\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66915993-395af5936344baed0a358f96"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f4152a7e3f38840de1666dec1da22a5c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P2"},{"key":"X-Amz-Cf-Id","value":"rxfym8bHCnMUtFIsZV1FMupMZ3o-kqE9LWG5mNP3oIXK0DHAIIQ3mg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005HH\"\n    }\n}"}],"_postman_id":"641ee1e7-9301-45ca-a5a8-0f1c7b3ad3bd"}],"id":"08a656a3-fd51-4611-b80b-5b86ac6d6af5","description":"<p>This folder contains requests and examples of creating clients with the new <code>vulnerability</code> object. There are two requests - the first is creating a client record with vulnerability reasons stated and whether they need additional support, and the second request shows how you could still include this object in the request but not mark the client as vulnerable.</p>\n<p>The latter will be the expected request for firms who have configured this flag as mandatory on their node.</p>\n","_postman_id":"08a656a3-fd51-4611-b80b-5b86ac6d6af5"},{"name":"Update a client","item":[{"name":"Retrieve the client update ID","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"6c859c5f-bf6c-4004-a8d5-464cfa56304f"}}],"id":"96d2ba71-d696-4c8d-8123-652de3183f61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Retrieves the client object – you can use this request to retrieve the <code>updateId</code> of the record</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"96d2ba71-d696-4c8d-8123-652de3183f61"},{"name":"Update client to vulnerable status","id":"c3dead78-4e60-439b-bbb2-8f80d2f7fc09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>You can update a client to 'vulnerable' status</p>\n<p>Returns a successful response</p>\n<h4 id=\"url-parameters\">URL parameters</h4>\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the client record</p>\n<hr />\n<h4 id=\"body-parameters\">Body parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date)</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3fb31200-52a9-43b3-9aa5-c415cff82b66","name":"Update client to vulnerable status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"64d378de766b542d1105002e\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 09 Aug 2023 11:31:50 GMT"},{"key":"x-amzn-RequestId","value":"f628daf5-6dcb-41ca-a698-7dfcafb7349e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"JY_d-Er9joEF43A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-64d37925-7a3982ee4be038072ecde00d;Sampled=0;lineage=2ce6d6c0:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1bc76a14967a660022b25f573baec632.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"AMS54-C1"},{"key":"X-Amz-Cf-Id","value":"_kDbjFdaoQpUrKqX6VSzONfEOjMOZEUM20s_RU1yrNtDQ9gDLtKUZw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"c3dead78-4e60-439b-bbb2-8f80d2f7fc09"}],"id":"f1a782a4-2198-4d02-8762-1f7a656cad48","description":"<p>When making updates to a client record, you will need to retrieve the most recent update ID for the client and then apply the vulnerable customer flag using the PATCH request. This folder has collected both of these requests to demonstrate the flow with some examples.</p>\n","_postman_id":"f1a782a4-2198-4d02-8762-1f7a656cad48"}],"id":"724f7abd-c891-4a49-b0c6-ea4658117573","description":"<h1 id=\"introducing-an-additional-support-flag-for-customers\">Introducing an additional support flag for customers</h1>\n<p>We've added the ability to flag and record details for customers who may need extra support, either now or in the future. This aligns with the FCA's focus on ensuring these customers receive proper treatment and understanding.</p>\n<h3 id=\"what-and-why\">What and why?</h3>\n<p>This isn’t just a regulatory improvement. We know that understanding your customers is critical to the success of your business, and you’ll already have your own processes to manage and support those with additional needs. This feature simply helps with that.</p>\n<p>As part of the client onboarding journey, users can record if a customer requires additional support, using the four drivers identified by the FCA – health, life events, resilience and capability. These help to identify if the customer needs extra support, without revealing sensitive information.</p>\n<h3 id=\"try-it-out\">Try it out!</h3>\n<p>This is currently <strong>in</strong> <strong>staging</strong> so feel free to test in your designated sandbox environment.</p>\n","_postman_id":"724f7abd-c891-4a49-b0c6-ea4658117573"},{"name":"Automated AML and bank account verification statuses","item":[{"name":"Retrieve a client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"d7b6b02f-fd8f-4b41-9050-452f4ed47ca2"}}],"id":"af86670c-93f8-43b0-b60a-1efb9fb0fcdd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Retrieves a specific client record using <code>firmId</code> and <code>clientId</code></p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f923bbb7-ee4e-4992-8aa6-62d0d2130223","name":"Get client which has passed Northrow AML checks and has bank account verification status configuration on","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2024 15:07:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2808"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"897a20d7-89b0-4942-a5f8-3f08f19593ea"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2808"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VPinVHPeDoEErPQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"af8-Te9fNzmY8hoCvZOkppdcTrcbN38\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6602e495-61b8462c7fb88b010296f48c;Parent=5df8c18c9948ad57;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2D69\",\n        \"firmId\": \"TEST1\",\n        \"nodeId\": [\n            \"83\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient309874@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB767888C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": false,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T14:40:45.446Z\",\n            \"verificationStatus\": \"Active\",\n            \"verificationInfo\": {\n                \"verifiedOn\": \"2024-03-26T15:00:35.178Z\",\n                \"source\": {\n                    \"method\": \"Automatic\",\n                    \"referenceId\": \"7e75ca36-fe88-4d12-90f6-73f3f4f9df13\",\n                    \"externalSystem\": \"Northrow\"\n                }\n            }\n        },\n        \"emailVerified\": false,\n        \"emailToken\": \"6fa8b61a-ee7e-4283-8a52-198f6d24e966\",\n        \"emailTokenExpiry\": \"2024-03-27T14:40:45.395Z\",\n        \"mobileVerified\": false,\n        \"smsToken\": \"012782\",\n        \"smsTokenExpiry\": \"2024-03-26T14:50:45.396Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"AML Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"termsAcceptedDate\": \"2024-03-26T14:40:45.424Z\",\n        \"amlData\": {\n            \"checkDate\": \"2024-03-26T14:40:45.424Z\",\n            \"checkNode\": [\n                \"83\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"PENDING\",\n            \"checks\": []\n        },\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-03-26T15:00:35.183Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 4,\n            \"application\": \"ClientProcessor\"\n        },\n        \"updateId\": \"6602e31328d5d05c29accaa4\",\n        \"externalIds\": [\n            {\n                \"idType\": \"NorthrowCaseId\",\n                \"value\": \"7e75ca36-fe88-4d12-90f6-73f3f4f9df13\"\n            }\n        ],\n        \"amlChecks\": [\n            {\n                \"vendor\": \"Northrow\",\n                \"trigger\": \"New Client Onboarding\",\n                \"outcome\": \"Accepted\",\n                \"checkProfile\": \"northrow-profile-uuid\",\n                \"checkUuid\": \"cool-northrow-check-id\",\n                \"completedAt\": \"2024-03-26T15:00:27.681Z\"\n            }\n        ],\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateAction\": \"VerifyBankDetails\",\n                \"updateReason\": \"Verified by Northrow integration\",\n                \"updateDate\": \"2024-03-26T15:00:35.176Z\",\n                \"updatedFields\": [\n                    \"bankDetails\"\n                ],\n                \"updateData\": {\n                    \"fromData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"993049\",\n                            \"accountNumber\": \"99238540\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-03-26T14:40:45.446Z\",\n                            \"verificationStatus\": \"Pending\"\n                        }\n                    },\n                    \"toData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"993049\",\n                            \"accountNumber\": \"99238540\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-03-26T14:40:45.446Z\",\n                            \"verificationStatus\": \"Active\",\n                            \"verificationInfo\": {\n                                \"verifiedOn\": \"2024-03-26T15:00:35.178Z\",\n                                \"source\": {\n                                    \"method\": \"Automatic\",\n                                    \"referenceId\": \"7e75ca36-fe88-4d12-90f6-73f3f4f9df13\",\n                                    \"externalSystem\": \"Northrow\"\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        ]\n    }\n}"},{"id":"800e5f89-7c62-49d3-b273-585f51041d4c","name":"Get client bank account verification status configuration on bank account pending","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Mar 2024 13:36:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1494"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ed3a5f26-a278-4272-8202-15cf82f30067"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1494"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VSoPbEosDoEEJ4A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"5d6-42PAWqym06Jxwca/5qBHRK1DFCU\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-660420c8-737b6a7f180ccb3508e25b64;Parent=0d6d0f983afcefa0;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2D71\",\n        \"firmId\": \"TEST1\",\n        \"nodeId\": [\n            \"84\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient242946@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB266151C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": false,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-27T13:34:55.208Z\",\n            \"verificationStatus\": \"Pending\"\n        },\n        \"emailVerified\": false,\n        \"emailToken\": \"dc0b2b2e-3128-4cae-85dd-7a2e6ac68cdb\",\n        \"emailTokenExpiry\": \"2024-03-28T13:34:54.816Z\",\n        \"mobileVerified\": false,\n        \"smsToken\": \"830512\",\n        \"smsTokenExpiry\": \"2024-03-27T13:44:54.817Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"BAV Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"amlData\": {\n            \"checkDate\": \"2024-03-27T13:34:55.157Z\",\n            \"checkNode\": [\n                \"84\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"BYPASSED\",\n            \"checks\": []\n        },\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-03-27T13:34:55.223Z\",\n            \"userFirmId\": \"TEST1\",\n            \"userId\": \"029B3FF\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"6604207fef4dd027c162f8cf\",\n        \"updateHistory\": [],\n        \"externalIds\": []\n    }\n}"},{"id":"b904a089-5a59-4e53-bf9f-bb3499aadb70","name":"Get client bank account verification status configuration on bank account verified manually","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Mar 2024 15:56:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2453"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d85d48f8-9e11-4406-a366-418f391dab1c"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2453"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VS8u2FChDoEERPQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"995-3JLrOG4uL8j61u4dP3FdEsxRhcg\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66044191-4a178b812bb242e75c38e79e;Parent=548a5803c289fdc0;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2D71\",\n        \"firmId\": \"TEST1\",\n        \"nodeId\": [\n            \"84\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient242946@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB266151C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": false,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-27T13:34:55.208Z\",\n            \"verificationStatus\": \"Active\",\n            \"verificationInfo\": {\n                \"verifiedBy\": {\n                    \"userId\": \"029B3FF\",\n                    \"userFirmId\": \"TEST1\",\n                    \"userType\": \"User\",\n                    \"userName\": \"Machine User\"\n                },\n                \"verifiedOn\": \"2024-03-27T15:15:09.977Z\",\n                \"source\": {\n                    \"method\": \"Manual\"\n                }\n            }\n        },\n        \"emailVerified\": false,\n        \"emailToken\": \"dc0b2b2e-3128-4cae-85dd-7a2e6ac68cdb\",\n        \"emailTokenExpiry\": \"2024-03-28T13:34:54.816Z\",\n        \"mobileVerified\": false,\n        \"smsToken\": \"830512\",\n        \"smsTokenExpiry\": \"2024-03-27T13:44:54.817Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"BAV Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"amlData\": {\n            \"checkDate\": \"2024-03-27T13:34:55.157Z\",\n            \"checkNode\": [\n                \"84\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"BYPASSED\",\n            \"checks\": []\n        },\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-03-27T15:15:58.643Z\",\n            \"userFirmId\": \"TEST1\",\n            \"userId\": \"029B3FF\",\n            \"version\": 3,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"6604382e45b3322bd3dedc4a\",\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateAction\": \"VerifyBankDetails\",\n                \"updateReason\": \"The bank details have been verified\",\n                \"updateDate\": \"2024-03-27T15:15:09.975Z\",\n                \"updatedFields\": [\n                    \"bankDetails\"\n                ],\n                \"updateData\": {\n                    \"fromData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"993049\",\n                            \"accountNumber\": \"99238540\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-03-27T13:34:55.208Z\",\n                            \"verificationStatus\": \"Pending\"\n                        }\n                    },\n                    \"toData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"993049\",\n                            \"accountNumber\": \"99238540\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-03-27T13:34:55.208Z\",\n                            \"verificationStatus\": \"Active\",\n                            \"verificationInfo\": {\n                                \"verifiedBy\": {\n                                    \"userId\": \"029B3FF\",\n                                    \"userFirmId\": \"TEST1\",\n                                    \"userType\": \"Machine\",\n                                    \"userName\": \"Machine User\"\n                                },\n                                \"verifiedOn\": \"2024-03-27T15:15:09.977Z\",\n                                \"source\": {\n                                    \"method\": \"Manual\"\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        ],\n        \"externalIds\": []\n    }\n}"},{"id":"d5490856-9541-4760-9a7d-86756cbe2f12","name":"Get client bank account verification status configuration off Northrow AML configured on and not complete","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2024 15:36:43 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1592"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3ef290be-9213-46be-ba61-c9f10d94d6d3"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1592"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VPm9vEVqjoEEUlQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"638-HxAb4ipr3s9g3H9PNEMqYfj3gzw\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6602eb8a-24201ec844f5a44f3edc45f5;Parent=104d616204991fe2;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2D6G\",\n        \"firmId\": \"TEST1\",\n        \"nodeId\": [\n            \"83\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient171704@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB325567C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": false,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T15:28:36.837Z\",\n            \"verificationStatus\": \"Bypassed\"\n        },\n        \"emailVerified\": false,\n        \"emailToken\": \"032e8dcb-9da2-4e21-81e7-f66f5654c135\",\n        \"emailTokenExpiry\": \"2024-03-27T15:28:36.463Z\",\n        \"mobileVerified\": false,\n        \"smsToken\": \"620273\",\n        \"smsTokenExpiry\": \"2024-03-26T15:38:36.464Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"AML Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"amlData\": {\n            \"checkDate\": \"2024-03-26T15:28:36.812Z\",\n            \"checkNode\": [\n                \"83\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"PENDING\",\n            \"checks\": []\n        },\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-03-26T15:28:44.912Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 2,\n            \"application\": \"InterfaceInboundProcessor\"\n        },\n        \"updateId\": \"6602e9acc91343b510dfe58d\",\n        \"externalIds\": [\n            {\n                \"idType\": \"NorthrowCaseId\",\n                \"value\": \"9102ed1a-1ca1-4192-88eb-0518d534a1c3\"\n            }\n        ],\n        \"updateHistory\": []\n    }\n}"},{"id":"6d215d0a-1555-44a8-8a4e-277b3a36694d","name":"Get client bank account verification status configuration off Northrow AML configured on and AML complete","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 26 Mar 2024 15:40:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1815"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"90efd3c8-3d9c-4434-b4ec-a6effeb05494"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1815"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VPniYHX3joEEUSQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"717-hjG1TINWn2fT6V6aNUyGejetGWY\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6602ec75-37c4f7de0d64abf3479d0667;Parent=51ba8f016e9a1128;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2D6G\",\n        \"firmId\": \"TEST1\",\n        \"nodeId\": [\n            \"83\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"gender\": \"Female\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"flatNumber\": \"301\",\n            \"address1\": \"Cobblestone Way\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"B70 777\"\n        },\n        \"language\": \"en\",\n        \"email\": \"adultclient171704@example.com\",\n        \"mobile\": {\n            \"number\": \"07777000000\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"AB325567C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": false,\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T15:28:36.837Z\",\n            \"verificationStatus\": \"Bypassed\"\n        },\n        \"emailVerified\": false,\n        \"emailToken\": \"032e8dcb-9da2-4e21-81e7-f66f5654c135\",\n        \"emailTokenExpiry\": \"2024-03-27T15:28:36.463Z\",\n        \"mobileVerified\": false,\n        \"smsToken\": \"620273\",\n        \"smsTokenExpiry\": \"2024-03-26T15:38:36.464Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"AML Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"amlData\": {\n            \"checkDate\": \"2024-03-26T15:28:36.812Z\",\n            \"checkNode\": [\n                \"83\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"PENDING\",\n            \"checks\": []\n        },\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"WILMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-03-26T15:40:33.389Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 3,\n            \"application\": \"client-data-manager-client-event-service\"\n        },\n        \"updateId\": \"6602ec71af3b97fc0d9a8ad7\",\n        \"externalIds\": [\n            {\n                \"idType\": \"NorthrowCaseId\",\n                \"value\": \"9102ed1a-1ca1-4192-88eb-0518d534a1c3\"\n            }\n        ],\n        \"amlChecks\": [\n            {\n                \"vendor\": \"Northrow\",\n                \"trigger\": \"New Client Onboarding\",\n                \"outcome\": \"Accepted\",\n                \"checkProfile\": \"northrow-profile-uuid\",\n                \"checkUuid\": \"cool-northrow-check-id\",\n                \"completedAt\": \"2024-03-26T15:40:33.384Z\"\n            }\n        ],\n        \"updateHistory\": []\n    }\n}"},{"id":"08df90b9-18a5-468d-bccf-6fe95b675f5b","name":"Get client bank account verification status configuration on Northrow AML configuration on update bank details after onboarding","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Apr 2024 12:36:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"5249"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"cc4f3266-bf71-4893-a4a6-c225a277e2a9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"5249"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Vs28DFSyjoEEqOg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1481-TF6xfmItcg3KKN+HHYCyVSxx9ME\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-660e9eb3-217ca8d65fbf318a5f5cb450;Parent=5549b5cc6b6c0c76;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"03B2DJH\",\n        \"firmId\": \"TEST1\",\n        \"clientType\": \"Individual\",\n        \"title\": \"Dr\",\n        \"firstName\": \"Maxie\",\n        \"surname\": \"Zieme\",\n        \"gender\": \"Male\",\n        \"nationality\": \"GB\",\n        \"nationalities\": [\n            {\n                \"code\": \"GB\",\n                \"identifiers\": [\n                    {\n                        \"name\": \"National Insurance Number\",\n                        \"value\": \"AL790272C\",\n                        \"available\": true\n                    }\n                ]\n            }\n        ],\n        \"language\": \"en\",\n        \"nodeId\": [\n            \"83\"\n        ],\n        \"addressDetail\": {\n            \"buildingNumber\": \"179\",\n            \"address1\": \"Low Street\",\n            \"address2\": \"New Edlington\",\n            \"address3\": \"Leicester\",\n            \"address4\": \"South Yorkshire\",\n            \"country\": \"GB\",\n            \"postCode\": \"DN13 4GG\"\n        },\n        \"email\": \"testing+hollie.bergnaum5734359@seccl.tech\",\n        \"mobile\": {\n            \"number\": \"07123456789\",\n            \"locale\": \"en-GB\",\n            \"isMobile\": true\n        },\n        \"currency\": \"GBP\",\n        \"nationalInsuranceNo\": \"AL790272C\",\n        \"dateOfBirth\": \"1970-07-22T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": true,\n        \"bankDetails\": {\n            \"sortCode\": \"209493\",\n            \"accountNumber\": \"11273801\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-04-04T12:33:59.639Z\",\n            \"verificationStatus\": \"Active\",\n            \"verificationInfo\": {\n                \"verifiedOn\": \"2024-04-04T12:35:25.399Z\",\n                \"source\": {\n                    \"method\": \"Automatic\",\n                    \"referenceId\": \"37569cc5-b3f3-4c0a-ab22-a60234b9756f\",\n                    \"externalSystem\": \"Northrow\"\n                }\n            }\n        },\n        \"employmentStatus\": \"Employed\",\n        \"maritalStatus\": \"Single\",\n        \"retirementAge\": 83,\n        \"emailVerified\": true,\n        \"mobileVerified\": false,\n        \"smsToken\": \"228397\",\n        \"smsTokenExpiry\": \"2024-04-04T12:35:13.709Z\",\n        \"status\": \"Pending\",\n        \"nodeName\": [\n            \"AML Testing Node\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"termsAcceptedDate\": \"2024-04-04T12:25:14.090Z\",\n        \"amlData\": {\n            \"checkDate\": \"2024-04-04T12:25:14.090Z\",\n            \"checkNode\": [\n                \"83\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"PENDING\",\n            \"checks\": []\n        },\n        \"recordCreationDate\": \"2024-04-04T12:25:14.112Z\",\n        \"_surname\": \"ZIEME\",\n        \"_firstName\": \"MAXIE\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-04-04T12:35:25.406Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 8,\n            \"application\": \"ClientProcessor\"\n        },\n        \"updateId\": \"660e9e8d3a64af67b8836396\",\n        \"externalIds\": [\n            {\n                \"idType\": \"NorthrowCaseId\",\n                \"value\": \"a6d6ab12-81c8-43c1-b1a0-d66c816c2b9a\"\n            },\n            {\n                \"idType\": \"NorthrowCaseId\",\n                \"value\": \"37569cc5-b3f3-4c0a-ab22-a60234b9756f\"\n            }\n        ],\n        \"amlChecks\": [\n            {\n                \"vendor\": \"Northrow\",\n                \"trigger\": \"New Client Onboarding\",\n                \"outcome\": \"Accepted\",\n                \"checkProfile\": \"northrow-profile-uuid\",\n                \"checkUuid\": \"cool-northrow-check-id\",\n                \"completedAt\": \"2024-04-04T12:25:35.837Z\"\n            },\n            {\n                \"vendor\": \"Northrow\",\n                \"trigger\": \"Bank Details Changed\",\n                \"outcome\": \"Verified\",\n                \"checkProfile\": \"northrow-profile-uuid\",\n                \"checkUuid\": \"cool-northrow-check-id\",\n                \"completedAt\": \"2024-04-04T12:35:18.280Z\"\n            }\n        ],\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateAction\": \"VerifyBankDetails\",\n                \"updateReason\": \"Verified by Northrow integration\",\n                \"updateDate\": \"2024-04-04T12:25:42.091Z\",\n                \"updatedFields\": [\n                    \"bankDetails\"\n                ],\n                \"updateData\": {\n                    \"fromData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"309493\",\n                            \"accountNumber\": \"01273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3F3\",\n                                \"userFirmId\": \"SECCL\",\n                                \"userType\": \"User\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:25:14.112Z\",\n                            \"verificationStatus\": \"Pending\"\n                        }\n                    },\n                    \"toData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"309493\",\n                            \"accountNumber\": \"01273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3F3\",\n                                \"userFirmId\": \"SECCL\",\n                                \"userType\": \"User\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:25:14.112Z\",\n                            \"verificationStatus\": \"Active\",\n                            \"verificationInfo\": {\n                                \"verifiedOn\": \"2024-04-04T12:25:42.092Z\",\n                                \"source\": {\n                                    \"method\": \"Automatic\",\n                                    \"referenceId\": \"a6d6ab12-81c8-43c1-b1a0-d66c816c2b9a\",\n                                    \"externalSystem\": \"Northrow\"\n                                }\n                            }\n                        }\n                    }\n                }\n            },\n            {\n                \"updateId\": 2,\n                \"updateAction\": \"AmendBank\",\n                \"updateReason\": \"The bank details have been updated\",\n                \"updateDate\": \"2024-04-04T12:33:59.620Z\",\n                \"updatedFields\": [\n                    \"bankDetails\"\n                ],\n                \"updateData\": {\n                    \"fromData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"309493\",\n                            \"accountNumber\": \"01273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3F3\",\n                                \"userFirmId\": \"SECCL\",\n                                \"userType\": \"User\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:25:14.112Z\",\n                            \"verificationStatus\": \"Active\",\n                            \"verificationInfo\": {\n                                \"verifiedOn\": \"2024-04-04T12:25:42.092Z\",\n                                \"source\": {\n                                    \"method\": \"Automatic\",\n                                    \"referenceId\": \"a6d6ab12-81c8-43c1-b1a0-d66c816c2b9a\",\n                                    \"externalSystem\": \"Northrow\"\n                                }\n                            }\n                        }\n                    },\n                    \"toData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"209493\",\n                            \"accountNumber\": \"11273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:33:59.639Z\",\n                            \"verificationStatus\": \"Pending\"\n                        }\n                    }\n                }\n            },\n            {\n                \"updateId\": 3,\n                \"updateAction\": \"VerifyBankDetails\",\n                \"updateReason\": \"Verified by Northrow integration\",\n                \"updateDate\": \"2024-04-04T12:35:25.397Z\",\n                \"updatedFields\": [\n                    \"bankDetails\"\n                ],\n                \"updateData\": {\n                    \"fromData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"209493\",\n                            \"accountNumber\": \"11273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:33:59.639Z\",\n                            \"verificationStatus\": \"Pending\"\n                        }\n                    },\n                    \"toData\": {\n                        \"bankDetails\": {\n                            \"sortCode\": \"209493\",\n                            \"accountNumber\": \"11273801\",\n                            \"createdBy\": {\n                                \"userId\": \"029B3FF\",\n                                \"userFirmId\": \"TEST1\",\n                                \"userType\": \"Machine\",\n                                \"userName\": \"Machine User\"\n                            },\n                            \"createdOn\": \"2024-04-04T12:33:59.639Z\",\n                            \"verificationStatus\": \"Active\",\n                            \"verificationInfo\": {\n                                \"verifiedOn\": \"2024-04-04T12:35:25.399Z\",\n                                \"source\": {\n                                    \"method\": \"Automatic\",\n                                    \"referenceId\": \"37569cc5-b3f3-4c0a-ab22-a60234b9756f\",\n                                    \"externalSystem\": \"Northrow\"\n                                }\n                            }\n                        }\n                    }\n                }\n            }\n        ],\n        \"bankDetailsHistory\": [\n            {\n                \"createdBy\": {\n                    \"userId\": \"029B3F3\",\n                    \"userFirmId\": \"SECCL\",\n                    \"userType\": \"User\",\n                    \"userName\": \"Machine User\"\n                },\n                \"createdOn\": \"2024-04-04T12:25:14.112Z\",\n                \"verificationStatus\": \"Active\",\n                \"verificationInfo\": {\n                    \"verifiedOn\": \"2024-04-04T12:25:42.092Z\",\n                    \"source\": {\n                        \"method\": \"Automatic\",\n                        \"referenceId\": \"a6d6ab12-81c8-43c1-b1a0-d66c816c2b9a\",\n                        \"externalSystem\": \"Northrow\"\n                    }\n                },\n                \"sortCode\": \"309493\",\n                \"accountNumber\": \"01273801\"\n            }\n        ]\n    }\n}"}],"_postman_id":"af86670c-93f8-43b0-b60a-1efb9fb0fcdd"},{"name":"List clients","id":"409f9947-e085-43b3-be7c-f4070af109e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}?pageSize=100&page=1","description":"<p>Retrieves all client records on the platform</p>\n","urlObject":{"path":["client","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"status","value":"Active"},{"key":"pageSize","value":"100"},{"key":"page","value":"1"},{"disabled":true,"key":"firstName","value":""},{"disabled":true,"key":"surname","value":""},{"disabled":true,"key":"nodeId","value":""}],"variable":[]}},"response":[],"_postman_id":"409f9947-e085-43b3-be7c-f4070af109e7"},{"name":"Verify Client Bank Details","id":"b484d4c4-9d27-4084-a881-ef95f9b77fb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"VerifyBankDetails\",\n    \"updateReason\": \"The bank details have been verified\",\n    \"updateData\": {\n        \"bankDetails\": {\n            \"sortCode\": \"{{counterpartySortCode1}}\",\n            \"accountNumber\": \"{{counterpartyAccountNumber1}}\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client/{{pfolioFirmId}}/{{clientId1}}","description":"<p>This endpoint allows the user to verify client bank details.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p>updateAction (string): This must be VerifyBankDetails</p>\n</li>\n<li><p>updateReason (string): The reason for the update.</p>\n</li>\n<li><p>updateData (object): The object containing the updated client data.</p>\n<ul>\n<li><p>bankDetails (object): The bank details to be verified.</p>\n<ul>\n<li>sortCode (string): The sort code of the bank.</li>\n<li>accountNumber (string): The bank account number.</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be an empty \"data\" object</p>\n<p>Example</p>\n<p>Request:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"updateAction\": \"VerifyBankDetails\",\n  \"updateReason\": \"exampleReason\",\n  \"updateData\": {\n    \"bankDetails\": {\n      \"sortCode\": \"123456\",\n      \"accountNumber\": \"78901234\"\n    }\n  }\n}\n\n</code></pre>\n<p>Response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"data\": {}\n}\n\n</code></pre>","urlObject":{"path":["client","{{pfolioFirmId}}","{{clientId1}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"329be7a1-0053-4328-b76f-d51e9dff2f91","name":"Verify Bank Details success example","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"VerifyBankDetails\",\n    \"updateReason\": \"The bank details have been verified\",\n    \"updateData\": {\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 27 Mar 2024 15:15:10 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"6f539e8c-46da-496a-889b-39a87f3c6213"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VS2ukHiZjoEEcIw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-660437f6-6948ac11733bdc5f3559aa01;Parent=0401cddb50f20388;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"b484d4c4-9d27-4084-a881-ef95f9b77fb9"},{"name":"Verify Account Bank Details","id":"deb7ef21-f153-4bd5-b846-c3cf12636ef8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"VerifyBankDetails\",\n    \"updateReason\": \"The bank details have been verified\",\n    \"updateData\": {\n        \"bankDetails\": {\n            \"sortCode\": \"654321\",\n            \"accountNumber\": \"87654321\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>This endpoint allows the user to verify account bank details.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><p>updateAction (string) - This must be VerifyBankDetails</p>\n</li>\n<li><p>updateReason (string): The reason for the update.</p>\n</li>\n<li><p>updateData (object): The object containing the updated client data.</p>\n<ul>\n<li><p>bankDetails (object): The bank details to be updated.</p>\n<ul>\n<li><p>sortCode (string): The sort code of the bank.</p>\n</li>\n<li><p>accountNumber (string): The account number of the bank.</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be an empty \"data\" object</p>\n<p>Example</p>\n<p>Request:</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f07f250f-aa89-438d-880a-f70a2725b2be","name":"Verify Account Bank Details success example","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"VerifyBankDetails\",\n    \"updateReason\": \"The bank details have been verified\",\n    \"updateData\": {\n        \"bankDetails\": {\n            \"sortCode\": \"654321\",\n            \"accountNumber\": \"87654321\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 04 Apr 2024 13:49:14 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"03c87f41-05b2-49fc-88c8-140d8647c4a9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"VtBqEFqMDoEEejA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-660eafd9-377fb49c013ba3ca31239b37;Parent=1e77a8eec85238d6;Sampled=0;lineage=0923b9f5:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"deb7ef21-f153-4bd5-b846-c3cf12636ef8"},{"name":"Create a client | Individual","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"91622c96-d19f-47cc-b654-55a21ebe826a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\":\"Mr\",\n    \"firstName\": \"Gerald\",\n    \"surname\": \"Smith\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"employmentStatus\": \"Employed\",\n    \"maritalStatus\": \"Married\",\n    \"retirementAge\": 60,\n    \"nationalities\": [\n                {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string<br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening an ISA, JISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date)</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"228f3ca6-459e-4af7-a653-d3850ccafb20","name":"Create a client – Success: Client created with multiple nationalities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"},{"id":"713d7137-2268-4603-b902-c8c39c16e03b","name":"Create a client – Error: Provided identifier value does not match the required format","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"ABC1234D\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"nationalities\",\n                \"errorMessage\": \"The value of the provided National Insurance Number is not a valid format\",\n                \"type\": \"validNationality\"\n            }\n        ]\n    }\n}"},{"id":"daeec323-2128-42e7-ac41-aa2f526c9878","name":"Create a client - PEP","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 22 Dec 2022 15:30:09 GMT"},{"key":"x-amzn-RequestId","value":"8723ef93-6397-429f-9806-575e3e116d63"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"djewBFuCDoEFc9g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-AVtFxTtzq2pglY6mHU7TQYDUVks\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63a477ff-4dd590a732de74c30b324a3e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4dd28c7d9439664c66fbf62f5cd00636.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"mmobsBjLHfQmAkDKYcYjWjJMaW0aNbE5SciHqFL4X4U9UVwlCTXLMw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02G876D\"\n    }\n}"}],"_postman_id":"91622c96-d19f-47cc-b654-55a21ebe826a"}],"id":"af44c634-35a8-4994-b387-15af20965b4c","description":"<p>We have added functionality for client onboarding AML checks to be completed in an automated way via a third party provider (Northrow). When client details are first input to the system a request is sent to Northrow to run AML checks. At this point the client will not be able to login to the system until the AML checks are complete and we have received a positive response back from Northrow. Once the positive response has been received the client onboarding journey will continue.</p>\n<p>We have also added functionality to support bank account verification either by an integrated Northrow solution or manually via API. When a bank account is first entered into the system it will have a bank account verification status of Pending. Once the bank account has been verified, either by Northrow or manually via API, the bank account will have a bank account verification status of Active. If the bank account is updated it will have a pending verification status until it is verifed. if a withdrawal is instructed to a bank account which has the pending status it will go to checking. For more information about transactions in checking please see the API documentation under Suspicious activity</p>\n<p>If the bank account verification status functionality is not configured on then the bank account verification status will have a value of bypassed.</p>\n<p>If you are interested in using the automated AML client onboarding or bank account verification status functionality please contact your account manager.</p>\n<h2 id=\"attributes\">Attributes</h2>\n<h3 id=\"attributes-within-the-amlchecks-array\">Attributes within the amlChecks array</h3>\n<p><code>amlChecks</code> - Array</p>\n<p><strong>Object</strong></p>\n<p><code>vendor</code> - string - This is the third party that was used to verify the client</p>\n<hr />\n<p><code>trigger</code> - string - This is the reason for the AML check</p>\n<hr />\n<p><code>outcome</code> - string - Outcome of the AML check</p>\n<hr />\n<p><code>checkProfile</code> - string - The Northrow check profile ID</p>\n<hr />\n<p><code>checkUuid</code> - string - The ID of the Northrow check</p>\n<hr />\n<p><code>completedAt</code> - date - The date time Northrow notified us that the check was complete</p>\n<h3 id=\"example-of-the-amlchecks\">Example of the amlChecks</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"amlChecks\": [\n            {\n                \"vendor\": \"Northrow\",\n                \"trigger\": \"New Client Onboarding\",\n                \"outcome\": \"Accepted\",\n                \"checkProfile\": \"northrow-profile-uuid\",\n                \"checkUuid\": \"cool-northrow-check-id\",\n                \"completedAt\": \"2024-03-26T15:00:27.681Z\"\n            }\n        ],\n\n</code></pre>\n<h3 id=\"attributes-within-the-client-bank-details-for-northrow-verified-bank-account-details\">Attributes within the client bank details for Northrow verified bank account details</h3>\n<p><strong>bank details - Object</strong></p>\n<p><code>sortCode</code> - string</p>\n<hr />\n<p><code>accountNumber</code> - string</p>\n<p><strong>createdBy</strong> - Object</p>\n<p><code>userId</code> - string - The userID who entered the bank details</p>\n<hr />\n<p><code>userFirmId</code> - string - The firmId of the user who entered the bank details</p>\n<hr />\n<p><code>userType</code> - string - This will be either Machine or User</p>\n<hr />\n<p><code>userName</code> - string - This will be the first and last name of the user</p>\n<hr />\n<p><code>createdOn</code> - date - The date time bank details were entered</p>\n<hr />\n<p><code>verificationStatus</code> - string - This will be Active or Pending (or Bypassed if bank account verification statuses are not enabled for the firm)</p>\n<p><strong>verificationInfo</strong> - Object</p>\n<p><code>verifiedOn</code> - date - Datetime the bank details were verified</p>\n<p><strong>source</strong> - Object</p>\n<p><code>method</code> - string - Method will be automatic</p>\n<hr />\n<p><code>referenceId</code> - string - The ID of the Northrow case</p>\n<hr />\n<p><code>externalSystem</code> - The external system will be Northrow</p>\n<h3 id=\"example-of-client-bank-details-being-verified-by-northrow\">Example of client bank details being verified by Northrow</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T14:40:45.446Z\",\n            \"verificationStatus\": \"Active\",\n            \"verificationInfo\": {\n                \"verifiedOn\": \"2024-03-26T15:00:35.178Z\",\n                \"source\": {\n                    \"method\": \"Automatic\",\n                    \"referenceId\": \"7e75ca36-fe88-4d12-90f6-73f3f4f9df13\",\n                    \"externalSystem\": \"Northrow\"\n                }\n            }\n        },\n\n</code></pre>\n<h3 id=\"attributes-within-the-client-bank-details-when-verified-manually\">Attributes within the client bank details when verified manually</h3>\n<p>For manual verification we do not have a <code>referenceId</code> or <code>externalSystem</code> and instead there is a verifiedBy object in verificationInfo.</p>\n<p><strong>verificationInfo</strong> - Object</p>\n<p><code>verifiedOn</code> - date - The date time bank details were verified</p>\n<p><strong>verifiedBy</strong> - Object</p>\n<p><code>userid</code> - string - The userID who verified the bank details</p>\n<hr />\n<p><code>userFirmId</code> - string - The firmId of the user who verified the bank details</p>\n<hr />\n<p><code>userType</code> - string - This will be either Machine or User</p>\n<hr />\n<p><code>userName</code> - string - This will be the first and last name of the user</p>\n<p><strong>source</strong> - Object</p>\n<p><code>method</code> - string - Method will be manual</p>\n<h3 id=\"example-of-client-bank-details-being-verified-manually\">Example of client bank details being verified manually</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-27T13:34:55.208Z\",\n            \"verificationStatus\": \"Active\",\n            \"verificationInfo\": {\n                \"verifiedBy\": {\n                    \"userId\": \"029B3FF\",\n                    \"userFirmId\": \"TEST1\",\n                    \"userType\": \"Machine\",\n                    \"userName\": \"Machine User\"\n                },\n                \"verifiedOn\": \"2024-03-27T15:15:09.977Z\",\n                \"source\": {\n                    \"method\": \"Manual\"\n                }\n            }\n        },\n\n</code></pre>\n<h3 id=\"example-of-client-bank-details-when-bank-account-verification-is-not-enabled\">Example of client bank details when bank account verification is not enabled</h3>\n<p>In this scenario the <code>verificationStatus</code> will have the value Bypassed</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\",\n            \"createdBy\": {\n                \"userId\": \"029B3FF\",\n                \"userFirmId\": \"TEST1\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Machine User\"\n            },\n            \"createdOn\": \"2024-03-26T15:28:36.837Z\",\n            \"verificationStatus\": \"Bypassed\"\n        },\n\n</code></pre>\n","_postman_id":"af44c634-35a8-4994-b387-15af20965b4c"},{"name":"Nationalities checker","item":[{"name":"List nationalities","id":"9079b4cd-df93-431f-9b8d-b6098743b1fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{apiRoute}}/static/nationality","description":"<p>Retrieves a list of nationalities and the relevant identifiers</p>\n<p>The <code>static</code> nationality endpoint provides a list of nationalities, the ISO country codes and the national identifier that the FCA requires for reporting when trading ETIs</p>\n<h5 id=\"understanding-the-priority\">Understanding the priority</h5>\n<p>This is logic used to determine which identifier is appropriate to report on any transactions under your client's name. Priority is scored and the relevant identifiers are listed in this order under the array.</p>\n<p>The rules for the FCA-preferred nationality are:</p>\n<ol>\n<li>An EEA (European Economic Area) nationality takes priority over a non-EEA nationality</li>\n<li>The nationality that comes first when the list of the client's nationalities is sorted alphabetically by the country code takes priority</li>\n<li>CONCAT is, in most cases, a last resort identifier that if required will be generated by Seccl in accordance with MiFIR/MiFID guidelines</li>\n</ol>\n<p><strong>Please note: CONCAT – a combination of the client's date of birth, first name, and surname – may only be used if the Priority 1 identifier shown in the nationalities checker is not applicable to the client</strong></p>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>id</code> string<br />The unique two-letter identifier for the nationality. This is case sensitive.=</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>code</code> string<br />A two-letter country code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the country</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adjective</code> string<br />The country descriptor</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>inEEA</code> boolean<br />This confirms whether or not a country is in the European Economic Area (EEA). Although the UK is not in the EU anymore, it is still reported as <code>inEEA: true</code> as per MiFIR/MiFID II rules</p>\n<hr />\n<p><code>identifiers</code> array<br />An array which captures all forms of national identifiers for the chosen country</p>\n<hr />\n<p><code>identifiers.name</code> string<br />The name of the national identifier. This will be National Insurance Number for British nationals and National Passport Number for all other nationalities</p>\n<hr />\n<p><code>identifiers.regex</code> string<br />A regular expression denoting validation for the national identifier</p>\n<hr />\n<p><code>identifiers.localeName</code> string<br />The name of the national identifier</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>identifiers.example</code> string<br />An example of the alphanumeric national identifier format</p>\n<hr />\n<p><code>identifiers.priority</code> integer</p>\n<p>The national identifier priority score</p>\n<hr />\n","urlObject":{"path":["static","nationality"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e993347e-3ccd-4271-ab9c-ec3cf01aa770","name":"Retrieve list of nationalities","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{apiRoute}}/static/nationality"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"AF\",\n            \"code\": \"AF\",\n            \"name\": \"Afghanistan\",\n            \"adjective\": \"Afghan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AX\",\n            \"code\": \"AX\",\n            \"name\": \"Åland Islands\",\n            \"adjective\": \"Ålandic\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AL\",\n            \"code\": \"AL\",\n            \"name\": \"Albania\",\n            \"adjective\": \"Albanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DZ\",\n            \"code\": \"DZ\",\n            \"name\": \"Algeria\",\n            \"adjective\": \"Algerian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AS\",\n            \"code\": \"AS\",\n            \"name\": \"American Samoa\",\n            \"adjective\": \"American Samoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AD\",\n            \"code\": \"AD\",\n            \"name\": \"Andorra\",\n            \"adjective\": \"Andorran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AO\",\n            \"code\": \"AO\",\n            \"name\": \"Angola\",\n            \"adjective\": \"Angolan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AI\",\n            \"code\": \"AI\",\n            \"name\": \"Anguilla\",\n            \"adjective\": \"Anguillan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AQ\",\n            \"code\": \"AQ\",\n            \"name\": \"Antarctica\",\n            \"adjective\": \"Antarctican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AG\",\n            \"code\": \"AG\",\n            \"name\": \"Antigua and Barbuda\",\n            \"adjective\": \"Antiguan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AR\",\n            \"code\": \"AR\",\n            \"name\": \"Argentina\",\n            \"adjective\": \"Argentinian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AM\",\n            \"code\": \"AM\",\n            \"name\": \"Armenia\",\n            \"adjective\": \"Armenian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AW\",\n            \"code\": \"AW\",\n            \"name\": \"Aruba\",\n            \"adjective\": \"Aruban\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AU\",\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"adjective\": \"Australian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AT\",\n            \"code\": \"AT\",\n            \"name\": \"Austria\",\n            \"adjective\": \"Austrian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"AZ\",\n            \"code\": \"AZ\",\n            \"name\": \"Azerbaijan\",\n            \"adjective\": \"Azerbaijani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BS\",\n            \"code\": \"BS\",\n            \"name\": \"Bahamas\",\n            \"adjective\": \"Bahamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BH\",\n            \"code\": \"BH\",\n            \"name\": \"Bahrain\",\n            \"adjective\": \"Bahraini\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BD\",\n            \"code\": \"BD\",\n            \"name\": \"Bangladesh\",\n            \"adjective\": \"Bangladeshi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BB\",\n            \"code\": \"BB\",\n            \"name\": \"Barbados\",\n            \"adjective\": \"Barbadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BY\",\n            \"code\": \"BY\",\n            \"name\": \"Belarus\",\n            \"adjective\": \"Belarusian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BE\",\n            \"code\": \"BE\",\n            \"name\": \"Belgium\",\n            \"adjective\": \"Belgian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Belgian National Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Numéro de registre national\",\n                    \"example\": \"99123112345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BZ\",\n            \"code\": \"BZ\",\n            \"name\": \"Belize\",\n            \"adjective\": \"Belizean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BJ\",\n            \"code\": \"BJ\",\n            \"name\": \"Benin\",\n            \"adjective\": \"Beninese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BM\",\n            \"code\": \"BM\",\n            \"name\": \"Bermuda\",\n            \"adjective\": \"Bermudan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BT\",\n            \"code\": \"BT\",\n            \"name\": \"Bhutan\",\n            \"adjective\": \"Bhutanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BO\",\n            \"code\": \"BO\",\n            \"name\": \"Bolivia\",\n            \"adjective\": \"Bolivian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BQ\",\n            \"code\": \"BQ\",\n            \"name\": \"Bonaire, Sint Eustatius and Saba\",\n            \"adjective\": \"Bonaire Dutch\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BA\",\n            \"code\": \"BA\",\n            \"name\": \"Bosnia and Herzegovina\",\n            \"adjective\": \"Bosnian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BW\",\n            \"code\": \"BW\",\n            \"name\": \"Botswana\",\n            \"adjective\": \"Botswanan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BV\",\n            \"code\": \"BV\",\n            \"name\": \"Bouvet Island\",\n            \"adjective\": \"Bouvet Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BR\",\n            \"code\": \"BR\",\n            \"name\": \"Brazil\",\n            \"adjective\": \"Brazilian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IO\",\n            \"code\": \"IO\",\n            \"name\": \"British Indian Ocean Territory\",\n            \"adjective\": \"British Indian Ocean Territory\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BN\",\n            \"code\": \"BN\",\n            \"name\": \"Brunei Darussalam\",\n            \"adjective\": \"Bruneian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BG\",\n            \"code\": \"BG\",\n            \"name\": \"Bulgaria\",\n            \"adjective\": \"Bulgarian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Uniform Civil Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Единен граждански номер\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BF\",\n            \"code\": \"BF\",\n            \"name\": \"Burkina Faso\",\n            \"adjective\": \"Burkinabè\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BI\",\n            \"code\": \"BI\",\n            \"name\": \"Burundi\",\n            \"adjective\": \"Burundian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KH\",\n            \"code\": \"KH\",\n            \"name\": \"Cambodia\",\n            \"adjective\": \"Cambodian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CM\",\n            \"code\": \"CM\",\n            \"name\": \"Cameroon\",\n            \"adjective\": \"Cameroonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CA\",\n            \"code\": \"CA\",\n            \"name\": \"Canada\",\n            \"adjective\": \"Canadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CV\",\n            \"code\": \"CV\",\n            \"name\": \"Capo Verde\",\n            \"adjective\": \"Cape Verdean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KY\",\n            \"code\": \"KY\",\n            \"name\": \"Cayman Islands\",\n            \"adjective\": \"Caymanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TD\",\n            \"code\": \"TD\",\n            \"name\": \"Chad\",\n            \"adjective\": \"Chadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CL\",\n            \"code\": \"CL\",\n            \"name\": \"Chile\",\n            \"adjective\": \"Chilean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CN\",\n            \"code\": \"CN\",\n            \"name\": \"China\",\n            \"adjective\": \"Chinese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CX\",\n            \"code\": \"CX\",\n            \"name\": \"Christmas Island\",\n            \"adjective\": \"Christmas Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CC\",\n            \"code\": \"CC\",\n            \"name\": \"Cocos (Keeling) Islands\",\n            \"adjective\": \"Cocos Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CO\",\n            \"code\": \"CO\",\n            \"name\": \"Colombia\",\n            \"adjective\": \"Colombian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KM\",\n            \"code\": \"KM\",\n            \"name\": \"Comoros\",\n            \"adjective\": \"Comoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CG\",\n            \"code\": \"CG\",\n            \"name\": \"Congo\",\n            \"adjective\": \"Congolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CK\",\n            \"code\": \"CK\",\n            \"name\": \"Cook Islands\",\n            \"adjective\": \"Cook Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CR\",\n            \"code\": \"CR\",\n            \"name\": \"Costa Rica\",\n            \"adjective\": \"Costa Rican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CI\",\n            \"code\": \"CI\",\n            \"name\": \"Côte d'Ivoire\",\n            \"adjective\": \"Ivorian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HR\",\n            \"code\": \"HR\",\n            \"name\": \"Croatia\",\n            \"adjective\": \"Croatian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^\\\\d{11}$\"\n                    ],\n                    \"localeName\": \"Osobni identifikacijski broj (OIB)\",\n                    \"example\": \"12345678901\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CU\",\n            \"code\": \"CU\",\n            \"name\": \"Cuba\",\n            \"adjective\": \"Cuban\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CW\",\n            \"code\": \"CW\",\n            \"name\": \"Curaçao\",\n            \"adjective\": \"Curaçaoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CY\",\n            \"code\": \"CY\",\n            \"name\": \"Cyprus\",\n            \"adjective\": \"Cypriot\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^(?:E\\\\d{6}|K\\\\d{8})$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"E123456\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CZ\",\n            \"code\": \"CZ\",\n            \"name\": \"Czechia\",\n            \"adjective\": \"Czech\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9]|6[0-2]|5[1-9]|8[0-2]|7[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{3,4}$\"\n                    ],\n                    \"localeName\": \"Czech Rodné číslo\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"číslo pasu\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"KP\",\n            \"code\": \"KP\",\n            \"name\": \"Democratic People's Republic of Korea\",\n            \"adjective\": \"North Korean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CD\",\n            \"code\": \"CD\",\n            \"name\": \"Democratic Republic of the Congo\",\n            \"adjective\": \"Congolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DK\",\n            \"code\": \"DK\",\n            \"name\": \"Denmark\",\n            \"adjective\": \"Danish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}-?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"CPR-nummer\",\n                    \"example\": \"3112991234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DJ\",\n            \"code\": \"DJ\",\n            \"name\": \"Djibouti\",\n            \"adjective\": \"Djiboutian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DM\",\n            \"code\": \"DM\",\n            \"name\": \"Dominica\",\n            \"adjective\": \"Dominican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DO\",\n            \"code\": \"DO\",\n            \"name\": \"Dominican Republic\",\n            \"adjective\": \"Dominican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EC\",\n            \"code\": \"EC\",\n            \"name\": \"Ecuador\",\n            \"adjective\": \"Ecuadorian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EG\",\n            \"code\": \"EG\",\n            \"name\": \"Egypt\",\n            \"adjective\": \"Egyptian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SV\",\n            \"code\": \"SV\",\n            \"name\": \"El Salvador\",\n            \"adjective\": \"El Salvadoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GQ\",\n            \"code\": \"GQ\",\n            \"name\": \"Equatorial Guinea\",\n            \"adjective\": \"Equatorial Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ER\",\n            \"code\": \"ER\",\n            \"name\": \"Eritrea\",\n            \"adjective\": \"Eritrean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EE\",\n            \"code\": \"EE\",\n            \"name\": \"Estonia\",\n            \"adjective\": \"Estonian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Estonian Personal Identification Code\",\n                    \"regex\": [\n                        \"^\\\\d{3}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Isikukood\",\n                    \"example\": \"19912311234\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"ET\",\n            \"code\": \"ET\",\n            \"name\": \"Ethiopia\",\n            \"adjective\": \"Ethiopian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FK\",\n            \"code\": \"FK\",\n            \"name\": \"Falkland Islands\",\n            \"adjective\": \"Falkland Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FO\",\n            \"code\": \"FO\",\n            \"name\": \"Faroe Islands\",\n            \"adjective\": \"Faroese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FM\",\n            \"code\": \"FM\",\n            \"name\": \"Micronesia, Federated States of\",\n            \"adjective\": \"Micronesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FJ\",\n            \"code\": \"FJ\",\n            \"name\": \"Fiji\",\n            \"adjective\": \"Fijian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FI\",\n            \"code\": \"FI\",\n            \"name\": \"Finland\",\n            \"adjective\": \"Finnish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}[\\\\+-A]?\\\\d{3}[A-Z]$\"\n                    ],\n                    \"localeName\": \"Henkilötunnus\",\n                    \"example\": \"311299+123X\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"FR\",\n            \"code\": \"FR\",\n            \"name\": \"France\",\n            \"adjective\": \"French\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"GF\",\n            \"code\": \"GF\",\n            \"name\": \"French Guiana\",\n            \"adjective\": \"French Guianese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PF\",\n            \"code\": \"PF\",\n            \"name\": \"French Polynesia\",\n            \"adjective\": \"French Polynesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TF\",\n            \"code\": \"TF\",\n            \"name\": \"French Southern Territories\",\n            \"adjective\": \"French\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GA\",\n            \"code\": \"GA\",\n            \"name\": \"Gabon\",\n            \"adjective\": \"Gabonese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GM\",\n            \"code\": \"GM\",\n            \"name\": \"Gambia\",\n            \"adjective\": \"Gambian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GE\",\n            \"code\": \"GE\",\n            \"name\": \"Georgia\",\n            \"adjective\": \"Georgian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"DE\",\n            \"code\": \"DE\",\n            \"name\": \"Germany\",\n            \"adjective\": \"German\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"GH\",\n            \"code\": \"GH\",\n            \"name\": \"Ghana\",\n            \"adjective\": \"Ghanaian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GI\",\n            \"code\": \"GI\",\n            \"name\": \"Gibraltar\",\n            \"adjective\": \"Gibraltarian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GR\",\n            \"code\": \"GR\",\n            \"name\": \"Greece\",\n            \"adjective\": \"Greek\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"10-digit Investor Share Code in the Dematerialized Securities System (DSS)\",\n                    \"regex\": [\n                        \"^\\\\d{10}$\"\n                    ],\n                    \"localeName\": \"10ψήφιος Κωδικός Μεριδίου Επενδυτή στο Σύστημα Αϋλων Τίτλων (DSS)\",\n                    \"example\": \"1234567890\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GL\",\n            \"code\": \"GL\",\n            \"name\": \"Greenland\",\n            \"adjective\": \"Greenlander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GD\",\n            \"code\": \"GD\",\n            \"name\": \"Grenada\",\n            \"adjective\": \"Grenadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GP\",\n            \"code\": \"GP\",\n            \"name\": \"Guadeloupe\",\n            \"adjective\": \"Guadeloupian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GU\",\n            \"code\": \"GU\",\n            \"name\": \"Guam\",\n            \"adjective\": \"Guamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GT\",\n            \"code\": \"GT\",\n            \"name\": \"Guatemala\",\n            \"adjective\": \"Guatemalan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GG\",\n            \"code\": \"GG\",\n            \"name\": \"Guernsey\",\n            \"adjective\": \"Giernesi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GN\",\n            \"code\": \"GN\",\n            \"name\": \"Guinea\",\n            \"adjective\": \"Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GW\",\n            \"code\": \"GW\",\n            \"name\": \"Guinea-Bissau\",\n            \"adjective\": \"Bissau-Guinean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GY\",\n            \"code\": \"GY\",\n            \"name\": \"Guyana\",\n            \"adjective\": \"Guyanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HT\",\n            \"code\": \"HT\",\n            \"name\": \"Haiti\",\n            \"adjective\": \"Haitian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HM\",\n            \"code\": \"HM\",\n            \"name\": \"Heard Island and McDonald Islands\",\n            \"adjective\": \"Heard Islander and McDonald Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VA\",\n            \"code\": \"VA\",\n            \"name\": \"Holy See (Vatican City State)\",\n            \"adjective\": \"Vatican Citizen\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HN\",\n            \"code\": \"HN\",\n            \"name\": \"Honduras\",\n            \"adjective\": \"Honduran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HK\",\n            \"code\": \"HK\",\n            \"name\": \"Hong Kong\",\n            \"adjective\": \"Hong Konger\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"HU\",\n            \"code\": \"HU\",\n            \"name\": \"Hungary\",\n            \"adjective\": \"Hungarian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IS\",\n            \"code\": \"IS\",\n            \"name\": \"Iceland\",\n            \"adjective\": \"Icelandic\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}-?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Kennitala\",\n                    \"example\": \"3112991234\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IN\",\n            \"code\": \"IN\",\n            \"name\": \"India\",\n            \"adjective\": \"Indian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ID\",\n            \"code\": \"ID\",\n            \"name\": \"Indonesia\",\n            \"adjective\": \"Indonesian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IR\",\n            \"code\": \"IR\",\n            \"name\": \"Iran\",\n            \"adjective\": \"Iranian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IQ\",\n            \"code\": \"IQ\",\n            \"name\": \"Iraq\",\n            \"adjective\": \"Iraqi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IE\",\n            \"code\": \"IE\",\n            \"name\": \"Ireland\",\n            \"adjective\": \"Irish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"IM\",\n            \"code\": \"IM\",\n            \"name\": \"Isle of Man\",\n            \"adjective\": \"Manx\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IL\",\n            \"code\": \"IL\",\n            \"name\": \"Israel\",\n            \"adjective\": \"Israeli\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"IT\",\n            \"code\": \"IT\",\n            \"name\": \"Italy\",\n            \"adjective\": \"Italian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Fiscal Code\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[A-Z]{6}\\\\d{2}([A-EHLMPRST])(3[01]|[12]\\\\d|0[1-9]|7[01]|[56]\\\\d|4[1-9])([A-Z]{1}\\\\d{3})[A-Z]{1}$\"\n                    ],\n                    \"localeName\": \"Codice Fiscale\",\n                    \"example\": \"ABCDEF99A31A123A\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JM\",\n            \"code\": \"JM\",\n            \"name\": \"Jamaica\",\n            \"adjective\": \"Jamaican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JP\",\n            \"code\": \"JP\",\n            \"name\": \"Japan\",\n            \"adjective\": \"Japanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JE\",\n            \"code\": \"JE\",\n            \"name\": \"Jersey\",\n            \"adjective\": \"Jersian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"JO\",\n            \"code\": \"JO\",\n            \"name\": \"Jordan\",\n            \"adjective\": \"Jordanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KZ\",\n            \"code\": \"KZ\",\n            \"name\": \"Kazakhstan\",\n            \"adjective\": \"Kazakhstani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KE\",\n            \"code\": \"KE\",\n            \"name\": \"Kenya\",\n            \"adjective\": \"Kenyan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KI\",\n            \"code\": \"KI\",\n            \"name\": \"Kiribati\",\n            \"adjective\": \"I-Kiribati\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"XK\",\n            \"code\": \"XK\",\n            \"name\": \"Kosovo\",\n            \"adjective\": \"Kosovar\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KW\",\n            \"code\": \"KW\",\n            \"name\": \"Kuwait\",\n            \"adjective\": \"Kuwaiti\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KG\",\n            \"code\": \"KG\",\n            \"name\": \"Kyrgyzstan\",\n            \"adjective\": \"Kyrgyzstani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LA\",\n            \"code\": \"LA\",\n            \"name\": \"Laos\",\n            \"adjective\": \"Laotian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LV\",\n            \"code\": \"LV\",\n            \"name\": \"Latvia\",\n            \"adjective\": \"Latvian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Code\",\n                    \"regex\": [\n                        \"^\\\\d{6}-?\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Personas kods\",\n                    \"example\": \"123456-12345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LB\",\n            \"code\": \"LB\",\n            \"name\": \"Lebanon\",\n            \"adjective\": \"Lebanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LS\",\n            \"code\": \"LS\",\n            \"name\": \"Lesotho\",\n            \"adjective\": \"Mosotho\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LR\",\n            \"code\": \"LR\",\n            \"name\": \"Liberia\",\n            \"adjective\": \"Liberian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LY\",\n            \"code\": \"LY\",\n            \"name\": \"Libya\",\n            \"adjective\": \"Libyan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LI\",\n            \"code\": \"LI\",\n            \"name\": \"Liechtenstein\",\n            \"adjective\": \"Liechtensteiner\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z]\\\\d{5}$\"\n                    ],\n                    \"localeName\": \"Ausweisnummer\",\n                    \"example\": \"A12345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"Liechtenstein Identity Card\",\n                    \"regex\": [\n                        \"^[A-Z]{2}\\\\d{8}$\"\n                    ],\n                    \"localeName\": \"Identitätskarte Liechtenstein\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"LT\",\n            \"code\": \"LT\",\n            \"name\": \"Lithuania\",\n            \"adjective\": \"Lithuanian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Code\",\n                    \"priority\": 0,\n                    \"localeName\": \"Asmens kodas\",\n                    \"regex\": [\n                        \"^[3456]\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"example\": \"39912311234\"\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"Paso numeris\",\n                    \"example\": \"12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"LU\",\n            \"code\": \"LU\",\n            \"name\": \"Luxembourg\",\n            \"adjective\": \"Luxembourgish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        },\n        {\n            \"id\": \"MO\",\n            \"code\": \"MO\",\n            \"name\": \"Macao\",\n            \"adjective\": \"Macanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MG\",\n            \"code\": \"MG\",\n            \"name\": \"Madagascar\",\n            \"adjective\": \"Malagasy\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MW\",\n            \"code\": \"MW\",\n            \"name\": \"Malawi\",\n            \"adjective\": \"Malawian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MY\",\n            \"code\": \"MY\",\n            \"name\": \"Malaysia\",\n            \"adjective\": \"Malaysian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MV\",\n            \"code\": \"MV\",\n            \"name\": \"Maldives\",\n            \"adjective\": \"Maldivian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ML\",\n            \"code\": \"ML\",\n            \"name\": \"Mali\",\n            \"adjective\": \"Malian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MT\",\n            \"code\": \"MT\",\n            \"name\": \"Malta\",\n            \"adjective\": \"Maltese\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^\\\\d{7}[ABGHLMPZ]$\"\n                    ],\n                    \"localeName\": \"Numru ta' Identifikazzjoni Nazzjonali\",\n                    \"example\": \"1234567A\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"Numru tal-passaport\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MH\",\n            \"code\": \"MH\",\n            \"name\": \"Marshall Islands\",\n            \"adjective\": \"Marshallese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MQ\",\n            \"code\": \"MQ\",\n            \"name\": \"Martinique\",\n            \"adjective\": \"Martiniquais\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MR\",\n            \"code\": \"MR\",\n            \"name\": \"Mauritania\",\n            \"adjective\": \"Mauritanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MU\",\n            \"code\": \"MU\",\n            \"name\": \"Mauritius\",\n            \"adjective\": \"Mauritian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"YT\",\n            \"code\": \"YT\",\n            \"name\": \"Mayotte\",\n            \"adjective\": \"Mahoran\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MX\",\n            \"code\": \"MX\",\n            \"name\": \"Mexico\",\n            \"adjective\": \"Mexican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MD\",\n            \"code\": \"MD\",\n            \"name\": \"Moldova\",\n            \"adjective\": \"Moldovan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MC\",\n            \"code\": \"MC\",\n            \"name\": \"Monaco\",\n            \"adjective\": \"Monégasque\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MN\",\n            \"code\": \"MN\",\n            \"name\": \"Mongolia\",\n            \"adjective\": \"Mongolian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ME\",\n            \"code\": \"ME\",\n            \"name\": \"Montenegro\",\n            \"adjective\": \"Montenegrin\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MS\",\n            \"code\": \"MS\",\n            \"name\": \"Montserrat\",\n            \"adjective\": \"Montserratian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MA\",\n            \"code\": \"MA\",\n            \"name\": \"Morocco\",\n            \"adjective\": \"Moroccan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MZ\",\n            \"code\": \"MZ\",\n            \"name\": \"Mozambique\",\n            \"adjective\": \"Mozambican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MM\",\n            \"code\": \"MM\",\n            \"name\": \"Myanmar\",\n            \"adjective\": \"Burmese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NA\",\n            \"code\": \"NA\",\n            \"name\": \"Namibia\",\n            \"adjective\": \"Namibian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NR\",\n            \"code\": \"NR\",\n            \"name\": \"Nauru\",\n            \"adjective\": \"Nauruan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NP\",\n            \"code\": \"NP\",\n            \"name\": \"Nepal\",\n            \"adjective\": \"Nepalese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NL\",\n            \"code\": \"NL\",\n            \"name\": \"Netherlands\",\n            \"adjective\": \"Dutch\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^(?:(?![O])[A-Z]){2}(?:(?![O])[A-Z\\\\d]){6}\\\\d$\"\n                    ],\n                    \"localeName\": \"Paspoortnummer\",\n                    \"example\": \"XR1001R58\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National identification number\",\n                    \"regex\": [\n                        \"^(?:(?![O])[A-Z]){2}(?:(?![O])[A-Z\\\\d]){6}\\\\d$\"\n                    ],\n                    \"localeName\": \"Nederlandse identiteitskaart\",\n                    \"example\": \"XR1001R58\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"NC\",\n            \"code\": \"NC\",\n            \"name\": \"New Caledonia\",\n            \"adjective\": \"New Caledonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NZ\",\n            \"code\": \"NZ\",\n            \"name\": \"New Zealand\",\n            \"adjective\": \"New Zealander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NI\",\n            \"code\": \"NI\",\n            \"name\": \"Nicaragua\",\n            \"adjective\": \"Nicaraguan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NE\",\n            \"code\": \"NE\",\n            \"name\": \"Niger\",\n            \"adjective\": \"Nigerien\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NG\",\n            \"code\": \"NG\",\n            \"name\": \"Nigeria\",\n            \"adjective\": \"Nigerian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NU\",\n            \"code\": \"NU\",\n            \"name\": \"Niue\",\n            \"adjective\": \"Niuean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NF\",\n            \"code\": \"NF\",\n            \"name\": \"Norfolk Island\",\n            \"adjective\": \"Norfolk Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MP\",\n            \"code\": \"MP\",\n            \"name\": \"Northern Mariana Islands\",\n            \"adjective\": \"Northern Mariana Islanders\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MK\",\n            \"code\": \"MK\",\n            \"name\": \"North Macedonia\",\n            \"adjective\": \"Macedonian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"NO\",\n            \"code\": \"NO\",\n            \"name\": \"Norway\",\n            \"adjective\": \"Norwegian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{7}$\"\n                    ],\n                    \"localeName\": \"Fødselsnummer\",\n                    \"example\": \"31129912345\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"OM\",\n            \"code\": \"OM\",\n            \"name\": \"Oman\",\n            \"adjective\": \"Omani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PK\",\n            \"code\": \"PK\",\n            \"name\": \"Pakistan\",\n            \"adjective\": \"Pakistani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PW\",\n            \"code\": \"PW\",\n            \"name\": \"Palau\",\n            \"adjective\": \"Palauan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PS\",\n            \"code\": \"PS\",\n            \"name\": \"Palestine, State of\",\n            \"adjective\": \"Palestinian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PA\",\n            \"code\": \"PA\",\n            \"name\": \"Panama\",\n            \"adjective\": \"Panamanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PG\",\n            \"code\": \"PG\",\n            \"name\": \"Papua New Guinea\",\n            \"adjective\": \"Papuan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PY\",\n            \"code\": \"PY\",\n            \"name\": \"Paraguay\",\n            \"adjective\": \"Paraguayan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PE\",\n            \"code\": \"PE\",\n            \"name\": \"Peru\",\n            \"adjective\": \"Peruvian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PH\",\n            \"code\": \"PH\",\n            \"name\": \"Philippines\",\n            \"adjective\": \"Filipino\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PN\",\n            \"code\": \"PN\",\n            \"name\": \"Pitcairn\",\n            \"adjective\": \"Pitcairner\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PL\",\n            \"code\": \"PL\",\n            \"name\": \"Poland\",\n            \"adjective\": \"Polish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National identification number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^\\\\d{11}$\"\n                    ],\n                    \"localeName\": \"PESEL\",\n                    \"example\": \"12345678901\"\n                },\n                {\n                    \"name\": \"Tax Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^\\\\d{10}$\"\n                    ],\n                    \"localeName\": \"Numer identyfikacji podatkowej\",\n                    \"example\": \"1234567890\"\n                }\n            ]\n        },\n        {\n            \"id\": \"PT\",\n            \"code\": \"PT\",\n            \"name\": \"Portugal\",\n            \"adjective\": \"Portuguese\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Tax Number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^([1-356]\\\\d|45|7[0-2]|9[0189])\\\\d{7}$\"\n                    ],\n                    \"localeName\": \"Número de Identificação Fiscal\",\n                    \"example\": \"123456789\"\n                },\n                {\n                    \"name\": \"Passport Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^[A-Z]{1,2}\\\\d{6}$\"\n                    ],\n                    \"localeName\": \"Passaporte\",\n                    \"example\": \"A123456\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"PR\",\n            \"code\": \"PR\",\n            \"name\": \"Puerto Rico\",\n            \"adjective\": \"Puerto Rican\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"QA\",\n            \"code\": \"QA\",\n            \"name\": \"Qatar\",\n            \"adjective\": \"Qatari\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CF\",\n            \"code\": \"CF\",\n            \"name\": \"Republic of Central Africa\",\n            \"adjective\": \"Central African\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KR\",\n            \"code\": \"KR\",\n            \"name\": \"Republic of Korea\",\n            \"adjective\": \"South Korean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RE\",\n            \"code\": \"RE\",\n            \"name\": \"Réunion\",\n            \"adjective\": \"Réunionese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RO\",\n            \"code\": \"RO\",\n            \"name\": \"Romania\",\n            \"adjective\": \"Romanian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Numeric Code\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[1-9]\\\\d{2}(1[0-2]|0[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{6}$\"\n                    ],\n                    \"localeName\": \"Cod Numeric Personal (CNP)\",\n                    \"example\": \"1991231123456\"\n                },\n                {\n                    \"name\": \"Passport Number\",\n                    \"priority\": 1,\n                    \"regex\": [\n                        \"^\\\\d{8,9}$\"\n                    ],\n                    \"localeName\": \"Numărul Pașaportului\",\n                    \"example\": \"123456789\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"RU\",\n            \"code\": \"RU\",\n            \"name\": \"Russia\",\n            \"adjective\": \"Russian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RW\",\n            \"code\": \"RW\",\n            \"name\": \"Rwanda\",\n            \"adjective\": \"Rwandan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"BL\",\n            \"code\": \"BL\",\n            \"name\": \"Saint Barthélemy\",\n            \"adjective\": \"Barthélemois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SH\",\n            \"code\": \"SH\",\n            \"name\": \"Saint Helena, Ascension and Tristan da Cunha\",\n            \"adjective\": \"Saint Helenian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"KN\",\n            \"code\": \"KN\",\n            \"name\": \"Saint Kitts and Nevis\",\n            \"adjective\": \"Kittitian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LC\",\n            \"code\": \"LC\",\n            \"name\": \"Saint Lucia\",\n            \"adjective\": \"Saint Lucian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"MF\",\n            \"code\": \"MF\",\n            \"name\": \"Saint Martin (French part)\",\n            \"adjective\": \"Saint-Martinois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"PM\",\n            \"code\": \"PM\",\n            \"name\": \"Saint Pierre and Miquelon\",\n            \"adjective\": \"Miquelonnais\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VC\",\n            \"code\": \"VC\",\n            \"name\": \"Saint Vincent and the Grenadines\",\n            \"adjective\": \"Vincentian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"WS\",\n            \"code\": \"WS\",\n            \"name\": \"Samoa\",\n            \"adjective\": \"Samoan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SM\",\n            \"code\": \"SM\",\n            \"name\": \"San Marino\",\n            \"adjective\": \"Sammarinese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ST\",\n            \"code\": \"ST\",\n            \"name\": \"São Tomé and Príncipe\",\n            \"adjective\": \"São Toméan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SA\",\n            \"code\": \"SA\",\n            \"name\": \"Saudi Arabia\",\n            \"adjective\": \"Saudi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SN\",\n            \"code\": \"SN\",\n            \"name\": \"Senegal\",\n            \"adjective\": \"Senegalese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"RS\",\n            \"code\": \"RS\",\n            \"name\": \"Serbia\",\n            \"adjective\": \"Serbian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SC\",\n            \"code\": \"SC\",\n            \"name\": \"Seychelles\",\n            \"adjective\": \"Seychellois\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SL\",\n            \"code\": \"SL\",\n            \"name\": \"Sierra Leone\",\n            \"adjective\": \"Sierra Leonean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SG\",\n            \"code\": \"SG\",\n            \"name\": \"Singapore\",\n            \"adjective\": \"Singaporean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SX\",\n            \"code\": \"SX\",\n            \"name\": \"Sint Maarten (Dutch part)\",\n            \"adjective\": \"Sint Maartener\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SK\",\n            \"code\": \"SK\",\n            \"name\": \"Slovakia\",\n            \"adjective\": \"Slovakian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Number\",\n                    \"regex\": [\n                        \"^\\\\d{2}(1[0-2]|0[1-9]|6[0-2]|5[1-9])(3[01]|[12]\\\\d|0[1-9])\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Rodné číslo\",\n                    \"example\": \"9912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 1\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 2\n                }\n            ]\n        },\n        {\n            \"id\": \"SI\",\n            \"code\": \"SI\",\n            \"name\": \"Slovenia\",\n            \"adjective\": \"Slovenian\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identification Number\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{3}([1-9]\\\\d)\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Enotna matična številka občana (EMŠO)\",\n                    \"example\": \"3112999121234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SB\",\n            \"code\": \"SB\",\n            \"name\": \"Solomon Islands\",\n            \"adjective\": \"Solomon Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SO\",\n            \"code\": \"SO\",\n            \"name\": \"Somalia\",\n            \"adjective\": \"Somalian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZA\",\n            \"code\": \"ZA\",\n            \"name\": \"South Africa\",\n            \"adjective\": \"South African\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GS\",\n            \"code\": \"GS\",\n            \"name\": \"South Georgia and the South Sandwich Islands\",\n            \"adjective\": \"South Georgia Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SS\",\n            \"code\": \"SS\",\n            \"name\": \"South Sudan\",\n            \"adjective\": \"South Sudanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ES\",\n            \"code\": \"ES\",\n            \"name\": \"Spain\",\n            \"adjective\": \"Spanish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Tax Identification Number\",\n                    \"priority\": 0,\n                    \"localeName\": \"Código de identificación fiscal\",\n                    \"regex\": [\n                        \"^(?:[LK]\\\\d{7}|\\\\d{8})(?![IÑOU])[A-Z]$\"\n                    ],\n                    \"example\": \"12345678A\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"LK\",\n            \"code\": \"LK\",\n            \"name\": \"Sri Lanka\",\n            \"adjective\": \"Sri Lankan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SD\",\n            \"code\": \"SD\",\n            \"name\": \"Sudan\",\n            \"adjective\": \"Sudanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SR\",\n            \"code\": \"SR\",\n            \"name\": \"Suriname\",\n            \"adjective\": \"Surinamese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SJ\",\n            \"code\": \"SJ\",\n            \"name\": \"Svalbard\",\n            \"adjective\": \"Svalbard resident\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SZ\",\n            \"code\": \"SZ\",\n            \"name\": \"Swaziland\",\n            \"adjective\": \"Swazi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SE\",\n            \"code\": \"SE\",\n            \"name\": \"Sweden\",\n            \"adjective\": \"Swedish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Number\",\n                    \"regex\": [\n                        \"^(\\\\d{2})?\\\\d{2}(0[1-9]|1[012])(0[1-9]|[12]\\\\d|3[01])[+-]?\\\\d{4}$\"\n                    ],\n                    \"localeName\": \"Personligt identitetsnummer\",\n                    \"example\": \"209912311234\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"CH\",\n            \"code\": \"CH\",\n            \"name\": \"Switzerland\",\n            \"adjective\": \"Swiss\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"SY\",\n            \"code\": \"SY\",\n            \"name\": \"Syrian Arab Republic\",\n            \"adjective\": \"Syrian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TW\",\n            \"code\": \"TW\",\n            \"name\": \"Taiwan\",\n            \"adjective\": \"Taiwanese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TJ\",\n            \"code\": \"TJ\",\n            \"name\": \"Tajikistan\",\n            \"adjective\": \"Tajikistani\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TZ\",\n            \"code\": \"TZ\",\n            \"name\": \"Tanzania, United Republic of\",\n            \"adjective\": \"Tanzanian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TH\",\n            \"code\": \"TH\",\n            \"name\": \"Thailand\",\n            \"adjective\": \"Thai\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TL\",\n            \"code\": \"TL\",\n            \"name\": \"Timor Lest\",\n            \"adjective\": \"Timorese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TG\",\n            \"code\": \"TG\",\n            \"name\": \"Togo\",\n            \"adjective\": \"Togolese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TK\",\n            \"code\": \"TK\",\n            \"name\": \"Tokelau\",\n            \"adjective\": \"Tokelauan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TO\",\n            \"code\": \"TO\",\n            \"name\": \"Tonga\",\n            \"adjective\": \"Tongan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TT\",\n            \"code\": \"TT\",\n            \"name\": \"Trinidad and Tobago\",\n            \"adjective\": \"Trinidadian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TN\",\n            \"code\": \"TN\",\n            \"name\": \"Tunisia\",\n            \"adjective\": \"Tunisian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TR\",\n            \"code\": \"TR\",\n            \"name\": \"Turkey\",\n            \"adjective\": \"Turkish\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TM\",\n            \"code\": \"TM\",\n            \"name\": \"Turkmenistan\",\n            \"adjective\": \"Turkmen\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TC\",\n            \"code\": \"TC\",\n            \"name\": \"Turks and Caicos Islands\",\n            \"adjective\": \"Turks and Caicos Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"TV\",\n            \"code\": \"TV\",\n            \"name\": \"Tuvalu\",\n            \"adjective\": \"Tuvaluan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UG\",\n            \"code\": \"UG\",\n            \"name\": \"Uganda\",\n            \"adjective\": \"Uganda\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UA\",\n            \"code\": \"UA\",\n            \"name\": \"Ukraine\",\n            \"adjective\": \"Ukrainian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"AE\",\n            \"code\": \"AE\",\n            \"name\": \"United Arab Emirates\",\n            \"adjective\": \"Emirati\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"GB\",\n            \"code\": \"GB\",\n            \"name\": \"United Kingdom\",\n            \"adjective\": \"British\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"priority\": 0,\n                    \"regex\": [\n                        \"^[A-CEGHJ-PR-TW-Z]{1}[A-CEGHJ-NPR-TW-Z]{1}[\\\\d]{6}[A-DFM]{1}$\"\n                    ],\n                    \"localeName\": \"National Insurance Number\",\n                    \"example\": \"QQ123456C\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UM\",\n            \"code\": \"UM\",\n            \"name\": \"United States Minor Outlying Islands\",\n            \"adjective\": \"American Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"US\",\n            \"code\": \"US\",\n            \"name\": \"United States of America\",\n            \"adjective\": \"American\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VI\",\n            \"code\": \"VI\",\n            \"name\": \"United States Virgin Islands\",\n            \"adjective\": \"American Virgin Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UY\",\n            \"code\": \"UY\",\n            \"name\": \"Uruguay\",\n            \"adjective\": \"Uruguayan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"UZ\",\n            \"code\": \"UZ\",\n            \"name\": \"Uzbekistan\",\n            \"adjective\": \"Uzbek\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VU\",\n            \"code\": \"VU\",\n            \"name\": \"Vanuatu\",\n            \"adjective\": \"Ni-Vanuatu\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VE\",\n            \"code\": \"VE\",\n            \"name\": \"Venezuela\",\n            \"adjective\": \"Venezuelan\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VN\",\n            \"code\": \"VN\",\n            \"name\": \"Vietnam\",\n            \"adjective\": \"Vietnamese\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"VG\",\n            \"code\": \"VG\",\n            \"name\": \"Virgin Islands, British\",\n            \"adjective\": \"British Virgin Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"WF\",\n            \"code\": \"WF\",\n            \"name\": \"Wallis and Futuna\",\n            \"adjective\": \"Wallis and Futuna Islander\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"EH\",\n            \"code\": \"EH\",\n            \"name\": \"Western Sahara\",\n            \"adjective\": \"Sahrawi\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"YE\",\n            \"code\": \"YE\",\n            \"name\": \"Yemen\",\n            \"adjective\": \"Yemeni\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZM\",\n            \"code\": \"ZM\",\n            \"name\": \"Zambia\",\n            \"adjective\": \"Zambian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        },\n        {\n            \"id\": \"ZW\",\n            \"code\": \"ZW\",\n            \"name\": \"Zimbabwe\",\n            \"adjective\": \"Zimbabwean\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"9079b4cd-df93-431f-9b8d-b6098743b1fa"},{"name":"Check multiple nationalities","id":"f4a25472-d180-4390-9159-1c9da2464382","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"countryCodes","value":""}],"url":"{{apiRoute}}/client/nationality/{{firmId}}?countryCodes=[]","description":"<p>Returns the priority order of the required national identifiers for the nationality or nationalities provided</p>\n<hr />\n<p>You can use the <strong>nationalities checker</strong> endpoint to create clients with multiple nationalities. It receives a list of client nationalities represented by an array of ISO 3166 country codes and returns the details of the FCA-preferred nationality that is the reporting requirement.</p>\n<p>In order to create a client, you must first retrieve a list of all nationalities for that client to see if they are eligible for trading assets</p>\n<p>The multiple nationalities checker function provides the nationality and the priority order of the national identifiers based on FCA regulation.</p>\n<p>A list of the client's nationalities represented by an array of ISO 3166 ALPHA-2 country codes. More information on these can be found at <a href=\"https://www.iso.org/iso-3166-country-codes.html\">here</a>. There is a search utility available <a href=\"https://www.iso.org/obp/ui/#search\">here</a> – make sure to select \"Country codes\" before searching.</p>\n<hr />\n<p>You can pass the relevant <code>countryCode</code>/s as a query parameter</p>\n<p>Returns the chosen nationalities, their relevant identifiers, and the preferred national identifier for the client in priority order, according to FCA requirements</p>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>nationality</code> array</p>\n<p>Contains details of the relevant nationality</p>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique two-letter identifier for the nationality. This is case sensitive</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>code</code> string<br />A two-letter country code</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the country</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adjective</code> string<br />The country descriptor</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>inEEA</code> boolean<br />This confirms whether or not a country is in the European Economic Area (EEA). Although the UK is not in the EU anymore, it is still reported as <code>inEEA: true</code> as per MiFIR/MiFID II rules</p>\n<hr />\n<p><code>identifiers</code> array<br />An array which captures all forms of national identifiers for the chosen country</p>\n<hr />\n<p><code>identifiers.name</code> string<br />The name of the national identifier. This will be National Insurance Number for British nationals and National Passport Number for all other nationalities</p>\n<hr />\n<p><code>identifiers.regex</code> string<br />A regular expression denoting validation for the national identifier</p>\n<hr />\n<p><code>identifiers.localeName</code> string</p>\n<p>The name of the national identifier</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = British</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>identifiers.example</code> string<br />An example of the alphanumeric national identifier format</p>\n<hr />\n<p><code>identifiers.priority</code> integer<br />The national identifier priority score</p>\n<hr />\n","urlObject":{"path":["client","nationality","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>A list of the client's nationalities represented by an array of ISO 3166 ALPHA-2 country codes. More information on these can be found at <a href=\"https://www.iso.org/iso-3166-country-codes.html\">https://www.iso.org/iso-3166-country-codes.html</a>. There is a search utility available at <a href=\"https://www.iso.org/obp/ui/#search\">https://www.iso.org/obp/ui/#search</a> – make sure to select \"Country codes\" before searching.</p>\n","type":"text/plain"},"key":"countryCodes","value":"[]"}],"variable":[]}},"response":[{"id":"00933a61-bf30-4fbe-b523-56d225fb94bb","name":"Multiple nationalities checker – EEA Only","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/client/nationality/{{firmId}}?countryCodes=[\"IT\", \"IE\", \"RO\"]","host":["{{apiRoute}}"],"path":["client","nationality","{{firmId}}"],"query":[{"key":"countryCodes","value":"[\"IT\", \"IE\", \"RO\"]","description":"A list of the client's nationalities represented by an array of ISO 3166 ALPHA-2 country codes. More information on these can be found at https://www.iso.org/iso-3166-country-codes.html. There is a search utility available at https://www.iso.org/obp/ui/#search – make sure to select \"Country codes\" before searching."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"nationality\": {\n            \"id\": \"IE\",\n            \"code\": \"IE\",\n            \"name\": \"Ireland\",\n            \"adjective\": \"Irish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 0\n                }\n            ]\n        }\n    },\n    \"meta\": {}\n}"},{"id":"817294d4-ac4e-47fb-9296-5ee0ded587c3","name":"Multiple nationalities checker – Non-EEA Only","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/client/nationality/{{firmId}}?countryCodes=[\"AU\", \"NG\", \"GM\"]","host":["{{apiRoute}}"],"path":["client","nationality","{{firmId}}"],"query":[{"key":"countryCodes","value":"[\"AU\", \"NG\", \"GM\"]","description":"A list of the client's nationalities represented by an array of ISO 3166 ALPHA-2 country codes. More information on these can be found at https://www.iso.org/iso-3166-country-codes.html. There is a search utility available at https://www.iso.org/obp/ui/#search – make sure to select \"Country codes\" before searching."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"nationality\": {\n            \"id\": \"AU\",\n            \"code\": \"AU\",\n            \"name\": \"Australia\",\n            \"adjective\": \"Australian\",\n            \"inEEA\": false,\n            \"identifiers\": [\n                {\n                    \"name\": \"National Passport Number\",\n                    \"regex\": [\n                        \"^[A-Z\\\\d-]{6,20}$\"\n                    ],\n                    \"localeName\": \"National Passport Number\",\n                    \"example\": \"AB12345678\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        }\n    },\n    \"meta\": {}\n}"},{"id":"a5a82bb4-aaaf-48fb-bf7e-f60a304bda3f","name":"Multiple nationalities checker – EEA & Non-EEA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/client/nationality/{{firmId}}?countryCodes=[\"AU\", \"CN\", \"FI\", \"IE\"]","host":["{{apiRoute}}"],"path":["client","nationality","{{firmId}}"],"query":[{"key":"countryCodes","value":"[\"AU\", \"CN\", \"FI\", \"IE\"]","description":"A list of the client's nationalities represented by an array of ISO 3166 ALPHA-2 country codes. More information on these can be found at https://www.iso.org/iso-3166-country-codes.html. There is a search utility available at https://www.iso.org/obp/ui/#search – make sure to select \"Country codes\" before searching."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"nationality\": {\n            \"id\": \"FI\",\n            \"code\": \"FI\",\n            \"name\": \"Finland\",\n            \"adjective\": \"Finnish\",\n            \"inEEA\": true,\n            \"identifiers\": [\n                {\n                    \"name\": \"Personal Identity Code\",\n                    \"regex\": [\n                        \"^(3[01]|[12]\\\\d|0[1-9])(1[0-2]|0[1-9])\\\\d{2}[\\\\+-A]?\\\\d{3}[A-Z]$\"\n                    ],\n                    \"localeName\": \"Henkilötunnus\",\n                    \"example\": \"311299+123X\",\n                    \"priority\": 0\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"regex\": [],\n                    \"localeName\": \"CONCAT\",\n                    \"example\": \"19360821MARY#MIGGI\",\n                    \"priority\": 1\n                }\n            ]\n        }\n    },\n    \"meta\": {}\n}"}],"_postman_id":"f4a25472-d180-4390-9159-1c9da2464382"},{"name":"Update client national identifiers","id":"691a8e58-7190-4627-8d02-6ff19a1ad426","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendNationalIdentifier\",\n    \"updateReason\": \"The client wants to trade Exchange Traded Instruments\",\n    \"updateData\": {\n        \"nationalities\": [\n            {\n                \"code\": \"IT\",\n                \"identifiers\": [\n                    {\n                        \"name\": \"Fiscal Code\",\n                        \"available\": true,\n                        \"value\": \"ABCDEF99A31A123A\"\n                    }\n                ]\n            },\n            {\n                \"code\": \"RO\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Updates a client record to add required national identifier/s to allow the client to trade ETIs</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong><br />The update type – this will be set to <code>AmendNationalIdentifier</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong><br />Free format narrative for the reason the update is made</p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the update to be made</p>\n<hr />\n<p><code>nationalities</code> object <strong>Required</strong></p>\n<p>Contains the updated details</p>\n<hr />\n<p><code>nationalities.code</code> object <strong>Required</strong></p>\n<p>The ISO-3166 2-letter country code</p>\n<hr />\n<p><code>nationalities.identifiers</code> array <strong>Required</strong></p>\n<p>Contains details of the required national identifier</p>\n<hr />\n<p><code>nationalities.identifiers.available</code> boolean <strong>Required</strong></p>\n<p>Whether this identifier has been provided</p>\n<hr />\n<p><code>nationalities.identifiers.name</code> string <strong>Required</strong><br />The name of the identifier being used</p>\n<hr />\n<p><code>nationalities.identifiers.value</code> string <strong>Required</strong></p>\n<p>The number of the identifier</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"de770703-9695-4594-8d84-abb8e976223b","name":"Update client national identifiers","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendNationalIdentifier\",\n    \"updateReason\": \"The client wants to trade Exchange Traded Instruments\",\n    \"updateData\": {\n        \"nationalities\": [\n            {\n                \"code\": \"IT\",\n                \"identifiers\": [\n                    {\n                        \"name\": \"Fiscal Code\",\n                        \"available\": true,\n                        \"value\": \"ABCDEF99A31A123A\"\n                    }\n                ]\n            },\n            {\n                \"code\": \"RO\"\n            }\n        ]\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"691a8e58-7190-4627-8d02-6ff19a1ad426"}],"id":"2e7dc35b-22f2-4690-99e9-faf3860a3275","description":"<p>Seccl carries out Transaction Reporting, which requires us to report complete and accurate details of transactions to the FCA on a daily basis.</p>\n<p>For clients investing in Exchange Traded Instruments – including Exchange-Traded Funds (ETFs), Investment Trusts, and Equities – there might be additional national identifiers required for non-GB or dual nationals in line with FCA regulation.</p>\n<p>The <strong>nationalities checker</strong> confirms what national identifier is required in priority order.</p>\n<p><strong>Please note:</strong></p>\n<ul>\n<li><p>National Insurance Number is mandatory for British clients</p>\n</li>\n<li><p>CONCAT – an identifier generated automatically by the Seccl system – may only be indicated if higher priority identifiers are not applicable to the client.</p>\n</li>\n<li><p>We are unable to accept US Citizens at this time.</p>\n</li>\n<li><p>Where an order is submitted in an ETI, for a client that doesn't have the required national identifiers in the nationalities array, the order will generate an exception.</p>\n</li>\n</ul>\n","_postman_id":"2e7dc35b-22f2-4690-99e9-faf3860a3275"}],"id":"f6bcb6f1-16a9-4782-87f2-7d422f57f6c4","description":"<p>Before a client can start investing on your platform, you need to create a client record. The client object allows you to manage the client's information, then create tax wrappers and accounts to begin investing.</p>\n<p>Before creating a client record in Seccl's system, the client must pass through the below journey:</p>\n<ul>\n<li><p>Signs up and sets a password via your application's authentication system</p>\n</li>\n<li><p>Passes a AML/KYC check</p>\n</li>\n<li><p>Enters the required information</p>\n</li>\n<li><p>Views and accepts the platform terms</p>\n</li>\n</ul>\n<p>At this point, you can send the request to create the client record.</p>\n<p>Investment accounts can be created before a client is active, but will only allow account actions once the associated client record is active.</p>\n<p>We have four client types, each has specifc access to different types of investment accounts.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Client Type</strong></th>\n<th><strong>Description</strong></th>\n<th><strong>Available wrappers</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual</td>\n<td>A single client investing their own money</td>\n<td>GIA  <br />ISA  <br />Pension  <br />Third party SIPP  <br />Third party SSAS  <br />Third party offshore bond</td>\n</tr>\n<tr>\n<td>Individual Minor</td>\n<td>A single client under 18 years of age</td>\n<td>JISA</td>\n</tr>\n<tr>\n<td>Corporate</td>\n<td>A company investing on behalf of it's shareholders</td>\n<td>GIA</td>\n</tr>\n<tr>\n<td>Trust</td>\n<td>A trust investing on behalf of its beneficiaries</td>\n<td>GIA</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"a-word-on-regulation\">A word on regulation</h4>\n<h5 id=\"know-your-customer\">Know Your Customer</h5>\n<p>Before you add the client's details to the system, you are required to carry out the necessary AML (Anti-Money Laundering) and KYC (Know Your Customer) checks.</p>\n<p>When the client passes the check, you can declare the “Approved” status in the client object. For example:</p>\n<p><code>\"amlStatus\": \"Approved\"</code></p>\n<p>In addition, you are required to indicate results of PEPs and Sanctions checks within the <code>kycData</code> object. Seccl uses this data for regulatory reporting.</p>\n<h5 id=\"national-identifiers\">National Identifiers</h5>\n<p>Seccl carries out Transaction Reporting, which requires us to report complete and accurate details of transactions to the FCA on a daily basis.</p>\n<p>For clients investing in Exchange Traded Instruments – including Exchange Traded Funds (ETFs), Investment Trusts, and Equities – there might be additional national identifiers required for non-GB or dual nationality clients in line with FCA regulation.</p>\n<p>The <strong>nationalities checker</strong> confirms what national identifier is required in priority order.</p>\n<p><strong>Please note:</strong></p>\n<ul>\n<li><p>CONCAT – an automatically-generated identifier – may only be selected if higher priority identifiers, as shown in the nationalities checker, are not applicable to the client</p>\n</li>\n<li><p>We are unable to accept clients who are US Citizens</p>\n</li>\n</ul>\n<p>In this section, we'll cover:</p>\n<ul>\n<li><p>The client object</p>\n</li>\n<li><p>How to create a client</p>\n</li>\n<li><p>How to retrieve a client</p>\n</li>\n<li><p>How to update a client's details</p>\n</li>\n</ul>\n<p><strong>Endpoints</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/ client\n/ portfolio/summary\n\n</code></pre>","_postman_id":"f6bcb6f1-16a9-4782-87f2-7d422f57f6c4"},{"name":"Client fees","item":[{"name":"Client fee groups","item":[{"name":"The client fee group object","item":[],"id":"b7c92827-4ff9-46be-abac-2857ae0e1c74","description":"<p>Client fee groups are not an entity of their own, but rather a special case of an entity in Seccl's API called \"portfolio groups\", which will not be covered in detail here.</p>\n<p>Client fee groups have the following fields:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"_id\": \"000AA\",\n  \"firmId\": \"ZEBRA\",\n  \"nodeId\": [\n    \"1\"\n  ],\n  \"name\": \"Addams Family Group\",\n  \"groupIntent\": \"Client Fee Group\",\n  \"intentDetails\": {\n        \"adviserFee\": false,\n        \"platformFee\": true,\n        \"status\": \"Active\"\n    }\n}\n\n</code></pre>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>_id</code> string</p>\n<p>The unique identifier of the portfolio group object</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array<br />An array containing the node ID for the new group</p>\n<hr />\n<p><code>nodeId[0]</code> string<br />Unique identifier of the firm node for the new group</p>\n<hr />\n<p>﻿<code>name</code> string<br />The custom name for the portfolio group.</p>\n<hr />\n<p><code>groupIntent</code> string<br />Denotes the intent of the portfolio group. For client fee groups, it should be \"Client Fee Group\".</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Enum values</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Client Fee Group</code></td>\n<td>Client fee group</td>\n</tr>\n<tr>\n<td><code>Pension Account Group</code></td>\n<td>Pension account group</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>intentDetails</code> object<br />A set of additional fields which are different depending on the groupIntent.</p>\n<hr />\n<p><code>intentDetails.adviserFee</code> boolean<br />Determines if adviser fees should be grouped within a client fee group.</p>\n<hr />\n<p><code>intentDetails.platformFee</code> boolean<br />Determines if platform fees should be grouped within a client fee group.</p>\n<hr />\n<p><code>intentDetails.status</code> string<br />A field specific to client fee groups which denotes their status, as explained below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Enum values</th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The group is actively used for fee calculation</td>\n</tr>\n<tr>\n<td><code>Archived</code></td>\n<td>The group is deactivated and should not have any effect on fees</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><strong>The client object and client fee groups</strong></p>\n<p>The clients that belong to a client fee group are not stored within the group. Instead, the group's ID is stored within each client like so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  ... // other fields of the client object\n  \"clientGroups\": [\n    \"clientFeeGroupId\": \"000AA\"\n  ]\n}\n\n</code></pre>\n<p>Therefore, adding a client to a group or removing a client from a group is done by sending a PATCH request to the client endpoint.</p>\n","_postman_id":"b7c92827-4ff9-46be-abac-2857ae0e1c74"},{"name":"Creating a group","item":[{"name":"Create a client fee group","event":[{"listen":"test","script":{"id":"a7ac6752-d45e-4744-a2e6-3ca1585b6681","exec":["pm.test('Expect response to be success', function(){","    pm.response.to.be.success","    pm.environment.set(\"portfolioGroupId\", pm.response.json().data.id);","})"],"type":"text/javascript"}}],"id":"219738e2-3efe-4ede-8cf5-4dc4c9208a63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"name\": \"Addams Family\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"groupIntent\": \"Client Fee Group\",\n    \"intentDetails\": {\n        \"adviserFee\": false,\n        \"platformFee\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup","description":"<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>name</code> string <strong>Required</strong><br />The custom name of the new group</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong><br />An array containing the node ID for the new group</p>\n<hr />\n<p><code>nodeId[0]</code> string <strong>Required</strong><br />Unique identifier of the firm node for the new group</p>\n<hr />\n<p><code>groupIntent</code> string <strong>Required</strong></p>\n<p>The group intent of the portfolio group, for a client fee group it should be <code>\"Client Fee Group\"</code>.</p>\n<hr />\n<p><code>intentDetails</code> object <strong>Required</strong></p>\n<p>A set of additional fields which are different depending on the <code>groupIntent</code>.</p>\n<hr />\n<p><code>intentDetails.adviserFee</code> boolean <strong>Required</strong></p>\n<p>Determines if adviser fees should be grouped within the client fee group.</p>\n<hr />\n<p><code>intentDetails.platformFee</code> boolean <strong>Required</strong></p>\n<p>Determines if platform fees should be grouped within the client fee group.</p>\n","urlObject":{"path":["portfoliogroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"06dcc094-7ad4-4acf-9bfe-8d2c29047649","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"name\": \"Addams Family\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"groupIntent\": \"Client Fee Group\",\n    \"intentDetails\": {\n        \"adviserFee\": false,\n        \"platformFee\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Oct 2023 16:05:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"66929e63-de90-4424-a643-5f6ed30703c3"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Nn4a7F5qDoEEejw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17-4gRlT1aZjYiqMH+Dja9toznngLs\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-653fd445-4b34710c0199e3e36d82d714;Sampled=0;lineage=b1e0bd31:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"024H3\"\n    }\n}"},{"id":"9c5a3720-96c0-4b78-82cc-e8550e167c83","name":"Failure - name too short","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"T\",\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"groupIntent\": \"Client Fee Group\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Oct 2023 16:05:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"222"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"110ea963-4bd6-4497-b0ba-29912a987410"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"222"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Nn4gKGrPjoEEpVg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"de-C/P4Xha1CoE76sPX/qZ6L99ezcA\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-653fd467-67ff52c953e4a88709bec44d;Sampled=0;lineage=b1e0bd31:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"name\",\n                \"errorMessage\": \"Name is too short (minimum is 2 characters)\",\n                \"type\": \"length\"\n            }\n        ]\n    }\n}"},{"id":"e02720db-9051-4d0f-8e07-31c8423a55d9","name":"Failure - name too long","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test\",\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"groupIntent\": \"Client Fee Group\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 30 Oct 2023 16:06:36 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"223"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"3d52e51a-edd9-43a4-bc8a-e5cf4bc036d9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"223"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Nn4l8FacDoEEnQw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"df-BZ5gv65pd9igequ/7HmNehY7rwQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-653fd48c-5da8e4ac77e6bf761a3427ad;Sampled=0;lineage=b1e0bd31:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"name\",\n                \"errorMessage\": \"Name is too long (maximum is 128 characters)\",\n                \"type\": \"length\"\n            }\n        ]\n    }\n}"}],"_postman_id":"219738e2-3efe-4ede-8cf5-4dc4c9208a63"}],"id":"2484f604-61b8-4211-9fc6-8c44384e6fe9","description":"<p>Create a portfolio group with a group intent of \"Client Fee Group\" on the platform.</p>\n<p>Newly created client fee groups are automatically set as \"active\", meaning that as soon as you add clients to the group, their fees will automatically start taking the group into account for future fee calculations.</p>\n<p>You will need to provide the intent details of the group which accepts values for both adviser fees and platform fees. Supported fee types can be enabled or disabled in any combination (or all on, or all off), but all must be explicitly set when creating the group</p>\n<p>Returns the ID of the newly created group.</p>\n","_postman_id":"2484f604-61b8-4211-9fc6-8c44384e6fe9"},{"name":"Adding and removing members","item":[{"name":"Add client via client","event":[{"listen":"test","script":{"id":"22582cb1-1182-46f8-99a4-df447f6863d0","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","});"],"type":"text/javascript"}}],"id":"a0fe1915-6392-4390-9199-2330316bde79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"clientGroups\": {\n        \"clientFeeGroupId\": \"{{portfolioGroupId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Clients are added to a client fee group using the endpoint for modifying a client, by updating a field on the client which denotes the client fee group they belong to.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client belongs to</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The Seccl ID of the client</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>clientGroups.clientFeeGroupId</code></td>\n<td>The ID of the client fee group that we want the client to belong to</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b3639328-010c-4887-8aad-54c322d3cca7","name":"Error returned as client is already member of another group","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"clientGroups\": {\n        \"clientFeeGroupId\": \"{{portfolioGroupId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a0fe1915-6392-4390-9199-2330316bde79"},{"name":"Retrieve client fee group","event":[{"listen":"test","script":{"id":"22582cb1-1182-46f8-99a4-df447f6863d0","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","    pm.environment.set(\"portfolioGroupUpdateId\", pm.response.json().data.updateId);","});"],"type":"text/javascript","packages":{}}}],"id":"4318c829-662e-4f74-9b28-1402601c3fb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>Retrieve the client fee group object using the GET endpoint in order to access the latest <code>updateId</code> property.</p>\n<p>This will be needed in order to add / remove clients to a fee group via the PATCH client fee group endpoint.</p>\n","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4318c829-662e-4f74-9b28-1402601c3fb7"},{"name":"Add client via portfolio group","event":[{"listen":"test","script":{"id":"22582cb1-1182-46f8-99a4-df447f6863d0","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","});"],"type":"text/javascript","packages":{}}}],"id":"3524b6c4-b519-4b6b-8881-fac49b9745fc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"intentDetails\": {\n        \"addMembers\": [\n            \"{{clientId}}\"\n        ]\n    },\n    \"updateId\": \"{{portfolioGroupUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>Clients are added to a client fee group using the endpoint for modifying a client, by updating a field on the client which denotes the client fee group they belong to.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client belongs to</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The Seccl ID of the client</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>clientGroups.clientFeeGroupId</code></td>\n<td>The ID of the client fee group that we want the client to belong to</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3524b6c4-b519-4b6b-8881-fac49b9745fc"},{"name":"Remove client via client","event":[{"listen":"test","script":{"id":"6bed91fd-b057-420b-b49a-08b414ad6a1c","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","});"],"type":"text/javascript"}}],"id":"26885353-0307-4033-9c92-fc58f699d09f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"clientGroups\": {\n        \"clientFeeGroupId\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>Clients are removed from a client fee group using the endpoint for modifying a client, by updating a field on the client which denotes the client fee group they belong to. In order to remove the client from the group, we set this field to <code>null</code>.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client belongs to</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The Seccl ID of the client</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>clientGroups.clientFeeGroupId</code></td>\n<td>The ID of the client fee group the client belongs to</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"db2687ad-cd1d-45ec-b787-8e2c04b5b784","name":"Success","originalRequest":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientUpdateId}}\",\n    \"clientGroups\": {\n        \"clientFeeGroupId\": null\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"26885353-0307-4033-9c92-fc58f699d09f"},{"name":"Remove client via portfolio group","event":[{"listen":"test","script":{"id":"6bed91fd-b057-420b-b49a-08b414ad6a1c","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","});"],"type":"text/javascript","packages":{}}}],"id":"23310b33-9ffb-4c7e-af69-0a28012cd957","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"intentDetails\": {\n        \"removeMembers\": [\n            \"{{clientId}}\"\n        ]\n    },\n    \"updateId\": \"{{portfolioGroupUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>Clients are removed from a client fee group using the endpoint for modifying a client, by updating a field on the client which denotes the client fee group they belong to. In order to remove the client from the group, we set this field to <code>null</code>.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client belongs to</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The Seccl ID of the client</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>clientGroups.clientFeeGroupId</code></td>\n<td>The ID of the client fee group the client belongs to</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"23310b33-9ffb-4c7e-af69-0a28012cd957"}],"id":"159e3aca-289f-4afd-ada0-a4b2a781a70a","description":"<p>Clients can be added to a group by creating a PATCH request to the client object.</p>\n<p>In order to be able to add and remove clients, you must have the client fee group user scope.</p>\n<p>There is no limit set on how many clients a group can have, however a client can only be in one group at a time. If an attempt is made to add a client to a second group, the request will fail. Should there be a need to add a client to a group who is already a member of another group, then they will need to be removed from that group first.</p>\n<p>A client cannot be added to a group which has been archived, the group must have an active status in order to have members.</p>\n<p>Once a client has been added to a group, the group ID will then be visible when doing a GET request for the client.</p>\n<p>In order to return a list of all members of a group this can be done by using the following GET request</p>\n<p><code>{{pfolioApiRoute}}/client/{{pfolioUserFirmId}}/?clientGroups[clientFeeGroupId]={{portfolioGroupId}}</code></p>\n","_postman_id":"159e3aca-289f-4afd-ada0-a4b2a781a70a"},{"name":"Update fee group name","item":[{"name":"Retrieve client fee group","event":[{"listen":"test","script":{"id":"1e11f782-2875-4375-80e4-1361affc773c","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","    pm.environment.set(\"portfolioGroupUpdateId\", pm.response.json().data.updateId);","});"],"type":"text/javascript","packages":{}}}],"id":"e80d02de-722f-4c29-8562-8c224733c4dd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e80d02de-722f-4c29-8562-8c224733c4dd"},{"name":"Update fee group name","id":"7a5a7ef3-6209-4cfb-bd4a-e3ae8970549b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{portfolioGroupUpdateId}}\",\n    \"name\": \"New name\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a5a7ef3-6209-4cfb-bd4a-e3ae8970549b"}],"id":"c56a7561-74ab-4faf-896b-3b7850c088e6","description":"<p>A client fee group can be updated with a new <code>name</code> by using a PATCH request.</p>\n<p>An <code>updateId</code> is required with the new <code>name</code> and is returned from a GET client fee group request.</p>\n","_postman_id":"c56a7561-74ab-4faf-896b-3b7850c088e6"},{"name":"Updating fee group intent details","item":[{"name":"Retrieve client fee group","event":[{"listen":"test","script":{"id":"1e11f782-2875-4375-80e4-1361affc773c","exec":["pm.test(\"Response status is success\", function () {","    pm.response.to.be.success","    pm.environment.set(\"portfolioGroupUpdateId\", pm.response.json().data.updateId);","});"],"type":"text/javascript","packages":{}}}],"id":"6265c529-8a0c-4660-a262-df8d59cbf72b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6265c529-8a0c-4660-a262-df8d59cbf72b"},{"name":"Enable a fee type","event":[{"listen":"test","script":{"id":"d24edaeb-b80e-43bf-828a-fdc224b3a107","exec":["pm.test('Expect response to be success', function(){","    pm.response.to.be.success","})"],"type":"text/javascript","packages":{}}}],"id":"7a1cfcbd-ed64-4b1c-a914-96600d7ef784","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{portfolioGroupUpdateId}}\",\n    \"intentDetails\": {\n        \"adviserFee\": true\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>The endpoint for modifying the group can be used to alter intent details, including supported fee types.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client fee group belongs to</td>\n</tr>\n<tr>\n<td><code>portfolioGroupId</code></td>\n<td>The Seccl ID of the client fee group</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>intentDetails.adviserFee</code></td>\n<td>Enables/disables adviser fee grouping for this group. If omitted does not modify this fee type</td>\n</tr>\n<tr>\n<td><code>intentDetails.platformFee</code></td>\n<td>Enables/disables platform fee grouping for this group. If omitted does not modify this fee type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7a1cfcbd-ed64-4b1c-a914-96600d7ef784"},{"name":"Disable a fee type","event":[{"listen":"test","script":{"id":"d24edaeb-b80e-43bf-828a-fdc224b3a107","exec":["pm.test('Expect response to be success', function(){","    pm.response.to.be.success","})"],"type":"text/javascript","packages":{}}}],"id":"977d6bfd-0192-4298-b154-700a22d418ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{portfolioGroupUpdateId}}\",\n    \"intentDetails\": {\n        \"platformFee\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>The endpoint for modifying the group can be used to alter intent details, including supported fee types.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client fee group belongs to</td>\n</tr>\n<tr>\n<td><code>portfolioGroupId</code></td>\n<td>The Seccl ID of the client fee group</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>intentDetails.adviserFee</code></td>\n<td>Enables/disables adviser fee grouping for this group. If omitted does not modify this fee type</td>\n</tr>\n<tr>\n<td><code>intentDetails.platformFee</code></td>\n<td>Enables/disables platform fee grouping for this group. If omitted does not modify this fee type</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"977d6bfd-0192-4298-b154-700a22d418ad"}],"id":"47f703f0-08fe-405b-997c-c25d77d60977","description":"<p>Properties of the group <code>intentDetails</code> can be modified after creation by using a PATCH request. This can be used to support / remove specific fee types.</p>\n<p>An <code>updateId</code> is required with the relevant modifications and is returned from a GET client fee group request.</p>\n","_postman_id":"47f703f0-08fe-405b-997c-c25d77d60977"},{"name":"Archiving a group","item":[{"name":"Archive or reinstate a client fee group","event":[{"listen":"test","script":{"id":"d24edaeb-b80e-43bf-828a-fdc224b3a107","exec":["pm.test('Expect response to be success', function(){","    pm.response.to.be.success","    // pm.environment.set(\"portfolioGroupId\", pm.response.json().data.id);","})"],"type":"text/javascript"}}],"id":"9a436497-f025-4b2a-8588-cda83b2932ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{portfolioGroupUpdateId}}\",\n    \"intentDetails\": {\n        \"status\": \"Archived\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}","description":"<p>A client fee group is archived using the endpoint for modifying a portfolio group, by updating the <code>intentDetails.status</code> field to <code>\"Archived\"</code>. Conversely, to reinstate an archived client fee group, the same field can be set to <code>\"Active\"</code>.</p>\n<p><strong>URL Parameters</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The Seccl ID of the firm the client fee group belongs to</td>\n</tr>\n<tr>\n<td><code>portfolioGroupId</code></td>\n<td>The Seccl ID of the client fee group</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Body</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>intentDetails.status</code></td>\n<td>If <code>\"Active\"</code>, the client fee group will be taken into account to calculate fees. If <code>\"Archived\"</code>, the client fee group will be disregarded when calculating fees.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliogroup","{{firmId}}","{{portfolioGroupId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"ab50f2a4-0494-46f8-aefd-ab8886676ff1","name":"Failure due to members still attached to group","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{portfolioGroupUpdateId}}\",\n    \"intentDetails\": {\n        \"status\": \"Archived\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliogroup/{{firmId}}/{{portfolioGroupId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"9a436497-f025-4b2a-8588-cda83b2932ba"}],"id":"9c4d444c-dbf1-4aed-a5a7-2ef573b1f58e","description":"<p>If a group is no longer required, it can be archived. This is done by a PATCH request to the group to change the <code>status</code> to <code>Archived</code>. The date of the archiving is recorded on the group.</p>\n<p>In order to archive a group all members should be removed first. If an attempt is made to archive a group which still has members, then the request will fail.</p>\n<p>A group can be reinstated after archiving and made active again.</p>\n","_postman_id":"9c4d444c-dbf1-4aed-a5a7-2ef573b1f58e"}],"id":"4e308ed4-c4e1-43ae-930b-dc9238dbc7db","description":"<p><strong>What is a client fee group?</strong></p>\n<p>A client fee group is a grouping of clients so that they each pay fees based on the total value of all their assets combined. Applies to both platform and adviser fees.</p>\n<p><strong>What are they designed to do?</strong></p>\n<p>Clients are charged fees based on the total value of all their assets. This is done in tiers, so the higher the total value, the lower the proportional fee. Client fee groups are designed to save clients money by allowing them to collate their assets with other clients, so that the group can fall into a higher tier which charges a smaller fee. The overall effect is that each member of the group will pay less in fees than they would as an individual not in a group.</p>\n<p>One example would be a family group, where a platform can allow members of a family to join a client fee group together so they can have lower fees because their total asset value is combined across the family for fee tier purposes. However, client fee groups are not limited to families, and platforms can decide how to use them and restrict them.</p>\n<p><strong>What will be covered in this section</strong></p>\n<ul>\n<li><p>The client fee group object</p>\n</li>\n<li><p>Creating a client fee group</p>\n</li>\n<li><p>Adding a client to a client fee group</p>\n</li>\n<li><p>Removing a client from a client fee group</p>\n</li>\n<li><p>Archiving &amp; reinstating a client fee group</p>\n</li>\n</ul>\n<p><strong>Endpoints</strong></p>\n<p>Operations such as creating a group and changing its status to active or archived are done using the <code>/portfoliogroup</code> endpoint, <code>POST</code> or <code>PATCH</code> respectively.</p>\n<p>Operations such as adding or removing a client to/from a group are done using the <code>/client</code> endpoint with a <code>PATCH</code> request.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/portfoliogroup\n/client\n\n</code></pre>","_postman_id":"4e308ed4-c4e1-43ae-930b-dc9238dbc7db"},{"name":"Client fee structures","item":[{"name":"Assigning a client to a platform fee structure","item":[{"name":"Create a client | Individual with fee structure","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"0e227ff0-54dd-40ae-ab5a-faf6da988c3c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"feeStructures\": {\n        \"platformFeeId\": \"{{platformFeeStructureId}}\"\n    },\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"vulnerability\": {\n        \"isVulnerable\": true,\n        \"reason\": [\n            \"Health\",\n            \"Life event\", \n            \"Resilience\", \n            \"Capability\"\n        ],\n        \"isSupportTemporary\": false\n    },\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform who is attached to a platform fee structure</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p>﻿<code>feeStructures</code> object<br />Contains the fee structures that the client is assigned to</p>\n<hr />\n<p>﻿<code>feeStructures.platformFeeId</code> string<br />The unique identifier for the platform fee structure that the client is assigned to</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string<br />The flat number, building name, or building number of the client's home address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"bd1bb376-a0c5-46d1-9747-fc3e76c6b506","name":"Create a client – Success: Client created with multiple nationalities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"},{"id":"086b62c1-6ad4-4894-8226-fe4282c9e142","name":"Create a client – Error: Provided identifier value does not match the required format","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"ABC1234D\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"nationalities\",\n                \"errorMessage\": \"The value of the provided National Insurance Number is not a valid format\",\n                \"type\": \"validNationality\"\n            }\n        ]\n    }\n}"},{"id":"09ce3260-e943-4f88-af43-7b86f00b19ca","name":"Create a client - PEP","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 22 Dec 2022 15:30:09 GMT"},{"key":"x-amzn-RequestId","value":"8723ef93-6397-429f-9806-575e3e116d63"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"djewBFuCDoEFc9g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-AVtFxTtzq2pglY6mHU7TQYDUVks\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63a477ff-4dd590a732de74c30b324a3e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4dd28c7d9439664c66fbf62f5cd00636.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"mmobsBjLHfQmAkDKYcYjWjJMaW0aNbE5SciHqFL4X4U9UVwlCTXLMw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02G876D\"\n    }\n}"}],"_postman_id":"0e227ff0-54dd-40ae-ab5a-faf6da988c3c"},{"name":"Update client with fee structure","id":"d0c230c0-9539-41a7-a944-3d0ddca53ab0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientupdateId}}\",\n    \"feeStructures\": {\n        \"platformFeeId\": \"{{platformFeeStructureId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>You can update a client and assign a platform fee structure to them using this request</p>\n<p>Returns a successful response</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n<p>﻿<code>feeStructures</code> object<br />Contains the fee structures that the client is assigned to</p>\n<hr />\n<p>﻿<code>feeStructures.platformFeeId</code> string<br />The unique identifier for the platform fee structure that the client is assigned to</p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"78bf6414-516d-4c7d-904e-61967a5bf9d8","name":"Update Client fields – National Identifiers","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientupdateId}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"IT\",\n            \"identifiers\": [\n                {\n                    \"name\": \"Fiscal Code\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\"\n                }\n            ]\n        },\n        {\n            \"code\": \"RO\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{firmId}}/{{id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"d0c230c0-9539-41a7-a944-3d0ddca53ab0"}],"id":"2fc644c8-d68f-4198-b2ba-a9dbd4332ab2","description":"<p>Clients are assigned to a fee Structure by the presence of a fee structure document id on their client record.</p>\n<p>The fee structure will need to exist and will need to match the type for the structure that's being assigned - for example a non-platform fee structure cannot be assigned to a client as a platform fee.</p>\n<p>The new property is:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"feeStructures\": {\n  \"platformFeeId\": \"{{platformFeeStructureId}}\" \n}\n\n</code></pre>\n","_postman_id":"2fc644c8-d68f-4198-b2ba-a9dbd4332ab2"}],"id":"3ead7927-6be0-460c-9601-808962d1398e","description":"<h2 id=\"overview\">Overview</h2>\n<p>Fee structures allow you to define and assign custom fee configurations to specific clients. This provides flexibility in fee management without requiring client switching between nodes.</p>\n<p>Fee structures can be used to:</p>\n<ul>\n<li><p>Customise fees for individual clients without changing their node</p>\n</li>\n<li><p>Create and manage multiple fee configurations that can be reused across clients</p>\n</li>\n<li><p>Seamlessly switch clients between different fee structures as needed</p>\n</li>\n</ul>\n<h2 id=\"current-scope\">Current scope</h2>\n<p>Fee structures are applicable to the platform fee type only.</p>\n<p>Creating and managing fee structures is also currently unsupported via the API and will come at a later date. If you are looking to create or update a fee structure for your firm, please raise a ticket with the support team.</p>\n<h2 id=\"how-it-works\">How it works</h2>\n<p>When a fee event is triggered, the system follows this calculation sequence for an account:</p>\n<ol>\n<li><p>Checks if the client has a specific fee structure assigned</p>\n</li>\n<li><p>If assigned, the calculation uses that fee structure to calculate the applicable fee</p>\n</li>\n<li><p>If no fee structure is assigned to the client, the calculation falls back to the standard platform charge configured on the client's nearest node in the hierarchy</p>\n</li>\n</ol>\n","_postman_id":"3ead7927-6be0-460c-9601-808962d1398e"}],"id":"d6b47dbf-df64-414c-ada1-0ee7bed15206","_postman_id":"d6b47dbf-df64-414c-ada1-0ee7bed15206","description":""},{"name":"Investment accounts","item":[{"name":"The client product object","item":[],"id":"79bb874b-fb5f-449d-9069-c1f88992b1e4","description":"<p>This represents the wrapper information of your client. A client product is automatically created when an investment account is created for the first time. There is a single client product per wrapper type per client record.</p>\n<p>The client product record stores information related to the product including remaining allowance, date product terms accepted, details on the client's beneficiaries.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"{{clientProductId}}\"\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"clientIds\": [\"{{clientId}}\"],\n    \"wrapperType\": \"PENSION\",\n    \"schemeProductId\": \"{{schemeProductId}}\",\n    \"declarationAcceptedDate\":\"2022-12-10\",\n    \"declarationExpiryDate\":\"2023-12-10\",\n    \"expressionOfWishNominations\":[\n        {\n          \"title\": \"Mr\"\n          \"surname\": \"Flinstone\"\n          \"firstName\": \"Fred\"\n          \"beneficiaryRelationship\": \"Husband\"\n          \"beneficiaryProportion\": 1\n        }    \n    ],\n    \"productName\":\"Flinstone Pension Account\",\n    \"externalIds\":[\n        {\n          \"value\": \"DW123456\",\n          \"idType\": \"Gaudi\"\n        }\n       ],\n    \"acceptedProviderTerms\": true,\n    \"acceptedProviderTermsDate\":\"2022-12-10\",\n    \"productStatus\":\"drawdownConfirmed\",\n    \"incomeAccountId\":\"{{accountId}}\",\n    \"auditDetails\": {\n        \"updateDate\": \"2022-07-11T09:16:46.220Z\",\n         \"userFirmId\": \"SECCI\",\n         \"userId\": \"029B3FF\",\n         \"version\": 1,\n         \"application\": \"PfolioAPI\"\n        },\n      \"updateId\": \"62cbea7e556e7ce6230b80f0\",\n}\n\n</code></pre>\n<h3 id=\"attributes\">Attributes</h3>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client product</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The node Id that the client record is attached to</p>\n<hr />\n<p>﻿<code>clientIds</code> array</p>\n<p>Contains the associated client Ids</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The type of wrapper that the client product relates</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Enum values</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GIA</td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td>ISA</td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td>PENSION</td>\n<td>SIPP</td>\n</tr>\n<tr>\n<td>TPPENSION</td>\n<td>Third Party Pension</td>\n</tr>\n<tr>\n<td>JISA</td>\n<td>Junior ISA</td>\n</tr>\n<tr>\n<td>SSAS</td>\n<td>Small Self-Administered Schemes (Pension)</td>\n</tr>\n<tr>\n<td>TPOFFBOND</td>\n<td>Third Party Offshore Bonds</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>schemeProductId</code> alphanumerical string</p>\n<p>The scheme product Id of the product – this is relevant for pension products</p>\n<hr />\n<p><code>declarationAcceptedDate</code> numerical string</p>\n<p>The date the client accepted the ISA terms</p>\n<hr />\n<p><code>declarationExpiryDate</code> numerical string</p>\n<p>The date the ISA declaration expires – if the client opens an ISA, accepts the declaration and doesn't contribute for an entire tax year, they will be required to re-accept the ISA declaration in order to contribute</p>\n<hr />\n<p><code>expressionOfWishNominations</code> array</p>\n<p>Contains details of the client's nominated beneficiaries for their pension</p>\n<hr />\n<p><code>productName</code> string</p>\n<p>Name of the product</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the record the last time it was updated</p>\n<hr />\n<p><code>externalIds</code> array</p>\n<p>Contains details of external account Ids of the product provider</p>\n<hr />\n<p><code>acceptedProviderTerms</code> boolean</p>\n<p>Indicates that the client has accepted the pension terms</p>\n<hr />\n<p><code>acceptedProviderTermsDate</code> numerical string</p>\n<p>The date the client accepted the pension terms</p>\n<hr />\n<p><code>productStatus</code> string</p>\n<p>The status of the pension</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>drawdownPending</code></td>\n<td>The clients wants to take income from their pension</td>\n</tr>\n<tr>\n<td><code>drawdownConfirmed</code></td>\n<td>The client has taken income from their pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>productDetail</code> array</p>\n<p>Contains details of the client's drawdown pension, including crystallisation amount, the benefit commencement date, the money purchase allowance, and the lifetime allowance percentage</p>\n<hr />\n<p><code>incomeAccountId</code> string</p>\n<p>The unique identifier of the investment account that the client wishes to take income from – this is relevant for Gaudi pensions only</p>\n<hr />\n<p><code>updateHistory</code> array</p>\n<p>Contains details of updates made to the client product record</p>\n<hr />\n","_postman_id":"79bb874b-fb5f-449d-9069-c1f88992b1e4"},{"name":"The scheme product object","item":[],"id":"5489b4bd-1fee-4dbf-b020-6799737a4c1e","description":"<p>This represents a scheme product setup in Seccl's system</p>\n<p>* Each scheme is a legal entity that has the ability to appoint an administrator<br />* This endpoint returns all scheme products setup for your firm, which could include multiple pension schemes, as well as other third party product, such as Small Self-Administered Pensions (SSAS) and offshore bonds<br />* Within the scheme, you can have different products which can be white labelled</p>\n<p><strong>Example</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": [\n        {\n            \"id\": \"00002\",\n            \"firmId\": \"SECCI\",\n            \"wrapperType\": \"PENSION\",\n            \"schemeName\": \"Seccl Personal Pension\",\n            \"pensionSchemeTaxReference\": \"20005619RK\",\n            \"schemeBankDetails\": {\n                \"sortCode\": \"308012\",\n                \"accountNumber\": \"17199999\",\n                \"accountName\": \"SECCL CUSTODY CLIENT MONEY ACCOUNT\"\n            },\n            \"contactName\": \"Anthony Clifford\",\n            \"contactNumber\": \"+447880999999\",\n            \"taxWrapperAdministrator\": \"SCUST\",\n            \"reliefAtSourceReferenceNumber\": \"S3006\",\n            \"schemeFCAReferenceNumber\": \"793200\",\n            \"uniqueTaxPayerReference\": \"8641015938\",\n            \"schemeAdministratorAddress\": {\n                \"buildingNumber\": \"20\",\n                \"address1\": \"Manvers Street\",\n                \"address2\": \"Bath\",\n                \"country\": \"GB\",\n                \"postCode\": \"BA1 1JW\"\n            },\n            \"declarationType\": \"Seccl\",\n            \"_schemeName\": \"SECCL PERSONAL PENSION\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-07-11T09:16:46.220Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B3FF\",\n                \"version\": 1,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"62cbea7e556e7ce6230b80f0\",\n            \"schemeFirmId\": \"SECCL\",\n            \"schemeId\": \"00002\",\n            \"availableToNodeId\": [\n                \"0\"\n            ],\n            \"productName\": \"Staging Seccl Personal Pension\",\n            \"_productName\": \"SECCL PERSONAL PENSION\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}\n\n</code></pre>\n<h3 id=\"the-scheme-product-object\">The scheme product object</h3>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the scheme product</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The wrapper type that the scheme product relates to</p>\n<hr />\n<p><code>schemeName</code> string</p>\n<p>The name of the scheme</p>\n<hr />\n<p><code>pensionSchemeTaxReference</code> string</p>\n<p>The Pension Scheme Tax Reference (PSTR)</p>\n<hr />\n<p><code>schemeBankDetails</code> array</p>\n<p>Contains details of the scheme's bank details</p>\n<hr />\n<p><code>contactName</code> string</p>\n<p>The contact name of the scheme product</p>\n<hr />\n<p><code>contactNumber</code> numerical string</p>\n<p>The contact number of the scheme product</p>\n<hr />\n<p><code>taxWrapperAdministrator</code> string</p>\n<p>The tax wrapper administrator of the scheme product</p>\n<hr />\n<p><code>schemeFCAReferenceNumber</code> numerical string</p>\n<p>The FCA reference number of the scheme</p>\n<hr />\n<p><code>externalSystem</code> array</p>\n<p>Contains details of the external system – this will only be present if the scheme product is directly integrated with Seccl</p>\n<hr />\n<p><code>relieftAtSourceReferenceNumber</code> numerical string</p>\n<p>The relief at source reference number used to complete the scheme product's tax returns</p>\n<hr />\n<p><code>uniqueTaxPayerReference</code></p>\n<p>The Unique Tax Payer Reference (UTR) of the scheme product</p>\n<hr />\n<p><code>schemeAdministratorAddress</code> array</p>\n<p>Contains details of the scheme administrator's address</p>\n<hr />\n<p><code>declarationType</code> string</p>\n<p>Indicates which declaration the client should receive – this is only applicable for pensions directly integrated with Seccl</p>\n<hr />\n<p><code>productName</code> string</p>\n<p>The name of the product – this can be white labelled as your platform's pension</p>\n","_postman_id":"5489b4bd-1fee-4dbf-b020-6799737a4c1e"},{"name":"General Investment Account (GIA)","item":[{"name":"Create a GIA","item":[{"name":"Create a GIA","event":[{"listen":"test","script":{"id":"9e9cc43c-c304-47b1-8532-a55ef088dca3","exec":["var data = pm.response.json()","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"89402a7c-4115-4319-875a-0ea70b16f026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"name\": \"Future savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    },\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"26MPD\",\n                \"percentage\": 0.5\n            }\n        ],\n        \"orderDay\": 7\n    },\n    \"recurringPayments\": [\n        {\n            \"movementType\": \"Out\",\n            \"amount\": 42.42,\n            \"paymentDay\": 1,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates a GIA for a client</p>\n<p>Returns the unique identifier <code>accountId</code> (<code>id</code>) for the GIA</p>\n<p>To create a GIA with an investment strategy, refer to the examples under this request.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account - current functionality only supports wrapper type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the platform terms.  <br />  <br />Active accounts can only be created when linked to an active client.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account. Currently only GBP</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for a client.</p>\n<hr />\n<p><code>wrapperDetail</code><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum <strong>Required</strong><br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GIA</td>\n<td>General Investment Account</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates that the investment decision maker is the discretionary fund manager if set to <code>true</code> – this impacts transaction reporting</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates that the management of the account is owned by the adviser if set to <code>true</code></p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates if the account is a trust. Trust account will require an LEI to trade in ETIs</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code></p>\n<p>The unique identifier for a model attached to the account – any transactions created with an auto-invest flag set to true will be invested into this allocation. Please note, changing the model on an account will automatically trigger a rebalance.</p>\n<hr />\n<p><code>wrapperDetail.clientProductId</code></p>\n<p>The unique identifier for the clientProduct that the account is contained within</p>\n<hr />\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation, if applicable. If this account is attached to a model (i.e. has <code>assetAllocationId</code> set in <code>wrapperDetail</code> - it should not contain <code>recurringOrders</code>. See documentation on Investment Strategies &gt; Recurring orders for more information.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required when recurringOrders present</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required when recurringOrders present</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required when recurringOrders present</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required when recurringOrders present</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> number <strong>Required when recurringOrders present</strong></p>\n<p>The percentage allocation of the asset, expressed as a decimal, eg. 0.1</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required when recurringOrders present</strong></p>\n<p>A recurring day of the month, when the orders will be created.</p>\n<hr />\n<p><code>recurringPayments</code> array</p>\n<p>Contains details of recurring contributions to the account. See documentation on Investment Strategies &gt; Recurring orders &gt; Auto-invest a payment to recurring order allocation for more information.</p>\n<hr />\n<p><code>recurringPayments.paymentDay</code> integer <strong>Required if recurringOrders present</strong></p>\n<p>A recurring day of the month, when the payment will be made by the client into their investment account.</p>\n<hr />\n<p><code>recurringPayments.amount</code> number <strong>Required if recurringOrders present</strong></p>\n<p>A recurring amount which will be requested as a bank transfer into the investment account.</p>\n<hr />\n<p><code>recurringPayments.movementType</code> string <strong>Required if recurringOrders present</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In</td>\n</tr>\n<tr>\n<td>Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.method</code> string <strong>Required if recurringOrders present</strong><br />Method by which payment will be made.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank transfer  <br />Direct debit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.autoInvest</code> boolean</p>\n<p>Whether the incoming cash is automatically invested in assets.</p>\n<hr />\n<p><code>externalReference</code> string</p>\n<p>A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"65fe7b83-3b98-414a-9052-5368fd3094d4","name":"Create a GIA with a model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Marge's GIA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\"\n    },\n    \"externalReference\": \"myExternalId123\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F416\"\n    }\n}"}],"_postman_id":"89402a7c-4115-4319-875a-0ea70b16f026"},{"name":"Retrieve a GIA","event":[{"listen":"test","script":{"id":"bd3225a2-7bdf-4cc7-a765-ea1e92998a3f","exec":["var data = pm.response.json()","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","packages":{}}}],"id":"40e87b4f-9c36-4d54-b03d-1304810c75fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves the client's GIA</p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the GIA</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier for the account</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string<br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string<br />The type of account - current functionality only supports wrapper type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string<br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the platform terms.  <br />  <br />Active accounts can only be created when linked to an active client.</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n<tr>\n<td><code>Transfer Out</code></td>\n<td>Transfer out in progress - cash being ringfenced</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string<br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account. Currently only GBP</p>\n<hr />\n<p><code>clientId</code> string<br />The unique identifier for a client.</p>\n<hr />\n<p><code>wrapperDetail</code><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum<br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GIA</td>\n<td>General Investment Account</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates that the investment decision maker is the discretionary fund manager if set to <code>true</code> – this impacts transaction reporting</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates that the management of the account is owned by the adviser if set to <code>true</code></p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates if the account is a trust. Trust account will require an LEI to trade in ETIs</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code></p>\n<p>The unique identifier for a model attached to the account – any transactions created with an auto-invest flag set to true will be invested into this allocation. Please note, changing the model on an account will automatically trigger a rebalance.</p>\n<hr />\n<p><code>wrapperDetail.clientProductId</code></p>\n<p>The unique identifier for the clientProduct that the account is contained within</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"0ec36bc2-be86-4b8a-8092-150d7018becd","name":"Retrieve the GIA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F416\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"1\",\n        \"name\": \"Fred's GIA\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clientId\": \"00DGG54\",\n        \"status\": \"Active\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"clientProductId\": \"{{clientProductId}}\"\n        },\n        \"adviserCharge\": 0.01,\n        \"clientName\": \"Fred Flintstone\",\n        \"nodeName\": \"Firm Name\",\n        \"_name\": \"Fred's GIA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T07:28:24.309Z\",\n            \"userFirmId\": \"{{firmId}}\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"{{updateId}}\"\n    }\n}"}],"_postman_id":"40e87b4f-9c36-4d54-b03d-1304810c75fe"},{"name":"Create a GIA with tiered adviser charges","event":[{"listen":"test","script":{"id":"68a37778-47f5-4db0-b414-369c8c464cc6","exec":["var data = pm.response.json()","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"2ad5ccea-9c2a-41f9-aa43-741c03f454d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Future savings\",\n    \"status\": \"Active\",\n    \"discretionaryManagementCharge\": 0.004,\n    \"adviserTieredCharges\": {\n        \"fromDate\": \"2019-01-01T00:00:00.000Z\",\n        \"toDate\": \"2019-06-01T00:00:00.000Z\",\n        \"minimumAmount\": 100,\n        \"maximumAmount\": 100000,\n        \"instrumentTypes\": [\n            \"ETF\",\n            \"Equity\"\n        ],\n        \"tiers\": [\n            {\n                \"fromAmount\": 0,\n                \"toAmount\": 50000,\n                \"amount\": 100,\n                \"rate\": 0.0012\n            }\n        ]\n    },\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"assetAllocationId\": \"{{modelId}}\"\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates a GIA account for a client with tiered adviser charges.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms and declaration</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms and declaration</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended and all transactions are blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>adviserTieredCharge</code> object<br />A custom adviser charge taken from the account</p>\n<hr />\n<p><code>adviserTieredCharge.fromDate</code> date<br />The date the charges are applied</p>\n<hr />\n<p><code>adviserTieredCharge.toDate</code> date<br />The date the charges are suspended</p>\n<hr />\n<p><code>adviserTieredCharge.minimumAmount</code> decimal string<br />The minimum value of the account which can be charged at this rate</p>\n<hr />\n<p><code>adviserTieredCharge.maximumAmount</code> decimal string<br />The maximum value of the account which can be charged at this rate</p>\n<hr />\n<p><code>adviserTieredCharge.instrumentTypes</code> array<br />List of financial instruments which will be charged</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETF</td>\n</tr>\n<tr>\n<td>Equity</td>\n</tr>\n<tr>\n<td>Fund</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserTieredCharge.tiers</code> array<br />The details of the tiered charge</p>\n<hr />\n<p><code>adviserTieredCharge.fromAmount</code> float<br />The minimum amount the charge is being applied to</p>\n<hr />\n<p><code>adviserTieredCharge.toAmount</code> float<br />The maximum amount the charge is being applied to</p>\n<hr />\n<p><code>adviserTieredCharge.amount</code> float<br />The charge applied for the specified values</p>\n<hr />\n<p><code>adviserTieredCharge.rate</code> float</p>\n<p>fraction - the charge applied for the specified values</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong></p>\n<p>The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean<br />If an account is managed by a discretionary fund manager, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean<br />If an account is managed by an adviser, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> alphanumerical string<br />The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ad5ccea-9c2a-41f9-aa43-741c03f454d7"}],"id":"fc2b1212-df59-4990-be35-d60aef67bdf4","description":"<p>This section shows you how to create and and retrieve a General Investment Account (GIA).</p>\n<p>Further information on trades, transfers and contributions can be found in their respective sections.</p>\n","_postman_id":"fc2b1212-df59-4990-be35-d60aef67bdf4"},{"name":"Retrieve an income statement","item":[{"name":"Retrieve client messages","event":[{"listen":"test","script":{"exec":["const json = pm.response.json()","console.log(json)","if (json.data.length >= 1) {","    const [firstMessage] = json.data","    pm.environment.set(\"messageId\", firstMessage.id)","    pm.environment.set(\"messageUpdateId\", firstMessage.updateId)","}"],"type":"text/javascript","id":"7939fdf5-5ef7-4f03-9cda-915adff4cd05"}}],"id":"48f6768a-f5d9-4e6a-8e47-107391d12a07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/message/{{firmId}}?clientId=&messageType=TAX_STATEMENT&toDate=YYYY-MM-DD","description":"<p>When an income statement is generated for a client, it creates a record on the messages endpoint.</p>\n<p>This allows you to retrieve the <code>payload.id</code> which is required to generate the document PDF.</p>\n","urlObject":{"path":["message","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The id of the client to which the messages belong.</p>\n","type":"text/plain"},"key":"clientId","value":""},{"key":"messageType","value":"TAX_STATEMENT"},{"disabled":true,"description":{"content":"<p>The status of the message. One of <code>ACTIVE</code>, <code>ARCHIVED</code>, <code>DELETED</code>, <code>PENDING</code> or <code>READ</code>.</p>\n","type":"text/plain"},"key":"status","value":"ACTIVE"},{"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"5cb61105-097a-4e82-a85e-2ddb99a00946","name":"Search for a tax statement","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?accountId=02468G5&messageType=TAX_STATEMENT","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates."},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response.","disabled":true},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response.","disabled":true},{"key":"messageType","value":"TAX_STATEMENT"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"62025dd5974821000a33e494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"TAX_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Tax statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your tax statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.750Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.750Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5974821000a33e493\"\n       \n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"48f6768a-f5d9-4e6a-8e47-107391d12a07"},{"name":"Generate a document URL","id":"57a599de-e9bf-4aca-b34e-2551cf241dca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{documentId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{id}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/taxstatement","description":"<p>Generates a Consolidated Tax Voucher (CTV) document URL</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>id</code> string</p>\n<p>This is the <code>paylod.id</code> retrieved from the message object</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for a firm</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n","urlObject":{"path":["files","taxstatement"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"89cd19ca-3beb-484b-bb2e-b37c5a46544c","name":"Generate a tax statement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{documentId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{id}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/taxstatement"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"2021-06-01-GIA\",\n        \"url\": # link saved PDF in AWS\n\n    }\n}"}],"_postman_id":"57a599de-e9bf-4aca-b34e-2551cf241dca"}],"id":"abff2062-3389-4c06-a407-3b46e39355df","description":"<p>An income statement is a regulated document which shows how much income your client's investments have produced and any tax deducted.</p>\n<p>It also shows the investor's share of the fund’s income and the fund manager decides how to invest it.</p>\n<p>These are generated for clients that hold a GIA annually, after Tax Year End.</p>\n<p>This section will show you how to generate and retrieve an income statement.</p>\n<p><strong>Please note: our API refers to the Income statement as a</strong> <strong><code>taxstatement</code></strong></p>\n","_postman_id":"abff2062-3389-4c06-a407-3b46e39355df"}],"id":"b809176b-7e28-407c-8c06-58989f3c325c","description":"<p>A General Investment Account (GIA) is a tax wrapper in which a client can hold both investments and cash. A GIA can be opened by any UK adult over the age of 18.</p>\n<p>Unlike ISAs or SIPPs, GIAs do not benefit from tax advantages. As such, any realised gains or losses caused by the purchase or sale of assets are subject to <strong>capital gains tax</strong> – payable by the investor. The GIA may also be subject to income tax on any income paid.</p>\n<p>Before an investment account is created, the client must have viewed and accepted the platform terms.</p>\n<p>GIAs are available for the following client types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Available to</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individuals  <br />Corporate clients  <br />Trust clients</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"gia-account-object\">GIA Account Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"{{accountId}}\"\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Wilma's GIA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\",\n        \"clientProductId\": \"{{cliendProductId}}\"\n    }\n}\n\n</code></pre>\n","_postman_id":"b809176b-7e28-407c-8c06-58989f3c325c"},{"name":"Joint General Investment Account (Joint GIA)","item":[{"name":"Create a Joint GIA","item":[{"name":"Create a Joint GIA","event":[{"listen":"test","script":{"id":"9e9cc43c-c304-47b1-8532-a55ef088dca3","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"8680b854-0ccc-410c-bdf3-158eb2e88a05","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Brand new joint GIA B !\",\n    \"status\": \"Pending\",\n    \"adviserCharge\": 0.03,\n    \"discretionaryManagementCharge\": 0.02,\n    \"currency\": \"GBP\",\n    \"clients\": [\n        { \"id\": \"03BBB8G\", \"isLeadClient\": true }, \n        { \"id\": \"03BB94G\"}\n    ],\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": true,\n        \"advised\": true\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates a Joint GIA that is owned equally by two clients.</p>\n<p>Returns the unique identifier <code>accountId</code>(<code>id</code>) for the Joint GIA. Only one Joint GIA client product can be created per client, though multiple accounts can be created under this client product. The joint GIA client product is considered a separate entity from an individual GIA client product.</p>\n<p>To create a Joint GIA with an investment strategy, refer to the examples under this request. Ownership of assets within the joint GIA are considered joint.</p>\n<p>We use the <code>isLeadClient</code> flag for one of the clients to denote use of personal details for certain account flows, such as using bank details for matching deposits and paying out withdrawals.</p>\n<p>To create a Joint GIA between two clients, provide the <code>clients</code> property, instead of the <code>clientId</code> property on request.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string<br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The clients have viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The account is created however requires clients to view and accept product terms.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clients</code> Array <strong>Required</strong><br />The unique identifier for a client pairing to create a joint GIA. Two clients must be specified.</p>\n<hr />\n<p><code>clients.id</code> string <strong>Required</strong><br />The client Id of clients associated with the joint gia, must be a valid client <code>individual client</code></p>\n<p>clients must be of status <code>pending</code> or <code>active</code></p>\n<hr />\n<p><code>clients.isLeadClient</code> boolean <strong>Required</strong><br />An identifier for the client whose bank details will be used for the account. Only one client within the provided <code>clients</code> array can be set to the lead client.</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong><br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates whether the account is managed on a discretionary basis</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates whether the account is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> numerical string</p>\n<p>The unique identifier of the model attached to the account</p>\n<hr />\n<p><code>wrapperDetail.declarationAcceptedDate</code> Date</p>\n<p>A flag to signify that GIA declaration terms have been accepted by clients prior to account creation, this flag will be used to note that clients have accepted product terms and the account will be active.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"4d13d314-bd60-4d6a-b271-34bb7a30ce85","name":"Create a joint GIA with a model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Marge's GIA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n     \"clients\": [\n        { \"id\": \"03BBB8G\", \"isLeadClient\": true }, \n        { \"id\": \"03BB94G\"}\n    ],\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F416\"\n    }\n}"}],"_postman_id":"8680b854-0ccc-410c-bdf3-158eb2e88a05"},{"name":"Retrieve a Joint GIA","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"bd3225a2-7bdf-4cc7-a765-ea1e92998a3f"}}],"id":"36fff1aa-0563-4004-8e65-c3323d64b992","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/025F416","description":"<p>Retrieves the client's GIA</p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the GIA</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","025F416"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"76cdb39a-3e41-4a5d-9392-0f5f2a8fb2d6","name":"Retrieve the GIA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/025F416"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F416\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"1\",\n        \"name\": \"Fred's GIA\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clients\": [\n            { \"id\": \"Client1\", \"isLeadClient\": true }, \n            { \"id\": \"Client2\"}\n        ],\n        \"status\": \"Active\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"clientProductId\": \"62839b1526e54809b570d276\"\n        },\n        \"adviserCharge\": 0.01,\n        \"nodeName\": \"Firm Name\",\n        \"_name\": \"Fred's GIA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T07:28:24.309Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631edf98e16642819dce1b67\"\n    }\n}"}],"_postman_id":"36fff1aa-0563-4004-8e65-c3323d64b992"},{"name":"Create a Joint GIA with tiered adviser charges","event":[{"listen":"test","script":{"id":"68a37778-47f5-4db0-b414-369c8c464cc6","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"b972dc10-fab9-4a2f-a868-ee2d8e6ca57e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n        \"firmId\": \"{{firmId}}\",\n        \"nodeId\": \"0\",\n        \"accountType\": \"Wrapper\",\n        \"name\": \"Future savings\",\n        \"status\": \"Active\",\n        \"discretionaryManagementCharge\": 0.004,\n        \"adviserTieredCharges\": {\n          \"fromDate\": \"2019-01-01T00:00:00.000Z\",\n          \"toDate\": \"2019-06-01T00:00:00.000Z\",\n          \"minimumAmount\": 100,\n          \"maximumAmount\": 100000,\n          \"instrumentTypes\": [\n            \"ETF\",\n            \"Equity\"\n          ],\n          \"tiers\": [{\n            \"fromAmount\": 0,\n            \"toAmount\": 50000,\n            \"amount\": 100,\n            \"rate\": 0.0012\n          }]\n        },\n        \"currency\": \"GBP\",\n         \"clients\": [\n            { \"id\": \"Client1\", \"isLeadClient\": true }, \n            { \"id\": \"Client2\"}\n        ],\n        \"wrapperDetail\": {\n          \"wrapperType\": \"GIA\",\n          \"discretionary\": false,\n          \"assetAllocationId\": \"{{modelId}}\"\n        }\n      }"},"url":"{{apiRoute}}/account","description":"<p>Creates a GIA account for a client with tiered adviser charges.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms and declaration</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms and declaration</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended and all transactions are blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>discretionaryManagementCharge</code> String<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>adviserTieredCharge</code> Object<br />A custom adviser charge taken from the account</p>\n<hr />\n<p><code>adviserTieredCharge.fromDate</code> Date<br />The date the charges are applied</p>\n<hr />\n<p><code>adviserTieredCharge.toDate</code> Date<br />The date the charges are suspended</p>\n<hr />\n<p><code>adviserTieredCharge.minimumAmount</code> String<br />The minimum value of the account which can be charged at this rate</p>\n<hr />\n<p><code>adviserTieredCharge.maximumAmount</code> String<br />The maximum value of the account which can be charged at this rate</p>\n<hr />\n<p><code>adviserTieredCharge.instrumentTypes</code> Array<br />List of financial instruments which will be charged</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ETF</td>\n</tr>\n<tr>\n<td>Equity</td>\n</tr>\n<tr>\n<td>Fund</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserTieredCharge.tiers</code> Array<br />The details of the tiered charge</p>\n<hr />\n<p><code>adviserTieredCharge.fromAmount</code> Number<br />The minimum amount the charge is being applied to</p>\n<hr />\n<p><code>adviserTieredCharge.toAmount</code> Number<br />The maximum amount the charge is being applied to</p>\n<hr />\n<p><code>adviserTieredCharge.amount</code> Number<br />The charge applied for the specified values</p>\n<hr />\n<p><code>adviserTieredCharge.rate</code> Number</p>\n<p>fraction - the charge applied for the specified values</p>\n<hr />\n<p><code>currency</code> String <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> String <strong>Required</strong><br />The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> Array <strong>Required</strong><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> String <strong>Required</strong></p>\n<p>The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> Boolean<br />If an account is managed by a discretionary fund manager, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> Boolean<br />If an account is managed by an adviser, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> String<br />The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n<p>wrapperDetail.declarationAcceptedDate Date</p>\n<p>A flag to signify that GIA declaration terms have been accepted by clients prior to account creation, this flag will be used to note that clients have accepted product terms and the account will be active.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b972dc10-fab9-4a2f-a868-ee2d8e6ca57e"}],"id":"e382d812-c0cc-486f-bbf7-8ed71975b413","description":"<p>This section shows you how to create and and retrieve a jointly owned General Investment Account (GIA).</p>\n<p>Further information on trades, transfers and contributions can be found in their respective sections.</p>\n","_postman_id":"e382d812-c0cc-486f-bbf7-8ed71975b413"},{"name":"Accept the Joint GIA declaration","item":[{"name":"Update client product with Joint GIA declaration accepted timestamp","id":"a3a4a066-f82d-4142-9b56-8e6696c8f771","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientProductUpdateId}}\",\n    \"declarations\": [\n        {\n            \"clientId\": \"03BG88J\",\n            \"acceptedDate\": \"2025-04-15\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>You will need to include the <code>updateId</code> of the client product, which is returned by getting the client product.</p>\n<p>After the declaration has been accepted by both clients, the Joint GIA account will become active.</p>\n<p>The request to agree to the declaration can include both clients acceptance or a single clients acceptance. Please see the example requests for further information.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>declarations</code> array <strong>Required</strong></p>\n<p>Contains declaration accetance information for the Joint GIA clients.</p>\n<p><code>declarations[n].clientId</code> <strong>Required</strong></p>\n<p>The client Id who has accepted the declaration.</p>\n<p><code>declarations[n].acceptedDate</code> <strong>Required</strong></p>\n<p>The date in which the client accepted the declaration.</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"ad842b54-ed6b-4f6e-bcd8-a3878814832d","name":"Update client product with single acceptance","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientProductUpdateId}}\",\n    \"declarations\": [\n        {\n            \"clientId\": \"03BG88J\",\n            \"acceptedDate\": \"2025-04-15\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null},{"id":"371d39ba-b1d5-4823-93a3-3c94ad8abd38","name":"Update client product with joint acceptance","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{clientProductUpdateId}}\",\n    \"declarations\": [\n        {\n            \"clientId\": \"03BG88J\",\n            \"acceptedDate\": \"2025-04-15\"\n        },\n        {\n            \"clientId\": \"03BG88K\",\n            \"acceptedDate\": \"2025-04-17\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a3a4a066-f82d-4142-9b56-8e6696c8f771"}],"id":"29427213-1c63-43a7-999f-648f14e1dd57","_postman_id":"29427213-1c63-43a7-999f-648f14e1dd57","description":""}],"id":"08af5f8d-01c3-4b44-a019-06808d6cd974","description":"<p>A Joint General Investment Account (Joint GIA) allows two individual clients to co-own and manage investment assets within a single account structure. Typically used by family members, spouses, or partners, these accounts provide a streamlined way to build and manage an investment portfolio.</p>\n<h2 id=\"key-features\">Key features</h2>\n<ul>\n<li><p><strong>Dual ownership</strong>: Assets held within the account legally belong to both account holders via joint tenancy</p>\n</li>\n<li><p><strong>Shared access</strong>: Both account holders have equal authority to view account information, execute trades, and withdraw funds. Joint GIAs will appear on both clients' valuation statements.</p>\n</li>\n<li><p><strong>Easy movement of funds:</strong> Both account holders can easily move cash between their individually owned and jointly owned accounts, subject to usual wrapper rules and limits</p>\n</li>\n</ul>\n","_postman_id":"08af5f8d-01c3-4b44-a019-06808d6cd974"},{"name":"Individual Savings Account (ISA)","item":[{"name":"Create an ISA","item":[{"name":"Create an ISA","event":[{"listen":"test","script":{"id":"677d5681-5854-4f0a-a150-6bb2b56eb1d8","exec":["var data = pm.response.json()","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"af2be58d-b668-4110-810d-bb126b74d10d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Fred's car savings\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.0125,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\",\n        \"discretionary\": false,\n        \"advised\": true,\n        \"assetAllocationId\": \"{{modelId}}\"\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates an ISA for a client</p>\n<p>Returns the new unique identifier for the investment account</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account - current functionality only supports wrapper type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the platform terms.  <br />  <br />Active accounts can only be created when linked to an active client.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account. Currently only GBP</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for a client.</p>\n<hr />\n<p><code>wrapperDetail</code><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum <strong>Required</strong><br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>ISA</td>\n<td>Individual Savings Account</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates that the investment decision maker is the discretionary fund manager if set to <code>true</code> – this impacts transaction reporting</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates that the management of the account is owned by the adviser if set to <code>true</code></p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates if the account is a trust. Trust account will require an LEI to trade in ETIs</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code></p>\n<p>The unique identifier for a model attached to the account – any transactions created with an auto-invest flag set to true will be invested into this allocation. Please note, changing the model on an account will automatically trigger a rebalance.</p>\n<hr />\n<p><code>wrapperDetail.clientProductId</code></p>\n<p>The unique identifier for the clientProduct that the account is contained within</p>\n<hr />\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation, if applicable. If this account is attached to a model (i.e. has <code>assetAllocationId</code> set in <code>wrapperDetail</code> - it should not contain <code>recurringOrders</code>. See documentation on Investment Strategies &gt; Recurring orders for more information.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> number <strong>Required</strong></p>\n<p>The percentage allocation of the asset, expressed as a decimal, eg. 0.1</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required</strong></p>\n<p>A recurring day of the month, when the orders will be created.</p>\n<hr />\n<p><code>recurringPayments</code> array</p>\n<p>Contains details of recurring contributions to the account. See documentation on Investment Strategies &gt; Recurring orders &gt; Auto-invest a payment to recurring order allocation for more information.</p>\n<hr />\n<p><code>recurringPayments.paymentDay</code> integer <strong>Required</strong></p>\n<p>A recurring day of the month, when the payment will be made by the client into their investment account.</p>\n<hr />\n<p><code>recurringPayments.amount</code> number <strong>Required</strong></p>\n<p>A recurring amount which will be requested as a bank transfer into the investment account.</p>\n<hr />\n<p><code>recurringPayments.movementType</code> string <strong>Required</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In</td>\n</tr>\n<tr>\n<td>Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.method</code> string <strong>Required</strong><br />Method by which payment will be made.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank transfer  <br />Direct debit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.autoInvest</code> boolean</p>\n<p>Whether the incoming cash is automatically invested in assets.</p>\n<hr />\n<p><code>externalReference</code> string</p>\n<p>A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"21f35764-d4e1-4b90-b755-034352118ee2","name":"Create an ISA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Dream Cave ISA\",\n    \"status\": \"Active\",\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\"\n    }\n}"},"url":"{{apiRoute}}/account"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:21:31 GMT"},{"key":"x-amzn-RequestId","value":"b1118073-1308-472d-a37f-115c2e50d3cb"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnRmGf_joEFsTA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-c0zPu4sF2ypHFVCVsmpSFekRJk0\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec0a-6856ce6a3b76f0477a24da31;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"_Qws5NNAdTDRSfIGuaKaCzC_0AlS6-daMHOTsXkBMuhgcxNNNnd5mQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F494\"\n    }\n}"}],"_postman_id":"af2be58d-b668-4110-810d-bb126b74d10d"},{"name":"Retrieve an ISA","event":[{"listen":"test","script":{"id":"b7f82611-4e46-430d-a517-1027de334e4c","exec":["var data = pm.response.json()","pm.globals.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","packages":{}}}],"id":"d8e81fd0-d73b-4ae1-8df5-e3ec79017c58","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieve an ISA account for a client using <code>firmId</code> and <code>accountId</code></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>accountType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n<tr>\n<td><code>Transfer Out</code></td>\n<td>Transfer out in progress - cash being ringfenced</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> float</p>\n<p>The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code></p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string</p>\n<p>The type of tax wrapper – this will be <code>ISA</code></p>\n<hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>If an account is managed by a discretionary fund manager, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>If an account is managed by an adviser, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> numerical string</p>\n<p>The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the client at the time of account creation</p>\n<hr />\n<p><code>clientNationalInsuranceNo</code> string</p>\n<p>The National Insurance Number of the client at the time of account creation</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the nodes the account belongs to</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"099cb3c1-2497-4038-8477-3d784533af3c","name":"Retrieve an ISA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"538"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:21:58 GMT"},{"key":"x-amzn-RequestId","value":"b7d90370-ed89-4de9-8073-4e996c9d4e3d"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"538"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnV_HdcDoEFX3Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"21a-GWzpuhrOGn3gGBkuFGE4hAGBOaw\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec26-0fc0e9c72ce4389b6825116e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"L0pIvbOcwwx3HuaFp3oy8EpT49AvG1h-vHUrLEBoUr0ckAxrMvgYRg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F494\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"accountType\": \"Wrapper\",\n        \"name\": \"Dream Cave ISA\",\n        \"status\": \"Active\",\n        \"currency\": \"GBP\",\n        \"clientId\": \"{{clientId}}\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"ISA\",\n            \"clientProductId\": \"6306410fb98f3428f2f48c28\",\n            \"declarationAcceptedDate\": \"2025-01-01T08:21:30.521Z\"\n        },\n        \"clientName\": \"Wilma Flintstone\",\n        \"clientNationalInsuranceNo\": \"AB813641C\",\n        \"nodeName\": \"Seccl Invest\",\n        \"_name\": \"DREAM CAVE ISA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T08:21:30.521Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631eec0a12f351f37dd2efba\"\n    }\n}"}],"_postman_id":"d8e81fd0-d73b-4ae1-8df5-e3ec79017c58"}],"id":"d7c87c58-fb0e-49d8-be00-9b9430d2a225","description":"<p>This section shows you how to create and and retrieve an Individual Savings Account (ISA).</p>\n","_postman_id":"d7c87c58-fb0e-49d8-be00-9b9430d2a225"},{"name":"Accept the ISA declaration","item":[{"name":"Retrieve an ISA","event":[{"listen":"test","script":{"id":"811f6e31-7a28-4714-8610-725610a9f27e","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountUpdateId\", data.data.updateId)","pm.environment.set(\"clientProductId\", data.data.wrapperDetail.clientProductId)"],"type":"text/javascript","packages":{}}}],"id":"cb8b537e-0ad4-4e96-8c61-44d2f43f937d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object</p>\n<p>This request allows you to locate the <code>clientProductId</code></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>accountType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> float</p>\n<p>The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> array</p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string</p>\n<p>The type of tax wrapper – this will be <code>ISA</code></p>\n<hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>If an account is managed by a discretionary fund manager, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>If an account is managed by an adviser, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> numerical string</p>\n<p>The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the client at the time of account creation</p>\n<hr />\n<p><code>clientNationalInsuranceNo</code> string</p>\n<p>The National Insurance Number of the client at the time of account creation</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the nodes the account belongs to</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b9ab1c8a-28e6-4ce4-8200-b26d09a16896","name":"Retrieve an ISA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"538"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:21:58 GMT"},{"key":"x-amzn-RequestId","value":"b7d90370-ed89-4de9-8073-4e996c9d4e3d"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"538"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnV_HdcDoEFX3Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"21a-GWzpuhrOGn3gGBkuFGE4hAGBOaw\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec26-0fc0e9c72ce4389b6825116e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"L0pIvbOcwwx3HuaFp3oy8EpT49AvG1h-vHUrLEBoUr0ckAxrMvgYRg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F494\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"accountType\": \"Wrapper\",\n        \"name\": \"Dream Cave ISA\",\n        \"status\": \"Active\",\n        \"currency\": \"GBP\",\n        \"clientId\": \"02693G1\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"ISA\",\n            \"clientProductId\": \"6306410fb98f3428f2f48c28\"\n        },\n        \"clientName\": \"Wilma Flintstone\",\n        \"clientNationalInsuranceNo\": \"AB813641C\",\n        \"nodeName\": \"Seccl Invest\",\n        \"_name\": \"DREAM CAVE ISA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T08:21:30.521Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631eec0a12f351f37dd2efba\"\n    }\n}"}],"_postman_id":"cb8b537e-0ad4-4e96-8c61-44d2f43f937d"},{"name":"Retrieve ISA client product","event":[{"listen":"test","script":{"id":"8106c0e3-f9ce-4597-838b-5bf2131b0237","exec":["var data = pm.response.json()","pm.environment.set(\"clientProductUpdateId\", data.data.updateId)"],"type":"text/javascript","packages":{}}}],"id":"4bdd222e-a3c0-48c1-8054-18972afa5f9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>Retrieves the ISA client product record</p>\n<p>This allows to you retrieve the ISA client product <code>updateId</code> which is required to update the record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientProductId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client product</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>clientIds</code> string</p>\n<p>The unique identifier for the clients</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>declarationAcceptanceDate</code></p>\n<p>The date the client accepted the ISA declaration in ISO date format (YYYY-MM-DD)</p>\n<hr />\n<p><code>declarationExpiryDate</code></p>\n<p>The date the ISA declaration expires in ISO date format (YYYY-MM-DD)</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"4a538807-839b-4ef9-82be-0618eddae324","name":"Retrieve ISA clientProduct","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/6306410fb98f3428f2f48c28"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"289"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:23:19 GMT"},{"key":"x-amzn-RequestId","value":"76d9d893-5d01-42c5-a016-19241ff23a8e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"289"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnisHv1DoEFpsw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"121-Ag1lmR9bSmzB/XmixCvrChtltGw\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec77-0c0935bd7ef2b9281ec26a1f;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"z0fwt4VeXfoXgSGnpq1-g84MDA91H-qAVNcCt_hi336psdGzqs15Jw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"6306410fb98f3428f2f48c28\",\n        \"clientIds\": [\n            \"02693G1\"\n        ],\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"wrapperType\": \"ISA\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T08:21:30.280Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 3\n        },\n        \"updateId\": \"631eec0a12f351f37dd2efb9\"\n    }\n}"}],"_postman_id":"4bdd222e-a3c0-48c1-8054-18972afa5f9a"},{"name":"Update client product with ISA declaration accepted date","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"639ac91c-19cd-4376-8ddb-e7efb4cb3895"}}],"id":"6425e696-6efd-4d01-84ed-57de2d4229f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"declarationAcceptedDate\": \"2022-04-08T10:15:57.865Z\",\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>You will need to include the update Id of the client product, which is returned by getting the client product.</p>\n<p>After the declaration has been accepted, when a user makes a contribution to their ISA then the client product will also have a <code>declarationAcceptedDate</code> and a <code>declarationExpiryDate</code>.</p>\n<p>As per HMRC ISA declaration rules, the declaration will expire at the end of the following tax year unless a user makes a contribution in the following tax year. If so, then the <code>declarationExpiryDate</code> will be updated to reflect this.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>declarationAcceptedDate</code> <strong>Required</strong></p>\n<p>The date the client accepted the ISA declaration in ISO date format (YYYY-MM-DD)</p>\n<hr />\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b529c051-cba3-47c7-9c9c-eecbb1640900","name":"Update client product with ISA declaration accepted date","originalRequest":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"declarationAcceptedDate\": \"2022-04-08T10:15:57.865Z\",\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6425e696-6efd-4d01-84ed-57de2d4229f7"}],"id":"5b9f0e14-55a7-4530-b709-a761d49e168a","description":"<p>Allows you to store the client's acceptance to the ISA declaration, which is a regulatory requirement.</p>\n<p>This flow works as follows:</p>\n<p>* Retrieve the account object<br />* Retrieve the client product ID<br />* Retrieve the client product object, in order to find the latest <code>updateId</code><br />* Update the client product object with the date of declaration acceptance</p>\n","_postman_id":"5b9f0e14-55a7-4530-b709-a761d49e168a"},{"name":"Manage a client's ISA allowance","item":[{"name":"Retrieve the portfolio summary","event":[{"listen":"test","script":{"id":"1583d80f-882b-4076-9ad7-8d146dd02afd","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b49fe3a5-8b65-4c7a-a3e5-cfd6226bad98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}","description":"<p>Returns a summary of the positions and investment accounts within the portfolio, as well as information on the portfolio as a whole</p>\n<p>The available ISA allowance can be retrieved via the <code>products</code> array</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>firstName</code> string</p>\n<p>The first name of the client</p>\n<hr />\n<p><code>surname</code> string</p>\n<p>The surname of the client</p>\n<hr />\n<p><code>language</code> enum value</p>\n<p>The language set at the client record</p>\n<hr />\n<p><code>currency</code> enum value</p>\n<p>The three-letter ISO (International Organisation for Standardisation) currency code</p>\n<hr />\n<p><code>nodeId</code> array</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the node that the client record is attached</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the client record</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted platform terms and passed KYC (Know Your Customer checks)</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client record has been created, but they haven't accepted terms, set up a password or passed KYC checks</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>A skeletal client record is created from an illustration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN (International Securities Identification Number) of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The number of units in the holding</p>\n<hr />\n<p><code>positions.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>positions.transferBookValue</code> float</p>\n<p>The number of units multiplied by the price on the day the transfer settled. This will be the same as the <code>positions.bookValue</code> if there's been no in-specie transfer</p>\n<hr />\n<p><code>positions.nonTransferBookValue</code> float</p>\n<p>The book cost since the transfer settled</p>\n<hr />\n<p><code>positions.openingValue</code> float</p>\n<p>The opening value of the account - if no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The current value of the account - if no date parameters are provided, this will show as today's date</p>\n<hr />\n<p><code>positions.growth</code> float</p>\n<p>The growth since the book cost</p>\n<hr />\n<p><code>positions.adjustedGrowth</code> float</p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>positions.growthPercent</code> float</p>\n<p>The growth since the book cost as percentage</p>\n<hr />\n<p><code>positions.adjustedGrowthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.allocation</code> float</p>\n<p>The percentage allocation of the holding within the investment account</p>\n<hr />\n<p><code>accounts</code> array</p>\n<p>Contains details on the individual investment accounts of the client portfolio</p>\n<hr />\n<p><code>accounts.id</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accounts.name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>accounts.accountType</code> string</p>\n<p>The type of account</p>\n<hr />\n<p><code>accounts.currency</code> string</p>\n<p>The three-letter ISO code of the investment account</p>\n<hr />\n<p><code>accounts.wrapperType</code> string</p>\n<p>The wrapper type of the investment account</p>\n<hr />\n<p><code>accounts.nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>accounts.status</code> enum value</p>\n<p>The status of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.recurringPayment</code> array</p>\n<p>Contains details of recurring payments created against the investment account</p>\n<hr />\n<p><code>accounts.wrapperDetail</code> array</p>\n<p>Contains details of the investment account wrapper type</p>\n<hr />\n<p><code>accounts.wrapperDetail.wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.wrapperDetail.discretionary</code> boolean</p>\n<p>Indicate whether the investment strategy of the account is discretionary managed (buy and sell decisions made by an investment manager)</p>\n<hr />\n<p><code>accounts.wrapperDetail.advised</code> boolean</p>\n<p>Indicates whether the management of the investment account is advised</p>\n<hr />\n<p><code>accounts.wrapperDetail.trust</code> boolean</p>\n<p>Indicates whether the management of the investment account is by a trust</p>\n<hr />\n<p><code>accounts.wrapperDetail.clientProductId</code> string</p>\n<p>The unique identifier of the client product that relates to the tax wrapper</p>\n<hr />\n<p><code>accounts.currentValue</code> float</p>\n<p>The current value of the account – if no date parameters are provided, this will refer to today's date</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The opening value of the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.openingStockValue</code> float</p>\n<p>The opening value of the total stock holdings in the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.openingCashValue</code> float</p>\n<p>The opening value of the total cash in the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.bookValue</code> float</p>\n<p>The total book value of holdings in the account</p>\n<hr />\n<p><code>accounts.transferBookValue</code> float</p>\n<p>The total transfer book value for holdings in the account. This will show the same as the book value if no in-specie transfers have taken place</p>\n<hr />\n<p><code>accounts.growth</code> float</p>\n<p>The growth since book costs</p>\n<hr />\n<p><code>accounts.adjustedGrowth</code></p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>accounts.closingCashValue</code> float</p>\n<p>The closing cash value of cash in the account. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>accounts.closingStockValue</code> float</p>\n<p>The total value of stock holdings in the account. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.growthPercent</code> float</p>\n<p>The growth since book costs as a percentage</p>\n<hr />\n<p><code>accounts.adjustedGrowthPercent</code> float</p>\n<p>The growth since assets on platform as a percentage</p>\n<hr />\n<p><code>accounts.transferValue</code> float</p>\n<p>The total transfer value of holdings in the account</p>\n<hr />\n<p><code>accounts.allocation</code> float</p>\n<p>The allocation of the investment account within the whole client portfolio</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The opening value of the account. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The sum of the <code>positions.bookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>nonTransferBookValue</code> float</p>\n<p>The sum of the <code>positions.nonTransferBookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The opening value of the portfolio. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current value of the portfolio. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>closingCashValue</code> float</p>\n<p>The amount of cash in the portfolio</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The growth since the book cost (£)</p>\n<hr />\n<p><code>adjustedGrowth</code> float</p>\n<p>The growth since assets on platform (£)</p>\n<hr />\n<p><code>growthPercent</code> float</p>\n<p>The growth since the book cost as percentage</p>\n<hr />\n<p><code>adjustedGrowthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The sum of the <code>transferValue</code> within the <code>positions</code> array</p>\n<hr />\n<p><code>products</code> array</p>\n<p>Contains details of tax wrappers held within the client portfolio</p>\n<hr />\n<p><code>products.wrapperType</code> enum value</p>\n<p>The relevant tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>JISA</td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td>ISA</td>\n<td>Individual Savings Account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>products.remainingSubscriptionAmount</code> float</p>\n<p>The remaining subscription amount of the client – this is done at the portfolio level, not the individual sub-account level</p>\n<hr />\n","urlObject":{"path":["portfolio","summary","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"description":{"content":"<p>The start date of the range within which to retrieve the summary</p>\n","type":"text/plain"},"key":"fromDate","value":"YYYY-MM-DD"},{"disabled":true,"description":{"content":"<p>The end date of the range within which to retrieve the summary</p>\n","type":"text/plain"},"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"1063fd4b-0ca8-43ba-87f9-3055e4cd831c","name":"Retrieve the portfolio summary","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4467"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 18 Aug 2022 15:45:54 GMT"},{"key":"x-amzn-RequestId","value":"a90a25c8-8978-48e2-b3dd-bac6b4a3ad23"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"4467"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XEO72EsYjoEF4Hw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1173-CCrXZwRDOydQwqkdwapTLiHbe48\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fe5eb2-5e9c2d761bf69e5313a97eb4;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1acbf665fe00b4d436f38e8eeb0ab540.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"Td5Io9N6ZrRN3AwevECZvtTqcPqSzkncqzxFB-RpHIecStJLfh6Oxw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"firmId\": \"SDEMO\",\n        \"id\": \"024B197\",\n        \"name\": \"Ms Demo Caldon\",\n        \"firstName\": \"Demo\",\n        \"surname\": \"Caldon\",\n        \"language\": \"en-GB\",\n        \"currency\": \"GBP\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"nodeName\": [\n            \"Seccl Demo\"\n        ],\n        \"status\": \"Active\",\n        \"positions\": [\n            {\n                \"positionType\": \"Cash\",\n                \"currency\": \"GBP\",\n                \"currentValue\": 23750,\n                \"openingValue\": 0,\n                \"growth\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowth\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"allocation\": 0.2621\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B019KW72\",\n                \"assetId\": \"284JP\",\n                \"assetName\": \"J Sainsbury PLC\",\n                \"quantity\": 10000,\n                \"bookValue\": 17500,\n                \"transferBookValue\": 17500,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 24470,\n                \"growth\": 6970,\n                \"adjustedGrowth\": -390,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.3983,\n                \"adjustedGrowthPercent\": -0.0157,\n                \"currentPrice\": 2.447,\n                \"currentPriceDate\": \"2022-05-16T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.2701\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B2PDGW16\",\n                \"assetId\": \"286D7\",\n                \"assetName\": \"WH Smith PLC\",\n                \"quantity\": 500,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 10000,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 9410,\n                \"growth\": -590,\n                \"adjustedGrowth\": 5,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -0.059,\n                \"adjustedGrowthPercent\": 0.0005,\n                \"currentPrice\": 18.82,\n                \"currentPriceDate\": \"2018-01-18T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.1039\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00BDR05C01\",\n                \"assetId\": \"2851G\",\n                \"assetName\": \"NATIONAL GRID PLC ORD 12 204/473P\",\n                \"quantity\": 1000,\n                \"bookValue\": 7600,\n                \"transferBookValue\": 7600,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 8252,\n                \"growth\": 652,\n                \"adjustedGrowth\": -699,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.0858,\n                \"adjustedGrowthPercent\": -0.0781,\n                \"currentPrice\": 8.252,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.0911\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB0031274896\",\n                \"assetId\": \"284H9\",\n                \"assetName\": \"Marks & Spencer Group PLC\",\n                \"quantity\": 9000,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 10000,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 14760,\n                \"growth\": 4760,\n                \"adjustedGrowth\": 540,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.476,\n                \"adjustedGrowthPercent\": 0.038,\n                \"currentPrice\": 1.64,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.1629\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B4PQW151\",\n                \"assetId\": \"2756G\",\n                \"assetName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc\",\n                \"quantity\": 47,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 10000,\n                \"openingValue\": 0,\n                \"currentValue\": 9968.7,\n                \"growth\": -31.3,\n                \"adjustedGrowth\": -31.3,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -0.0031,\n                \"adjustedGrowthPercent\": -0.0031,\n                \"currentPrice\": 212.1,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 0.0001,\n                \"allocation\": 0.11\n            }\n        ],\n        \"completeTransactions\": [],\n        \"accounts\": [\n            {\n                \"id\": \"023CBJC\",\n                \"name\": \"SIPP\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"PENSION\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Demo\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"PENSION\",\n                    \"discretionary\": true,\n                    \"advised\": true,\n                    \"clientProductId\": \"622b8a28d9cd97857596cdbe\",\n                    \"productStatus\": \"drawdownConfirmed\",\n                    \"productDetail\": {\n                        \"crystallisedAmount\": 11250,\n                        \"benefitCommencementDate\": \"1970-01-20T01:30:20.592Z\",\n                        \"moneyPurchaseAnnualAllowanceTriggered\": true,\n                        \"lifetimeAllowancePercentage\": 0.1\n                    }\n                },\n                \"currentValue\": 90610.7,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 78850,\n                \"transferBookValue\": 45100,\n                \"nonTransferBookValue\": 33750,\n                \"growth\": 11760.7,\n                \"adjustedGrowth\": -575.3,\n                \"closingCashValue\": 23750,\n                \"uninvestedCash\": 23750,\n                \"closingStockValue\": 66860.7,\n                \"growthPercent\": 0.3446,\n                \"adjustedGrowthPercent\": -0.0168,\n                \"transferValue\": 57436,\n                \"allocation\": 1\n            },\n            {\n                \"id\": \"0258B7J\",\n                \"name\": \"Fred's Saving Pot\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"ISA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Demo\",\n                \"status\": \"Active\",\n                \"recurringPayment\": true,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"ISA\",\n                    \"clientProductId\": \"62fd20948cc5a6ff919586c7\"\n                },\n                \"currentValue\": 0,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 0,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 0,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"allocation\": 0\n            }\n        ],\n        \"bookValue\": 78850,\n        \"nonTransferBookValue\": 33750,\n        \"transferBookValue\": 45100,\n        \"openingValue\": 0,\n        \"currentValue\": 90610.7,\n        \"uninvestedCash\": 23750,\n        \"closingCashValue\": 23750,\n        \"growth\": 11760.7,\n        \"growthPercent\": 0.3446,\n        \"adjustedGrowth\": -575.3,\n        \"adjustedGrowthPercent\": -0.0168,\n        \"transferValue\": 57436,\n        \"products\": [\n            {\n                \"wrapperType\": \"ISA\",\n                \"remainingSubscriptionAmount\": 20000\n            }\n        ]\n    }\n}"}],"_postman_id":"b49fe3a5-8b65-4c7a-a3e5-cfd6226bad98"},{"name":"Retrieve ISA allowance exception","id":"65b19464-1983-4c04-a16e-60d0564d5fed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/notification/{{firmId}}/?notificationType=Exception&status=Open","description":"<p>Where a client attempts to create a payment expectation that would take them over their annual ISA subscription allowance, the transaction will fall to exceptions. These are asynchronous errors that indicate something is wrong with the transaction instruction.</p>\n<p><strong>Please note: Pending payment expectations are counted when creating additional payments. If a pending payment expectation is redundant, this should be deleted.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p>﻿<code>id</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>notificationType</code> string</p>\n<p>This will be set to <code>Exception</code></p>\n<hr />\n<p><code>created</code> numerical string</p>\n<p>The date the exception was generated</p>\n<hr />\n<p><code>systemArea</code> string</p>\n<p>The area of the system that the exception relates to – this will be set to <code>Portfolio</code></p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the exception</p>\n<hr />\n<p><code>message</code> string</p>\n<p>This will be set to – <code>Subscription limit for this year has been exceeded</code></p>\n<hr />\n<p><code>systemAreaAction</code> string</p>\n<p>This will be set to <code>Create</code></p>\n<hr />\n<p><code>queueMessage</code> array</p>\n<p>Contains details of the transaction that has errored</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the exception when it was last updated</p>\n<hr />\n","urlObject":{"path":["notification","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The type of notification. This should be set to <code>Exception</code></p>\n","type":"text/plain"},"key":"notificationType","value":"Exception"},{"description":{"content":"<p>The status of the exception</p>\n","type":"text/plain"},"key":"status","value":"Open"}],"variable":[]}},"response":[{"id":"ea15c395-72c1-48df-a972-65ed47a75a02","name":"Retrieve ISA allowance exception","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/notification/{{firmId}}/?notificationType=Exception&status=Open","host":["{{apiRoute}}"],"path":["notification","{{firmId}}",""],"query":[{"key":"notificationType","value":"Exception","description":"The type of notification. This should be set to `Exception`"},{"key":"status","value":"Open","description":"The status of the exception"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"837389"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 23 Dec 2022 11:05:00 GMT"},{"key":"x-amzn-RequestId","value":"bf79dd37-d00a-41b9-9c0c-4b151b901769"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"837389"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"dmK2bE5ojoEFmiA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"cc70d-aZozz4BoPeFsYMHm85nrxa5KoJE\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63a58b5c-6bd0873f64b1375b39729adf;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 df153902fc47e450893ee30df220e710.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"NwmDfoS9WSaHTf35ABoym3-bczAkiTmpKSRRQZxjr-UkK8u1EHhVCA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0000004DM2\",\n            \"firmId\": \"SDEMO\",\n            \"notificationType\": \"Exception\",\n            \"created\": \"2022-12-23T09:48:18.214Z\",\n            \"systemArea\": \"Portfolio\",\n            \"exceptionFirmId\": \"SDEMO\",\n            \"status\": \"Open\",\n            \"message\": \"Subscription limit for this year has been exceeded\",\n            \"systemAreaAction\": \"Create\",\n            \"queue\": \"pfolio\",\n            \"queueMessage\": {\n                \"firmId\": \"SDEMO\",\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"Deposit\",\n                \"movementType\": \"In\",\n                \"accountId\": \"00DC2D9\",\n                \"currency\": \"GBP\",\n                \"amount\": 5000,\n                \"method\": \"Bank Transfer\",\n                \"investToModel\": true,\n                \"status\": \"Pending\",\n                \"linkId\": \"000005N51\",\n                \"type\": \"Create\"\n            },\n            \"exceptionType\": \"Business\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-12-23T09:48:18.217Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"5ea2b5e2e38f9a00071da466\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"65b19464-1983-4c04-a16e-60d0564d5fed"}],"id":"1864232e-2576-491d-b506-cc6bb891eeae","description":"<p>This section shows you how to retrieve a client's portfolio summary and manage their ISA allowance.</p>\n","_postman_id":"1864232e-2576-491d-b506-cc6bb891eeae"}],"id":"4c890d79-0066-4ede-bd6c-b8ae79ab00df","description":"<p>An Individual Savings Account (ISA) is a tax-efficient wrapper which allows investors to save up to £20,000 annually tax free. Seccl operates a <strong>flexible Stocks and Shares ISA</strong>. This means that withdrawals deposited within the same tax year do not impact the investor's ISA £20,000 annual allowance.</p>\n<p>To be eligible to subscribe to a Stocks and Shares ISA the client must be: 18 or over and a resident in the UK (or if not a resident, must meet the conditions set in the declaration).</p>\n<p>Seccl is both an ISA manager and administers ISAs for other ISA managers. For more details and guidance around ISAs and becoming an ISA manager, please refer to the <a href=\"https://www.gov.uk/individual-savings-accounts\">HMRC website</a>.</p>\n<p>Before a client account is created, they must accept the relevant documents associated with ISAs:</p>\n<p>* Terms &amp; Conditions<br />* Key Features<br />* Product terms<br />* Tax declaration</p>\n<p>This above is captured under <strong>Accept the ISA declaration</strong>.</p>\n<p>You can open an ISA with the declaration accepted by passing in the relevant property under the <code>wrapperDetail</code> property. After the ISA is opened, you will need to retrieve the ISA to make available the ISA replay which confirms the declaration that the client has accepted.</p>\n<p>ISAs are available for the following client types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Available to</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individuals</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"isa-account-object\">ISA Account Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"{{accountId}}\"\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Wilma's ISA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\",\n        \"clientProductId\": \"{{clientProductId}}\",\n        \"declarationAcceptedDate\": \"2025-01-01\"\n    }\n}\n\n</code></pre>\n","_postman_id":"4c890d79-0066-4ede-bd6c-b8ae79ab00df"},{"name":"Junior Individual Savings Account (JISA)","item":[{"name":"Create a JISA","item":[{"name":"Create an adult client","event":[{"listen":"test","script":{"id":"4b1593ac-931a-41e8-aa84-a2944434b4d4","exec":["let json = pm.response.json()","","pm.globals.set('parentClientId', json.data.id)"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e947f152-015f-4800-ae69-3bd05b70cb60","exec":["var moment = require('moment')","pm.variables.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.variables.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.variables.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')",""],"type":"text/javascript"}}],"id":"0aa7b49a-9af7-425c-a308-bf03c5260e45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{adultClientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{adultClientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{adultClientNiNumber}}\"\n                }\n            ]\n        },\n        {\n            \"code\": \"RO\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Corporate  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> array <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> array<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening an ISA, JISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the client has accepted the platform terms and conditions – this should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> array<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>nationalities.code</code> object</p>\n<p>The ISO-3166 2-letter country code</p>\n<hr />\n<p><code>nationalities.identifiers</code> array</p>\n<p>Contains details of the national identifier</p>\n<hr />\n<p><code>nationalities.identifiers.available</code> boolean</p>\n<p>Whether this identifier has been provided</p>\n<hr />\n<p><code>nationalities.identifiers.name</code> string<br />The name of the identifier being used</p>\n<hr />\n<p><code>nationalities.identifiers.value</code> string</p>\n<p>The number of the identifier</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0aa7b49a-9af7-425c-a308-bf03c5260e45"},{"name":"Create a child client","event":[{"listen":"prerequest","script":{"id":"9ea72964-4d60-4e7b-886f-cd285905a6b2","exec":["var moment = require('moment')","pm.environment.set(\"childAge\", moment().subtract(16, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"childNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"5ecd2e03-3257-4cc8-b6ce-f91210cdde10","exec":["let json = pm.response.json()","","pm.environment.set('childClientId', json.data.id);"],"type":"text/javascript","packages":{}}}],"id":"a06912d3-95c2-4b79-9a29-92093b4036df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{nodeId}}\"\n    ],\n    \"status\": \"Active\",\n    \"parentId\": [\n        \"{{parentClientId}}\"\n    ],\n    \"clientType\": \"Individual Minor\",\n    \"dateOfBirth\": \"2010-05-10\",\n    \"firstName\": \"Pebbles\",\n    \"surname\": \"Flintstone\",\n    \"taxDomicile\": \"GB\",\n    \"currency\": \"GBP\",\n    \"nationality\": \"GB\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"available\": false,\n                    \"name\": \"National Insurance Number\"\n                },\n                {\n                    \"name\": \"CONCAT\",\n                    \"available\": true\n                }\n            ]\n        }\n    ],\n    \"addressDetail\": {\n        \"flatNumber\": \"Bedrock\",\n        \"address1\": \"The Cave Road\",\n        \"country\": \"GB\",\n        \"postCode\": \"BE1 R0K\"\n    }\n}"},"url":"{{apiRoute}}/client","description":"<p>Creates the child client with the <code>parentId</code></p>\n<p>Returns the unique identifier of the child client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong></p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The parent child hasn't viewed and accepted the JISA terms and declaration</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The parent child has viewed and accepted the JISA terms and declaration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientType</code> string <strong>Required</strong></p>\n<p>The type of client – this should be set to <code>Individual Minor</code></p>\n<hr />\n<p><code>dateOfBirth</code> date <strong>Required</strong></p>\n<p>The date of birth of the child client</p>\n<hr />\n<p><code>firstName</code> string <strong>Required</strong></p>\n<p>The name of the child client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The surname of the child client</p>\n<hr />\n<p><code>parentId</code> array <strong>Required</strong></p>\n<p>The unique client identifier of the parent account – you can only link a single <code>clientId</code> to the child client</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong></p>\n<p>The child client's tax domicile</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong></p>\n<p>The nationality of the child client</p>\n<hr />\n<p><code>nationalities</code> array <strong>Required only if trading ETIs</strong></p>\n<p>Contains details of the child's nationality/s and the relevant national identifiers – if the child is under 16 and doesn't have a NINO, their identifier will default to CONCAT</p>\n<hr />\n<p><code>addressDetail</code> array <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a06912d3-95c2-4b79-9a29-92093b4036df"},{"name":"Create a JISA","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","pm.environment.set('accountId', data.data.id);",""],"type":"text/javascript","id":"a138a015-8d32-48f3-9af1-1612f38aaa8f"}}],"id":"b2130c04-2563-4d02-84fb-37ab4a88f93b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"status\": \"Active\",\n    \"name\": \"Pebbles' JISA\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"JISA\",\n        \"discretionary\": false,\n        \"advised\": true\n    },\n    \"clients\": [\n        {\n            \"id\": \"{{parentClientId}}\",\n            \"decisionMaker\": true\n        },\n        {\n            \"id\": \"{{childId}}\",\n            \"owner\": 1\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates a JISA</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms and declaration</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms and declaration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clients</code> array <strong>Required</strong></p>\n<p>Contains details of the client records attached to the account</p>\n<hr />\n<p><code>clients.id.0</code> string <strong>Required</strong></p>\n<p>The unique identifier of the parent client Id</p>\n<hr />\n<p><code>clients.decisionMaker.0</code> boolean <strong>Required</strong></p>\n<p>Indicates which client is the decision maker – this should be set to <code>true</code></p>\n<hr />\n<p><code>clients.id.1</code> string <strong>Required</strong></p>\n<p>The unique identifier of the child client Id</p>\n<hr />\n<p><code>clients.owner.1</code> integer <strong>Required</strong></p>\n<p>Indicates who is the beneficial owner of the assets – this should be set to <code>1</code></p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong></p>\n<p>The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>JISA</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates if the investment strategy of the account is managed on a discretionary basis</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates if the accounts is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> alphanumerical string</p>\n<p>The model Id attached to the account</p>\n<hr />\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation, if applicable. If this account is attached to a model (i.e. has <code>assetAllocationId</code> set in <code>wrapperDetail</code> - it should not contain <code>recurringOrders</code>. See documentation on Investment Strategies &gt; Recurring orders for more information.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> number <strong>Required</strong></p>\n<p>The percentage allocation of the asset, expressed as a decimal, eg. 0.1</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required</strong></p>\n<p>A recurring day of the month, when the orders will be created.</p>\n<hr />\n<p><code>recurringPayments</code> array</p>\n<p>Contains details of recurring contributions to the account. See documentation on Investment Strategies &gt; Recurring orders &gt; Auto-invest a payment to recurring order allocation for more information.</p>\n<hr />\n<p><code>recurringPayments.paymentDay</code> integer <strong>Required</strong></p>\n<p>A recurring day of the month, when the payment will be made by the client into their investment account.</p>\n<hr />\n<p><code>recurringPayments.amount</code> number <strong>Required</strong></p>\n<p>A recurring amount which will be requested as a bank transfer into the investment account.</p>\n<hr />\n<p><code>recurringPayments.movementType</code> string <strong>Required</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In</td>\n</tr>\n<tr>\n<td>Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.method</code> string <strong>Required</strong><br />Method by which payment will be made.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank transfer  <br />Direct debit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.autoInvest</code> boolean</p>\n<p>Whether the incoming cash is automatically invested in assets.</p>\n<hr />\n<p><code>externalReference</code> string</p>\n<p>A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b2130c04-2563-4d02-84fb-37ab4a88f93b"},{"name":"Retrieve a JISA","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"bedcfb27-362d-4763-8e46-ef7b151c4dec"}}],"id":"9f07affc-3c7b-4970-a799-ea5c49390437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieve a client's ISA</p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the GIA</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>accountType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n<tr>\n<td><code>Transfer Out</code></td>\n<td>Transfer out in progress - cash being ringfenced</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> float</p>\n<p>The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p>clients array</p>\n<p>Array of client details</p>\n<hr />\n<p>clients.0.id string</p>\n<p>Identifier of parent client</p>\n<hr />\n<p>clients.0.decisionMaker boolean</p>\n<p>Indicates which client is the decision maker – this should be set to true for the adult</p>\n<hr />\n<p>clients.1.id string</p>\n<p>Identifier of child client</p>\n<hr />\n<p>clients.1.owner integer</p>\n<p>Indicates who is the beneficial owner of the assets – this should be set to 1 on the child</p>\n<hr />\n<p><code>wrapperDetail</code></p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string</p>\n<p>The type of tax wrapper – this will be <code>JISA</code></p>\n<hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>If an account is managed by a discretionary fund manager, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>If an account is managed by an adviser, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> numerical string</p>\n<p>The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the owner client at the time of account creation</p>\n<hr />\n<p><code>clientNationalInsuranceNo</code> string</p>\n<p>The National Insurance Number of the client at the time of account creation - only when the child is between 16-18</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the nodes the account belongs to</p>\n<p>decimal<br />The percentage amount as a decimal taken from the client</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"81c8dc33-2b9b-4c17-8814-1b399e68ddbe","name":"Retrieve a JISA","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"538"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:21:58 GMT"},{"key":"x-amzn-RequestId","value":"b7d90370-ed89-4de9-8073-4e996c9d4e3d"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"538"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnV_HdcDoEFX3Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"21a-GWzpuhrOGn3gGBkuFGE4hAGBOaw\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec26-0fc0e9c72ce4389b6825116e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"L0pIvbOcwwx3HuaFp3oy8EpT49AvG1h-vHUrLEBoUr0ckAxrMvgYRg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F494\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"accountType\": \"Wrapper\",\n        \"name\": \"Junior's JISA\",\n        \"status\": \"Active\",\n        \"currency\": \"GBP\",\n        \"clients\": [\n            {\"id\": \"02693G1\", \"decisionMaker\": true },\n            {\"id\": \"02693F2\", \"owner\": 1 }\n        ],\n        \"wrapperDetail\": {\n            \"wrapperType\": \"JISA\",\n            \"clientProductId\": \"6306410fb98f3428f2f48c28\"\n        },\n        \"clientName\": \"Junior Flintstone\",\n        \"clientNationalInsuranceNo\": \"AB813641C\",\n        \"nodeName\": \"Seccl Invest\",\n        \"_name\": \"JUNIOR'S JISA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T08:21:30.521Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631eec0a12f351f37dd2efba\"\n    }\n}"}],"_postman_id":"9f07affc-3c7b-4970-a799-ea5c49390437"}],"id":"bfa4eb3c-1fec-49b5-a37d-b6df6a4ca564","description":"<p>This section shows you how to create and retrieve a Junior Individual Savings Account (JISA) and child clients under a parent client.</p>\n<p>The JISA product is a single account which holds two clients - The adult client and the child client.</p>\n<p>In order to create a JISA, you will need:</p>\n<p>- A parent client<br />- A JISA account under the parent client<br />- A child client who will sit under the JISA product alongside the parent. They will need minimal details and will inherit most contact information from their parents by default - unless specified.</p>\n","_postman_id":"bfa4eb3c-1fec-49b5-a37d-b6df6a4ca564"},{"name":"Accept the JISA declaration","item":[{"name":"Retrieve a JISA","event":[{"listen":"test","script":{"id":"0e1b0e59-dcc6-48ca-a195-09d6ed97c0b5","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountUpdateId\", data.data.updateId)","pm.environment.set(\"clientProductId\", data.data.wrapperDetail.clientProductId)"],"type":"text/javascript","packages":{}}}],"id":"7e1cfae2-57cc-464d-8bf7-4988b1cd8cde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object</p>\n<p>This request allows you to locate the <code>clientProductId</code></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>accountType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> float</p>\n<p>The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> array</p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string</p>\n<p>The type of tax wrapper – this will be <code>ISA</code></p>\n<hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>If an account is managed by a discretionary fund manager, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>If an account is managed by an adviser, this will be \"true\", otherwise \"false\"</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> numerical string</p>\n<p>The unique identifier for a model, if the account is <code>discretionary</code> managed</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the client at the time of account creation</p>\n<hr />\n<p><code>clientNationalInsuranceNo</code> string</p>\n<p>The National Insurance Number of the client at the time of account creation</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the nodes the account belongs to</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e1cfae2-57cc-464d-8bf7-4988b1cd8cde"},{"name":"Retrieve JISA client product","event":[{"listen":"test","script":{"id":"e1ffe9f5-750b-4b2c-a383-16446d447655","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientProductUpdateId\", data.data.updateId)"],"type":"text/javascript","packages":{}}}],"id":"14278a20-6b8d-49b0-9c95-8066882a0905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>Retrieves the JISA client product record</p>\n<p>This allows to you retrieve the JISA client product <code>updateId</code> which is required to update the record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientProductId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client product</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>clientIds</code> string</p>\n<p>The unique identifier for the clients</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The type of account – this will be <code>Wrapper</code></p>\n<hr />\n<p><code>declarationAcceptedDate</code></p>\n<p>The date the client accepted the ISA declaration in ISO date format (YYYY-MM-DD)</p>\n<hr />\n<p><code>declarationExpiryDate</code></p>\n<p>The date the ISA declaration expires in ISO date format (YYYY-MM-DD)</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"14278a20-6b8d-49b0-9c95-8066882a0905"},{"name":"Update client product with JISA declaration accepted timestamp Copy","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"f487525f-57ff-431f-b6f9-e960e40d11b2"}}],"id":"d72cd354-a87f-4f76-a40c-8609587099b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"declarationAcceptedDate\": \"2022-04-08T10:15:57.865Z\",\n    \"updateId\": \"{{clientProductUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>You will need to include the <code>updateId</code> of the client product, which is returned by getting the client product.</p>\n<p>After the declaration has been accepted, when a user makes a contribution to their JISA then the client product will also have a <code>declarationAcceptedDate</code> and a <code>declarationExpiryDate</code>.</p>\n<p>As per HMRC ISA declaration rules, the declaration will expire at the end of the following tax year unless a user makes a contribution in the following tax year. If so, then the declarationExpiryDate will be updated to reflect this.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>declarationAcceptedDate</code> <strong>Required</strong></p>\n<p>The date the client accepted the ISA declaration in ISO date format (YYYY-MM-DD)</p>\n<hr />\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d72cd354-a87f-4f76-a40c-8609587099b9"}],"id":"747a05a4-562a-406b-bf79-51f9a026b118","description":"<p>Allows you to store the client's acceptance to the junior ISA declaration, which is a regulatory requirement.</p>\n<p>This flow works as follows:</p>\n<p>* Retrieve the account object<br />* Retrieve the client product ID<br />* Retrieve the client product object, in order to find the latest <code>updateId</code><br />* Update the client product object with the date of declaration acceptance</p>\n","_postman_id":"747a05a4-562a-406b-bf79-51f9a026b118"},{"name":"Manage a client's JISA allowance","item":[{"name":"Retrieve the portfolio summary","event":[{"listen":"test","script":{"id":"0c198fa5-2c79-4277-a1e6-acc6ad85903f","exec":[""],"type":"text/javascript","packages":{}}}],"id":"b242ad92-eafa-42a6-9117-3f00abd043ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}","description":"<p>Returns a summary of the positions and investment accounts within the portfolio, as well as information on the portfolio as a whole</p>\n<p>The available ISA allowance can be retrieved via the <code>products</code> array</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>firstName</code> string</p>\n<p>The first name of the client</p>\n<hr />\n<p><code>surname</code> string</p>\n<p>The surname of the client</p>\n<hr />\n<p><code>language</code> enum value</p>\n<p>The language set at the client record</p>\n<hr />\n<p><code>currency</code> enum value</p>\n<p>The three-letter ISO (International Organisation for Standardisation) currency code</p>\n<hr />\n<p><code>nodeId</code> array</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the node that the client record is attached</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the client record</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted platform terms and passed KYC (Know Your Customer checks)</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client record has been created, but they haven't accepted terms, set up a password or passed KYC checks</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>A skeletal client record is created from an illustration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN (International Securities Identification Number) of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The number of units in the holding</p>\n<hr />\n<p><code>positions.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>positions.transferBookValue</code> float</p>\n<p>The number of units multiplied by the price on the day the transfer settled. This will be the same as the <code>positions.bookValue</code> if there's been no in-specie transfer</p>\n<hr />\n<p><code>positions.nonTransferBookValue</code> float</p>\n<p>The book cost since the transfer settled</p>\n<hr />\n<p><code>positions.openingValue</code> float</p>\n<p>The opening value of the account - if no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The current value of the account - if no date parameters are provided, this will show as today's date</p>\n<hr />\n<p><code>positions.growth</code> float</p>\n<p>The growth since the book cost</p>\n<hr />\n<p><code>positions.adjustedGrowth</code> float</p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>positions.growthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>positions.adjustedGrowthPercent</code> float</p>\n<p>The growth since the book cost as percentage</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.allocation</code> float</p>\n<p>The percentage allocation of the holding within the investment account</p>\n<hr />\n<p><code>accounts</code> array</p>\n<p>Contains details on the individual investment accounts of the client portfolio</p>\n<hr />\n<p><code>accounts.id</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accounts.name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>accounts.accountType</code> string</p>\n<p>The type of account</p>\n<hr />\n<p><code>accounts.currency</code> string</p>\n<p>The three-letter ISO code of the investment account</p>\n<hr />\n<p><code>accounts.wrapperType</code> string</p>\n<p>The wrapper type of the investment account</p>\n<hr />\n<p><code>accounts.nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>accounts.status</code> enum value</p>\n<p>The status of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.recurringPayment</code> array</p>\n<p>Contains details of recurring payments created against the investment account</p>\n<hr />\n<p><code>accounts.wrapperDetail</code> array</p>\n<p>Contains details of the investment account wrapper type</p>\n<hr />\n<p><code>accounts.wrapperDetail.wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.wrapperDetail.discretionary</code> boolean</p>\n<p>Indicate whether the investment strategy of the account is discretionary managed (buy and sell decisions made by an investment manager)</p>\n<hr />\n<p><code>accounts.wrapperDetail.advised</code> boolean</p>\n<p>Indicates whether the management of the investment account is advised</p>\n<hr />\n<p><code>accounts.wrapperDetail.trust</code> boolean</p>\n<p>Indicates whether the management of the investment account is by a trust</p>\n<hr />\n<p><code>accounts.wrapperDetail.clientProductId</code> string</p>\n<p>The unique identifier of the client product that relates to the tax wrapper</p>\n<hr />\n<p><code>accounts.currentValue</code> float</p>\n<p>The current value of the account – if no date parameters are provided, this will refer to today's date</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The opening value of the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.openingStockValue</code> float</p>\n<p>The opening value of the total stock holdings in the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.openingCashValue</code> float</p>\n<p>The opening value of the total cash in the account - it no date parameters are provided, this will show as today's value</p>\n<hr />\n<p><code>accounts.bookValue</code> float</p>\n<p>The total book value of holdings in the account</p>\n<hr />\n<p><code>accounts.transferBookValue</code> float</p>\n<p>The total transfer book value for holdings in the account. This will show the same as the book value if no in-specie transfers have taken place</p>\n<hr />\n<p><code>accounts.growth</code> float</p>\n<p>The growth since book costs</p>\n<hr />\n<p><code>accounts.adjustedGrowth</code></p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>accounts.closingCashValue</code> float</p>\n<p>The closing cash value of cash in the account. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>accounts.closingStockValue</code> float</p>\n<p>The total value of stock holdings in the account. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.growthPercent</code> float</p>\n<p>The growth since book costs as a percentage</p>\n<hr />\n<p><code>accounts.adjustedGrowthPercent</code> float</p>\n<p>The growth since assets on platform as a percentage</p>\n<hr />\n<p><code>accounts.transferValue</code> float</p>\n<p>The total transfer value of holdings in the account</p>\n<hr />\n<p><code>accounts.allocation</code> float</p>\n<p>The allocation of the investment account within the whole client portfolio</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The opening value of the account. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The sum of the <code>positions.bookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>nonTransferBookValue</code> float</p>\n<p>The sum of the <code>positions.nonTransferBookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The opening value of the portfolio. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current value of the portfolio. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>closingCashValue</code> float</p>\n<p>The amount of cash in the portfolio</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The growth since the book cost (£)</p>\n<hr />\n<p><code>adjustedGrowth</code> float</p>\n<p>The growth since assets on platform (£)</p>\n<hr />\n<p><code>growthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>adjustedGrowthPercent</code> float</p>\n<p>The growth since the book cost as percentage</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The sum of the <code>transferValue</code> within the <code>positions</code> array</p>\n<hr />\n<p><code>products</code> array</p>\n<p>Contains details of tax wrappers held within the client portfolio</p>\n<hr />\n<p><code>products.wrapperType</code> enum value</p>\n<p>The relevant tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>JISA</td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td>ISA</td>\n<td>Individual Savings Account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>products.remainingSubscriptionAmount</code> float</p>\n<p>The remaining subscription amount of the client – this is done at the portfolio level, not the individual sub-account level</p>\n<hr />\n","urlObject":{"path":["portfolio","summary","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"description":{"content":"<p>The start date of the range within which to retrieve the summary</p>\n","type":"text/plain"},"key":"fromDate","value":"YYYY-MM-DD"},{"disabled":true,"description":{"content":"<p>The end date of the range within which to retrieve the summary</p>\n","type":"text/plain"},"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"05f4fde3-fb8b-4fbe-8732-0a3ee4dbd97b","name":"Retrieve the portfolio summary","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4467"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 18 Aug 2022 15:45:54 GMT"},{"key":"x-amzn-RequestId","value":"a90a25c8-8978-48e2-b3dd-bac6b4a3ad23"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"4467"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XEO72EsYjoEF4Hw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1173-CCrXZwRDOydQwqkdwapTLiHbe48\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fe5eb2-5e9c2d761bf69e5313a97eb4;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1acbf665fe00b4d436f38e8eeb0ab540.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"Td5Io9N6ZrRN3AwevECZvtTqcPqSzkncqzxFB-RpHIecStJLfh6Oxw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"firmId\": \"SDEMO\",\n        \"id\": \"024B197\",\n        \"name\": \"Ms Demo Caldon\",\n        \"firstName\": \"Demo\",\n        \"surname\": \"Caldon\",\n        \"language\": \"en-GB\",\n        \"currency\": \"GBP\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"nodeName\": [\n            \"Seccl Demo\"\n        ],\n        \"status\": \"Active\",\n        \"positions\": [\n            {\n                \"positionType\": \"Cash\",\n                \"currency\": \"GBP\",\n                \"currentValue\": 23750,\n                \"openingValue\": 0,\n                \"growth\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowth\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"allocation\": 0.2621\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B019KW72\",\n                \"assetId\": \"284JP\",\n                \"assetName\": \"J Sainsbury PLC\",\n                \"quantity\": 10000,\n                \"bookValue\": 17500,\n                \"transferBookValue\": 17500,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 24470,\n                \"growth\": 6970,\n                \"adjustedGrowth\": -390,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.3983,\n                \"adjustedGrowthPercent\": -0.0157,\n                \"currentPrice\": 2.447,\n                \"currentPriceDate\": \"2022-05-16T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.2701\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B2PDGW16\",\n                \"assetId\": \"286D7\",\n                \"assetName\": \"WH Smith PLC\",\n                \"quantity\": 500,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 10000,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 9410,\n                \"growth\": -590,\n                \"adjustedGrowth\": 5,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -0.059,\n                \"adjustedGrowthPercent\": 0.0005,\n                \"currentPrice\": 18.82,\n                \"currentPriceDate\": \"2018-01-18T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.1039\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00BDR05C01\",\n                \"assetId\": \"2851G\",\n                \"assetName\": \"NATIONAL GRID PLC ORD 12 204/473P\",\n                \"quantity\": 1000,\n                \"bookValue\": 7600,\n                \"transferBookValue\": 7600,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 8252,\n                \"growth\": 652,\n                \"adjustedGrowth\": -699,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.0858,\n                \"adjustedGrowthPercent\": -0.0781,\n                \"currentPrice\": 8.252,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.0911\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB0031274896\",\n                \"assetId\": \"284H9\",\n                \"assetName\": \"Marks & Spencer Group PLC\",\n                \"quantity\": 9000,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 10000,\n                \"nonTransferBookValue\": 0,\n                \"openingValue\": 0,\n                \"currentValue\": 14760,\n                \"growth\": 4760,\n                \"adjustedGrowth\": 540,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0.476,\n                \"adjustedGrowthPercent\": 0.038,\n                \"currentPrice\": 1.64,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 1,\n                \"allocation\": 0.1629\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B4PQW151\",\n                \"assetId\": \"2756G\",\n                \"assetName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc\",\n                \"quantity\": 47,\n                \"bookValue\": 10000,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 10000,\n                \"openingValue\": 0,\n                \"currentValue\": 9968.7,\n                \"growth\": -31.3,\n                \"adjustedGrowth\": -31.3,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -0.0031,\n                \"adjustedGrowthPercent\": -0.0031,\n                \"currentPrice\": 212.1,\n                \"currentPriceDate\": \"2022-04-04T00:00:00.000Z\",\n                \"minimumTransferUnit\": 0.0001,\n                \"allocation\": 0.11\n            }\n        ],\n        \"completeTransactions\": [],\n        \"accounts\": [\n            {\n                \"id\": \"023CBJC\",\n                \"name\": \"SIPP\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"PENSION\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Demo\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"PENSION\",\n                    \"discretionary\": true,\n                    \"advised\": true,\n                    \"clientProductId\": \"622b8a28d9cd97857596cdbe\",\n                    \"productStatus\": \"drawdownConfirmed\",\n                    \"productDetail\": {\n                        \"crystallisedAmount\": 11250,\n                        \"benefitCommencementDate\": \"1970-01-20T01:30:20.592Z\",\n                        \"moneyPurchaseAnnualAllowanceTriggered\": true,\n                        \"lifetimeAllowancePercentage\": 0.1\n                    }\n                },\n                \"currentValue\": 90610.7,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 78850,\n                \"transferBookValue\": 45100,\n                \"nonTransferBookValue\": 33750,\n                \"growth\": 11760.7,\n                \"adjustedGrowth\": -575.3,\n                \"closingCashValue\": 23750,\n                \"uninvestedCash\": 23750,\n                \"closingStockValue\": 66860.7,\n                \"growthPercent\": 0.3446,\n                \"adjustedGrowthPercent\": -0.0168,\n                \"transferValue\": 57436,\n                \"allocation\": 1\n            },\n            {\n                \"id\": \"0258B7J\",\n                \"name\": \"Fred's Saving Pot\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"ISA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Demo\",\n                \"status\": \"Active\",\n                \"recurringPayment\": true,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"ISA\",\n                    \"clientProductId\": \"62fd20948cc5a6ff919586c7\"\n                },\n                \"currentValue\": 0,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 0,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 0,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"allocation\": 0\n            }\n        ],\n        \"bookValue\": 78850,\n        \"nonTransferBookValue\": 33750,\n        \"transferBookValue\": 45100,\n        \"openingValue\": 0,\n        \"currentValue\": 90610.7,\n        \"uninvestedCash\": 23750,\n        \"closingCashValue\": 23750,\n        \"growth\": 11760.7,\n        \"growthPercent\": 0.3446,\n        \"adjustedGrowth\": -575.3,\n        \"adjustedGrowthPercent\": -0.0168,\n        \"transferValue\": 57436,\n        \"products\": [\n            {\n                \"wrapperType\": \"JISA\",\n                \"remainingSubscriptionAmount\": 20000\n            }\n        ]\n    }\n}"}],"_postman_id":"b242ad92-eafa-42a6-9117-3f00abd043ac"},{"name":"Retrieve JISA allowance exception","id":"c2fdc0e7-84cf-4646-bbb0-169449b20e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/notification/{{firmId}}/?notificationType=Exception&status=Open","description":"<p>Where a client attempts to create a payment expectation that would take them over their annual JISA subscription allowance, the transaction will fall to exceptions. These are asynchronous errors that indicate something is wrong with the transaction instruction.</p>\n<p><strong>Please note: Pending payment expectations are counted when creating additional payments. If a pending payment expectation is redundant, this should be deleted.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the notification</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>notificationType</code> string</p>\n<p>This will be set to <code>Exception</code></p>\n<hr />\n<p><code>created</code> numerical string</p>\n<p>The date the exception was generated</p>\n<hr />\n<p><code>systemArea</code> string</p>\n<p>The area of the system that the exception relates to – this will be set to <code>Portfolio</code></p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the exception</p>\n<hr />\n<p><code>message</code> string</p>\n<p>This will be set to – <code>Subscription limit for this year has been exceeded</code></p>\n<hr />\n<p><code>systemAreaAction</code> string</p>\n<p>This will be set to <code>Create</code></p>\n<hr />\n<p><code>queueMessage</code> array</p>\n<p>Contains details of the transaction that has errored</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the exception when it was last updated</p>\n<hr />\n","urlObject":{"path":["notification","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"notificationType","value":"Exception"},{"key":"status","value":"Open"}],"variable":[]}},"response":[],"_postman_id":"c2fdc0e7-84cf-4646-bbb0-169449b20e3a"}],"id":"39c4d86f-e722-4327-b6d8-0648fe1eb4da","description":"<p>This section will show you how to retrieve a client's portfolio summary and manage their JISA allowance.</p>\n","_postman_id":"39c4d86f-e722-4327-b6d8-0648fe1eb4da"},{"name":"JISA graduation","item":[],"id":"12c21957-4ffd-4836-ad1d-a841f836b822","description":"<h3 id=\"jisa-graduation\">JISA Graduation</h3>\n<p>Seccl automatically transitions JISAs into adult ISAs once a client turns 18 as per <a href=\"https://www.gov.uk/junior-individual-savings-accounts/manage-an-account#:~:text=When%20your%20child%20turns%2018,when%20the%20child%20turns%2018.\">HMRC regulation.</a> This documentation provides details on flows and how to utilise the relevant API endpoints for your platform.</p>\n<h4 id=\"endpoints\">Endpoints</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/client\n/clientProduct\n/account\n\n</code></pre>\n<h4 id=\"how-does-the-api-handle-a-jisa-graduation\">How does the API handle a JISA graduation?</h4>\n<ol>\n<li>Daily scheduler checks for individual minors turning 18</li>\n<li>This triggers a process which removes the legal guardian <code>parentId</code> as the decision maker and makes a series of updates to the JISA <code>client</code>, <code>clientProduct</code> and <code>account</code> records shown below:</li>\n</ol>\n<h6 id=\"updates-to-the-jisa-graduate-client\">Updates to the JISA graduate <code>client</code></h6>\n<h4 id=\"changed-attributes\"><strong>Changed attributes</strong></h4>\n<p>These changes to the record are captured under <code>updateHistory</code> for a the new Adult ISA client record.</p>\n<hr />\n<p><code>status</code> string<br />Active to Registered</p>\n<hr />\n<p><code>clientType</code> string<br />Individual Minor to Individual</p>\n<hr />\n<p><code>parentId</code> string<br />Removed from new Adult client record</p>\n<hr />\n<p><code>jisaGraduate</code> boolean<br />Only found on client records which have graduated from JISA to Adult ISA</p>\n<hr />\n<p><code>version</code> number<br />Updated version of client record from 1 to 2</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"02HDDGF\",\n        \"firmId\": \"SECCL\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"status\": \"Registered\",\n        \"clientType\": \"Individual\",\n        \"dateOfBirth\": \"2005-06-12T00:00:00.000Z\",\n        \"firstName\": \"Pebbles\",\n        \"surname\": \"Flintstone\",\n        \"taxDomicile\": \"GB\",\n        \"currency\": \"GBP\",\n        \"nationality\": \"GB\",\n        \"addressDetail\": {\n            \"flatNumber\": \"Bedrock\",\n            \"address1\": \"The Cave Road\",\n            \"country\": \"GB\",\n            \"postCode\": \"BE1 R0K\"\n        },\n        \"email\": \"newgrad@example.com\",\n        \"updateId\": \"6486e8e55d5d7722d0252bf4\",\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateDate\": \"2023-06-12T09:44:05.240Z\",\n                \"updateData\": {\n                    \"fromData\": {\n                        \"clientType\": \"Individual Minor\"\n                    },\n                    \"toData\": {\n                        \"clientType\": \"Individual\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"clientType\"\n                ]\n            },\n            {\n                \"updateId\": 2,\n                \"updateDate\": \"2023-06-12T09:44:05.241Z\",\n                \"updateData\": {\n                    \"fromData\": {\n                        \"parentId\": [\n                            \"02HDDDF\"\n                        ]\n                    }\n                },\n                \"updatedFields\": [\n                    \"parentId\"\n                ]\n            },\n            {\n                \"updateId\": 3,\n                \"updateDate\": \"2023-06-12T09:44:05.241Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"jisaGraduate\": true\n                    }\n                },\n                \"updatedFields\": [\n                    \"jisaGraduate\"\n                ]\n            },\n            {\n                \"updateId\": 4,\n                \"updateDate\": \"2023-06-12T09:44:05.241Z\",\n                \"updateData\": {\n                    \"fromData\": {\n                        \"status\": \"Active\"\n                    },\n                    \"toData\": {\n                        \"status\": \"Registered\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            }\n        ],\n        \"jisaGraduate\": true,\n        \"_surname\": \"FLINTSTONE\",\n        \"_firstName\": \"PEBBLES\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-06-12T09:44:05.246Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 2,\n            \"application\": \"client-data-manager-client-event-service\"\n        },\n        \"amlData\": {\n            \"checkNode\": [],\n            \"checks\": [],\n            \"checkResult\": \"UNCHECKED\"\n        },\n        \"externalIds\": []\n    }\n}\n\n</code></pre>\n<h6 id=\"the-jisa-client-product-clientproduct\">The JISA client product <code>clientProduct</code></h6>\n<h4 id=\"changed-attributes-1\"><strong>Changed attributes</strong></h4>\n<p>These changes to the record are captured under <code>updateHistory</code> for a the new Adult ISA clientProduct record</p>\n<hr />\n<p><code>clientIds</code> string<br />Only holds the graduate adult ISA <code>clientId</code>. <code>parentId</code> is removed</p>\n<hr />\n<p><code>wrapperType</code> string<br />JISA to ISA</p>\n<hr />\n<p><code>declarationAcceptanceDate</code> string<br />Removed from graduate adult client record</p>\n<hr />\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-javascript\">{\n    \"data\": {\n        \"id\": \"6486e7074d2c3060398c801a\",\n        \"clientIds\": [\n            \"02HDDDG\"\n        ],\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"wrapperType\": \"ISA\",\n        \"updateId\": \"6486e8e55d5d7722d0252bf9\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-06-12T09:44:05.764Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 3,\n            \"application\": \"client-data-manager-client-event-service\"\n        }\n    }\n}\n\n</code></pre>\n<h6 id=\"jisa-accounts-account\">JISA accounts <code>account</code></h6>\n<h4 id=\"changed-attributes-2\"><strong>Changed attributes</strong></h4>\n<p>These changes to the record are captured under <code>updateHistory</code> for the new Adult ISA account record</p>\n<hr />\n<p><code>status</code> string<br />Active to Pending</p>\n<hr />\n<p><code>clientId</code> string<br />Removes the <code>parentId</code> and only holds graduate clientId</p>\n<hr />\n<p><code>wrapperDetail.jisaGraduationDate</code> date<br />The date which the client graduated from JISA to ISA in YYYY-MM-DDT00:00:00.000+00:00 format</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string<br />From JISA to ISA</p>\n<hr />\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {\n        \"id\": \"02DC236\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"status\": \"Pending\",\n        \"name\": \"JISA grad tester\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"ISA\",\n            \"discretionary\": false,\n            \"advised\": true,\n            \"assetAllocationId\": \"0244F\",\n            \"clientProductId\": \"6486e7074d2c3060398c801a\",\n            \"jisaGraduationDate\": \"2023-06-12T00:00:00.000Z\",\n            \"assetAllocationName\": \"Cucumber\"\n        },\n        \"clientName\": \"Pebbles Flintstone\",\n        \"updateId\": \"6486e8e55d5d7722d0252bfa\",\n        \"clientId\": \"02HDDDG\",\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateDate\": \"2023-06-12T09:44:05.694Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"clientId\": \"02HDDDG\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"clientId\"\n                ]\n            },\n            {\n                \"updateId\": 2,\n                \"updateDate\": \"2023-06-12T09:44:05.694Z\",\n                \"updateData\": {\n                    \"fromData\": {\n                        \"wrapperDetail\": {\n                            \"wrapperType\": \"JISA\",\n                            \"discretionary\": false,\n                            \"advised\": true,\n                            \"assetAllocationId\": \"0244F\",\n                            \"clientProductId\": \"6486e7074d2c3060398c801a\"\n                        }\n                    },\n                    \"toData\": {\n                        \"wrapperDetail\": {\n                            \"wrapperType\": \"ISA\",\n                            \"discretionary\": false,\n                            \"advised\": true,\n                            \"assetAllocationId\": \"0244F\",\n                            \"clientProductId\": \"6486e7074d2c3060398c801a\",\n                            \"jisaGraduationDate\": \"2023-06-12T00:00:00.000Z\"\n                        }\n                    }\n                },\n                \"updatedFields\": [\n                    \"wrapperDetail.wrapperType\"\n                ]\n            },\n            {\n                \"updateId\": 3,\n                \"updateDate\": \"2023-06-12T09:44:05.695Z\",\n                \"updateData\": {\n                    \"fromData\": {\n                        \"status\": \"Active\"\n                    },\n                    \"toData\": {\n                        \"status\": \"Pending\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            }\n        ],\n        \"_name\": \"JISA grad tester\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-06-12T09:44:05.940Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 2,\n            \"application\": \"client-data-manager-client-event-service\"\n        }\n    }\n}\n\n</code></pre>\n<h4 id=\"after-graduation\">After graduation</h4>\n<ul>\n<li>Graduating JISAs will transition to an adult Individual Savings Account (ISA) on the platform and can continue to use the account by completing the usual client registration process (see either \"PUT - Update registered client to active\" in the \"Create client\" section for a single step process or the \"Update a client\" section for multi-stage processes where clients accept terms separatly to data being provided)</li>\n<li>Clients choosing to leave the platform can withdraw all assets or transfer to a different provider. To withdraw, following appropriate AML checks, bank account details must be provided for the client. Clients wishing to withdraw within 90 days of graduation will not be subject to suspicious transaction checks due to adding the new bank account details.</li>\n</ul>\n<h4 id=\"subscription-allowance\">Subscription allowance</h4>\n<p>Graduated JISA clients with contributions up to £9000 made in the tax year they graduate will see an updated ISA allowance for the remainder of the tax year (£20,000) inclusive of their JISA contributions, should they continue on the platform as an ISA client.</p>\n<hr />\n<p>For more information on ISAs, please view the <em>Individual Savings</em> <em>Account</em> section</p>\n","_postman_id":"12c21957-4ffd-4836-ad1d-a841f836b822"},{"name":"Close JISA Account","item":[{"name":"Close JISA Account","id":"acfd2c6e-1043-4d48-a3c5-c8e16715ca32","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"accountId\": \"{{accountId}}\"\n}"},"url":"{{apiRoute}}/closeaccountaction","description":"<p>Closes a JISA account</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the account</p>\n","urlObject":{"path":["closeaccountaction"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"acfd2c6e-1043-4d48-a3c5-c8e16715ca32"}],"id":"9c69d758-c3ce-41e5-9a87-105152ade2fe","description":"<p>This section shows you how to close a JISA account when there is no transactional history.</p>\n","_postman_id":"9c69d758-c3ce-41e5-9a87-105152ade2fe"}],"id":"be0f75bd-8b23-4ff9-9811-6cfb085a3865","description":"<p>A Junior Individual Savings Account (JISA) is a tax-efficient wrapper which allows investors to save up to £9,000 annually tax-free. A JISA cannot be operated as a flexible account. Investments (including cash and the income earned by Junior Individual Savings Account investments) may only be withdrawn in the following circumstances according to HMRC:</p>\n<ul>\n<li><p>where a terminal illness claim made on behalf of the child has been agreed</p>\n</li>\n<li><p>on closure of the Junior ISA (JISA)</p>\n</li>\n<li><p>to meet certain provider management charges and other specific expenses – allowable charges and deductions under the management agreement include redemption of units at the investor’s request to pay charges due to their adviser</p>\n</li>\n</ul>\n<p>To be eligible to subscribe to a Stocks and Shares JISA, the adult client must be over 18, a registered contact for the child client such as a parent or guardian and a resident in the UK. The child client must be under 18 and a resident in the UK (or if not a resident, must meet the conditions set in the declaration).</p>\n<p>Seccl is both a JISA manager and administers JISAs for other JISA managers. For more details and guidance around JISAs and becoming an JISA manager, please refer to the <a href=\"https://www.gov.uk/junior-individual-savings-accounts\">HMRC website</a>.</p>\n<p>Before a client account is created, they must accept the relevant documents associated with JISAs:</p>\n<p>* Terms &amp; Conditions<br />* Key Features<br />* Product terms<br />* Tax declaration</p>\n<p>The above is captured under <strong>Accept the JISA declaration</strong>.</p>\n<p>After the JISA is opened, you will need to retrieve the JISA client product which confirms the the client's declaration acceptance and date.</p>\n<p>As this is an individual client product, your client's JISA allowance will not be affected by other adjacent client products such as another JISA or ISA.</p>\n<p>JISAs are available for the following client types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Available to</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual minors</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"jisa-account-object\">JISA Account Object</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"id\": \"{{accountId}}\"\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Junior's JISA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clients\": [\n        {\n            \"id\": \"{{parentClientId}}\",\n            \"decisionMaker\": true\n        },\n        {\n            \"id\": \"{{childClientId}}\",\n            \"owner\": 1\n        }\n    ],\n    \"wrapperDetail\": {\n        \"wrapperType\": \"JISA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\",\n        \"clientProductId\": \"{{clientProductId}}\",\n        \"declarationAcceptedDate\": \"2025-01-01\"\n    }\n}\n\n</code></pre>\n<hr />\n","_postman_id":"be0f75bd-8b23-4ff9-9811-6cfb085a3865"},{"name":"Pension (SIPP)","item":[{"name":"Create a pension client","item":[{"name":"Create a pension client through an illustration","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"illustrationId\", data.data.id)"],"type":"text/javascript","id":"14ff98c0-484c-4627-9424-5fb0c229d684"}}],"id":"cb7e95a8-2aef-4b14-9907-06d1c6aff355","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's retirement fund\",\n    \"firmId\": \"SECCI\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Bob Brian\",\n        \"FCANumber\": \"787291\",\n        \"company\": \"Caveman Financial Planning Ltd\"\n    },\n    \"clientInfo\": {\n        \"title\": \"Mr\",\n        \"firstName\": \"Barney\",\n        \"middleName\": \" \",\n        \"surname\": \"Rubble\",\n        \"email\": \"barneyrubble98@email.com\",\n        \"dateOfBirth\": \"1998-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-09-12\",\n    \"nodeId\": \"12\",\n    \"planLengthYears\": 40,\n    \"periods\": 480,\n    \"retirementAge\": 65,\n    \"wrapperType\": \"PENSION\",\n    \"schemeProductId\": \"{{schemeProductId}}\",\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"adviserCharge\": 0.004,\n        \"discretionaryManagementCharge\": 0.7,\n        \"initialAdviserCharge\": {\n            \"amount\": 100,\n            \"percent\": 0.03\n        },\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 29999,\n    \"payments\": {\n        \"initialPayment\": 1000000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-09-12\",\n                \"paymentAmount\": 125,\n                \"contributor\": \"Employee\",\n                \"movementType\": \"In\"\n            },\n            {\n                \"paymentDate\": \"2022-09-12\",\n                \"paymentAmount\": 19999,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            },\n            {\n                \"paymentDate\": \"2022-09-26\",\n                \"paymentAmount\": 10020,\n                \"contributor\": \"Employer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-09-19\",\n                \"toDate\": \"2026-09-14\",\n                \"paymentAmount\": 1250,\n                \"contributor\": \"Employee\",\n                \"percentageGrowth\": 0.01,\n                \"movementType\": \"In\"\n            },\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-09-26\",\n                \"toDate\": \"2030-09-16\",\n                \"paymentAmount\": 100,\n                \"contributor\": \"Employer\",\n                \"percentageGrowth\": 0.01,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"modelId\": \"04926\"\n}"},"url":"{{apiRoute}}/illustration/product","description":"<p>Creates an illustration Id to generate an illustration PDF and a skeletal client record</p>\n<p>Retuns an illustration Id and client Id</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>clientInfo</code> array <strong>Required</strong></p>\n<p>Contains details of the client – this is stored on the client skeletal client record</p>\n<hr />\n<p><code>clientInfo.title</code> string</p>\n<p>The title of the client</p>\n<hr />\n<p><code>clientInfo.firstName</code> string <strong>Required</strong></p>\n<p>The first name of the client</p>\n<hr />\n<p><code>clientInfo.surname</code> string <strong>Required</strong></p>\n<p>The surname of the client</p>\n<hr />\n<p><code>clientInfo.email</code> string <strong>Required</strong></p>\n<p>The email of the client – this must be unique to other email addresses on the platform</p>\n<hr />\n<p><code>clientInfo.dateOfBirth</code> numerical string <strong>Required</strong></p>\n<p>The date of birth of the client</p>\n<hr />\n<p><code>clientInfo.clientType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Individual</code></p>\n<hr />\n<p><code>clientInfo.language</code> string <strong>Required</strong></p>\n<p>This should be set to <code>en-GB</code></p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>planLengthYear</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in years</p>\n<hr />\n<p><code>periods</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in months</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>PENSION</code></p>\n<hr />\n<p><code>retirementAge</code> integer <strong>Required</strong></p>\n<p>The age the client is expected to retire</p>\n<hr />\n<p><code>schemeProductId</code> alphanumerical string <strong>Required</strong></p>\n<p>The unique Id of the scheme product</p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set <code>Monthly</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> array</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> array</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> array <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Employer</code></td>\n<td>Payment made by the client's employer</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Required if not including</strong> <strong><code>modelId</code></strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Required if not including</strong> <strong><code>transactions</code></strong> <strong>array</strong></p>\n<p>The unique identifier of the model the account will invested in</p>\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"8c05999a-44af-4bc9-bbc8-db6bdef5203e","name":"Create a pension client through an illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's retirement fund\",\n    \"firmId\": \"SECCI\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Bob Brian\",\n        \"FCANumber\": \"787291\",\n        \"company\": \"Caveman Finacial Planning Ltd\"\n    },\n    \"clientInfo\": {\n        \"title\": \"Mr\",\n        \"firstName\": \"Barney\",\n        \"middleName\": \" \",\n        \"surname\": \"Rubble\",\n        \"email\": \"barneyrubble98@email.com\",\n        \"dateOfBirth\": \"1998-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-09-12\",\n    \"nodeId\": \"12\",\n    \"planLengthYears\": 40,\n    \"periods\": 480,\n    \"retirementAge\": 65,\n    \"wrapperType\": \"PENSION\",\n    \"schemeProductId\": \"00002\",\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"adviserCharge\": 0.004,\n        \"discretionaryManagementCharge\": 0.7,\n        \"initialAdviserCharge\": {\n            \"amount\": 100,\n            \"percent\": 0.03\n        },\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 29999,\n    \"payments\": {\n        \"initialPayment\": 1000000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-09-12\",\n                \"paymentAmount\": 125,\n                \"contributor\": \"Employee\",\n                \"movementType\": \"In\"\n            },\n            {\n                \"paymentDate\": \"2022-09-12\",\n                \"paymentAmount\": 19999,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            },\n            {\n                \"paymentDate\": \"2022-09-26\",\n                \"paymentAmount\": 10020,\n                \"contributor\": \"Employer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-09-19\",\n                \"toDate\": \"2026-09-14\",\n                \"paymentAmount\": 1250,\n                \"contributor\": \"Employee\",\n                \"percentageGrowth\": 0.01,\n                \"movementType\": \"In\"\n            },\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-09-26\",\n                \"toDate\": \"2030-09-16\",\n                \"paymentAmount\": 100,\n                \"contributor\": \"Employer\",\n                \"percentageGrowth\": 0.01,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"modelId\": \"04926\"\n}"},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 05 Sep 2022 21:49:58 GMT"},{"key":"x-amzn-RequestId","value":"f772faa5-b681-49c8-ba63-f0c0a3200b14"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YAZI4EpKjoEFvVA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-gTxrb3CwSHyPir5rjFYayMZJmkM\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63166f05-007d1d3051a7971c0885c6d3;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 609b92127df3778f333c9eba7213368e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"JFK50-P4"},{"key":"X-Amz-Cf-Id","value":"gslgl3NDyl-dIvYNBNpCFXEGgGaaDUfdLTcmBvg2qqWUsK07gTfGZA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"63166f0532c9a8e75691f89b\",\n        \"clientId\": \"026C3JF\",\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"}],"_postman_id":"cb7e95a8-2aef-4b14-9907-06d1c6aff355"},{"name":"Create a pension client","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","id":"ffe61278-ff5a-4467-bf5f-6cd937ad5d83"}},{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"bc18691f-d331-4aed-8268-5a980e02b86b"}}],"id":"c0a54967-709c-4340-b503-9236a5d88d9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SCUST\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"employmentStatus\": \"Employed\",\n    \"maritalStatus\": \"Married\",\n    \"retirementAge\": 80,\n    \"nationalities\": [\n        {\n            \"code\": \"IT\",\n            \"identifiers\": [\n                {\n                    \"name\": \"Fiscal Code\",\n                    \"available\": true,\n                    \"value\": \"ABCDEF99A31A123A\"\n                }\n            ]\n        },\n        {\n            \"code\": \"RO\"\n        }\n    ],\n    \"employers\": [\n        {\n            \"companyName\": \"Company Ltd\",\n            \"companyRegNo\": \"1234567\",\n            \"addressDetail\": {\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Manchester Road\",\n                \"address2\": \"Doncaster\",\n                \"country\": \"GB\",\n                \"postCode\": \"BA2 4DS\"\n            },\n            \"bankDetails\": {\n                \"sortCode\": \"304050\",\n                \"accountNumber\": \"72837482\",\n                \"paymentMethod\": \"Bank Transfer\",\n                \"reference\": \"Payment\"\n            }\n        }\n    ]\n}"},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Corporate  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms  <br />Mx</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> array <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>retirementAge</code> integer <strong>Required</strong></p>\n<p>The age the client is expected to retire</p>\n<hr />\n<p><code>maritalStatus</code> string <strong>Required</strong></p>\n<p>The marital status of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Single</code></td>\n</tr>\n<tr>\n<td><code>Married</code></td>\n</tr>\n<tr>\n<td><code>Divorced</code></td>\n</tr>\n<tr>\n<td><code>Widowed</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>employmentStatus</code> string <strong>Required</strong></p>\n<p>The employment status of the client – this is required for clients opening a pension</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employed</code></td>\n</tr>\n<tr>\n<td><code>Retired</code></td>\n</tr>\n<tr>\n<td><code>Self Employed</code></td>\n</tr>\n<tr>\n<td><code>Care Under 16s</code></td>\n</tr>\n<tr>\n<td><code>Care Over 16</code></td>\n</tr>\n<tr>\n<td><code>Education</code></td>\n</tr>\n<tr>\n<td><code>Unemployed</code></td>\n</tr>\n<tr>\n<td><code>Other</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>employers</code> array</p>\n<p>Contains details of the client's employer – this is mandatory if the client is making employer contributions to their pension</p>\n<hr />\n<p><code>employers.companyName</code> string</p>\n<p>The name of the client's company</p>\n<hr />\n<p><code>employers.companyRegNo</code> string</p>\n<p>The Companies House number of the client's company</p>\n<hr />\n<p><code>employers.bankDetails</code> array</p>\n<p>The company's bank details where contributions will be paid from</p>\n<hr />\n<p><code>employers.addressDetail</code> array</p>\n<p>The employer's address</p>\n<hr />\n<p><code>employers.addressDetail.buildingName</code> string</p>\n<p>The building name of the client's employer</p>\n<hr />\n<p><code>employers.addressDetail.buildingNumber</code> string</p>\n<p>The building number of the client's employer</p>\n<hr />\n<p><code>employers.addressDetail.address1</code> string</p>\n<p>The first line of the employer's address</p>\n<hr />\n<p><code>employers.addressDetail.address2</code>string</p>\n<p>The first line of the employer's address</p>\n<hr />\n<p><code>employers.addressDetail.country</code> string</p>\n<p>The country where the employer is located</p>\n<hr />\n<p><code>employers.addressDetail.postCode</code> string</p>\n<p>The postcode of the employer's address</p>\n<hr />\n<p><code>mobile</code> array</p>\n<p>Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number – this is <strong>required</strong> for clients opening an ISA, JISA or SIPP</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Whether or not the client has accepted the platform terms and conditions – this should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> array<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0a54967-709c-4340-b503-9236a5d88d9c"}],"id":"283b8e91-aadd-4839-9f28-afaf0bb6581c","description":"<p>Creates a pension client</p>\n<p>There are some additional data points required for regulatory purposes.</p>\n<p>If you are looking to create a pension for an existing client with a GIA and/or ISA, you can send a PATCH request to the client record to add the additional information for a pension.</p>\n<p><strong>Please note: If the client wishes to invest in ETIs, please refer to the nationalities checker flow</strong></p>\n","_postman_id":"283b8e91-aadd-4839-9f28-afaf0bb6581c"},{"name":"Create a Seccl pension account","item":[{"name":"Retrieve the scheme product Id","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"d2d5693d-9ba8-4255-ade9-19a40e48582e"}}],"id":"a7e7babc-3b61-4a43-b8c8-60e4116f21a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/schemeProduct/{{firmId}}?schemeName=Seccl Personal Pension","description":"<p>Retrieves the Seccl Personal Pension scheme product Id</p>\n","urlObject":{"path":["schemeProduct","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"wrapperType","value":"<wrapperType>"},{"disabled":true,"key":"productName","value":"<productName>"},{"disabled":true,"key":"wrapperType","value":"<wrapperType>"},{"key":"schemeName","value":"Seccl Personal Pension"}],"variable":[]}},"response":[],"_postman_id":"a7e7babc-3b61-4a43-b8c8-60e4116f21a2"},{"name":"Create a Seccl pension accumulation account (uncrystallised)","event":[{"listen":"test","script":{"exec":["let json = pm.response.json()","pm.test('Should create pension product and account for adult client', function() {","    pm.response.to.be.success","    pm.response.to.not.be.error","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})","pm.environment.set('adultPensionAccountId', pm.response.json().data.id);"],"type":"text/javascript","id":"c1daf77c-0715-4efc-bc55-6a5517bf06b9"}}],"id":"ef4d0476-55aa-41b5-bd7b-d0174733b6c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"0\",\n    \"name\": \"Retirement Savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"status\": \"Pending\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"PENSION\",\n        \"schemeProductId\": \"{{schemeProductId}}\",\n        \"acceptedProviderTerms\": true,\n        \"acceptedProviderTermsDate\": \"2026-01-15\",\n        \"nominations\": [\n            {\n                \"title\": \" \",\n                \"firstName\": \"Pebble\",\n                \"surname\": \"Rubble\",\n                \"beneficiaryRelationship\": \"DAUGHTER\",\n                \"beneficiaryProportion\": 0.5\n            },\n            {\n                \"title\": \" \",\n                \"firstName\": \"Bamm-Bamm\",\n                \"surname\": \"Rubble\",\n                \"beneficiaryRelationship\": \"DAUGHTER\",\n                \"beneficiaryProportion\": 0.5\n            }\n        ]\n    },\n    \"productDetail\": {\n        \"flexibleBenefitsAccessed\": true,\n        \"flexiAccessDate\": \"{{YYYY-MM-DD}}\",\n        \"pensionOptOut\": false\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Returns a new Pension account <code>id</code></p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ef4d0476-55aa-41b5-bd7b-d0174733b6c0"},{"name":"Create a Seccl pension drawdown account (crystallised)","event":[{"listen":"test","script":{"id":"c1daf77c-0715-4efc-bc55-6a5517bf06b9","exec":["let json = pm.response.json()","pm.test('Should create pension product and account for adult client', function() {","    pm.response.to.be.success","    pm.response.to.not.be.error","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})","pm.environment.set('adultPensionAccountId', pm.response.json().data.id);"],"type":"text/javascript","packages":{}}}],"id":"6266fcc6-4268-44fc-90ea-1e5db02d87b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"0\",\n    \"name\": \"Retirement Savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"status\": \"Pending\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"PENSION\",\n        \"schemeProductId\": \"{{schemeProductId}}\"\n    },\n    \"productDetail\": {\n        \"flexibleBenefitsAccessed\": true,\n        \"flexiAccessDate\": \"{{YYYY-MM-DD}}\",\n        \"pensionOptOut\": false\n    },\n    \"portfolioGroups\": [\n        {\n            \"groupIntent\": \"Pension Account Group\",\n            \"groupType\": \"Crystallised\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>Returns a new Pension account <code>id</code></p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6266fcc6-4268-44fc-90ea-1e5db02d87b4"},{"name":"Create a Seccl pension drawdown transfer account (crystallised transfer)","event":[{"listen":"test","script":{"id":"c1daf77c-0715-4efc-bc55-6a5517bf06b9","exec":["let json = pm.response.json()","pm.test('Should create pension product and account for adult client', function() {","    pm.response.to.be.success","    pm.response.to.not.be.error","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})","pm.environment.set('adultPensionAccountId', pm.response.json().data.id);"],"type":"text/javascript","packages":{}}}],"id":"c75e61be-f62d-41ab-87b4-408ec6a9eeab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"0\",\n    \"name\": \"Transferred Retirement Savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"status\": \"Pending\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"PENSION\",\n        \"schemeProductId\": \"{{schemeProductId}}\"\n    },\n    \"productDetail\": {\n        \"flexibleBenefitsAccessed\": true,\n        \"flexiAccessDate\": \"{{YYYY-MM-DD}}\",\n        \"pensionOptOut\": false\n    },\n    \"portfolioGroups\": [\n        {\n            \"groupIntent\": \"Pension Account Group\",\n            \"groupType\": \"CrystallisedTransfer\",\n            \"name\": \"Old Pension Provider Account\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>Returns a new Pension account <code>id</code></p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c75e61be-f62d-41ab-87b4-408ec6a9eeab"},{"name":"Create a Seccl pension beneficiary drawdown account (beneficiary)","event":[{"listen":"test","script":{"id":"c1daf77c-0715-4efc-bc55-6a5517bf06b9","exec":["let json = pm.response.json()","pm.test('Should create pension product and account for adult client', function() {","    pm.response.to.be.success","    pm.response.to.not.be.error","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})","pm.environment.set('adultPensionAccountId', pm.response.json().data.id);"],"type":"text/javascript","packages":{}}}],"id":"55018505-1417-42ca-9eaa-dae1433ba29f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"0\",\n    \"name\": \"Inherited Pension Account\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"status\": \"Pending\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"PENSION\",\n        \"schemeProductId\": \"{{schemeProductId}}\"\n    },\n    \"productDetail\": {\n        \"flexibleBenefitsAccessed\": true,\n        \"flexiAccessDate\": \"{{YYYY-MM-DD}}\",\n        \"pensionOptOut\": false\n    },\n    \"portfolioGroups\": [\n        {\n            \"groupIntent\": \"Pension Account Group\",\n            \"groupType\": \"Beneficiary\",\n            \"name\": \"Benefactor 1\"\n        }\n    ]\n}\n}"},"url":"{{apiRoute}}/account","description":"<p>Returns a new Pension account <code>id</code></p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"55018505-1417-42ca-9eaa-dae1433ba29f"}],"id":"0bd9f0be-c500-41b9-967e-a8a4de15b59c","description":"<p>Creates a Seccl pension account</p>\n<h2 id=\"pension-account-groups\">Pension Account Groups</h2>\n<p>Each Seccl pension account belongs to a type of Pension Account Group:</p>\n<ul>\n<li><p>uncrystallised - accounts that are still in accumulation</p>\n</li>\n<li><p>crystallised - accounts that have been crystallised at Seccl</p>\n</li>\n<li><p>crystallised transfer - crystallised accounts that have been transferred to Seccl</p>\n</li>\n<li><p>beneficiary - inherited pension accounts</p>\n</li>\n</ul>\n<p>The type of Pension Account Group determines what actions are allowed. For example, income payments cannot be made out of uncrystallised accounts.</p>\n<p>Crystallised transfer and beneficiary accounts have an additional name property for their Pension Account Group. This is required for us to segregate different transfers. For example, your old pension account from one provider would be kept separate from your account from another provider by having different names on the Pension Account Group.</p>\n<p>If a Pension Account Group is not specified in the account creation request, it will by default belong to an uncrystallised group.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Wrapper</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account – you can create the account with a status of <code>Active</code> if the client has viewed and accepted the product terms and declaration</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>Client needs to view and accept terms – transactions blocked</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>Client has viewed and accepted terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>Account suspended – transactions blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string</p>\n<p>The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> object <strong>Required</strong></p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong></p>\n<p>The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>PENSION</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.schemeProductId</code> <strong>Required</strong></p>\n<p>The unique identifier of the Seccl pension – this should be retrieved from the GET scheme product endpoint</p>\n<hr />\n<p><code>wrapperDetail.nominations</code></p>\n<p>Contains details on the client's nominated beneficiaries of their pension</p>\n<hr />\n<p><code>wrapperDetail.nominations.title</code> string</p>\n<p>The title of the client's nominee</p>\n<hr />\n<p><code>wrapperDetail.nominations.firstName</code> string <strong>Required if nomination being submitted</strong></p>\n<p>The first name of the client's nominee</p>\n<hr />\n<p><code>wrapperDetail.nominations.surname</code> string <strong>Required if nomination being submitted</strong></p>\n<p>The surname of the client's nominee</p>\n<hr />\n<p><code>wrapperDetail.nominations.beneficiaryRelationship</code> string <strong>Required if nomination being submitted</strong></p>\n<p>The relationship of the nominee to the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CHARITY</code></td>\n</tr>\n<tr>\n<td><code>HUSBAND</code></td>\n</tr>\n<tr>\n<td><code>WIFE</code></td>\n</tr>\n<tr>\n<td><code>DAUGHTER</code></td>\n</tr>\n<tr>\n<td><code>SON</code></td>\n</tr>\n<tr>\n<td><code>PARTNER</code></td>\n</tr>\n<tr>\n<td><code>OTHER</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.nominations.beneficiaryProportion</code> integer <strong>Required if nomination being submitted</strong></p>\n<p>The percentage allocation as a decimal place to the nominated beneficiary. Across beneficiaires this must equal 100%</p>\n<hr />\n<p><code>wrapperDetail.acceptedProviderTerms</code> boolean <strong>Required</strong> <strong><code>true</code></strong> <strong>to open the account as Active</strong></p>\n<p>A boolean denoting that the provider terms have been accepted</p>\n<hr />\n<p><code>wrapperDetail.acceptedProviderTermsDate</code> string <strong>Required to open the account as Active</strong></p>\n<p>A date string for when the provider terms were accepted, for example <code>'2026-01-15'</code></p>\n<hr />\n<p><code>productDetail</code> object <strong>Required</strong></p>\n<p>Contains mandatory regulatory information about the client</p>\n<hr />\n<p><code>productDetail.flexibleBenefitsAccessed</code> boolean <strong>Required</strong></p>\n<p>Indicates whether the client has triggered the money purchase allowance rules. Where a client is under 55 this can be defaulted to false.</p>\n<hr />\n<p><code>productDetail.flexiAccessDate</code> numerical string <strong>Required if</strong> <strong><code>flexibleBenefitsAccessed: true</code></strong></p>\n<p>Year in which the client triggered money purchase allowance rules in ISO date format</p>\n<hr />\n<p><code>productDetail.pensionOptOut</code> boolean <strong>Required</strong></p>\n<p>Indicates if the client has opted out of joining an employer's scheme</p>\n<hr />\n<p><code>portfolioGroups</code> array <strong>Required if account is of crystallised, crystallised transfer or beneficiary types</strong></p>\n<p>Contains an object describing the pension account group that this account should belong to</p>\n<hr />\n<p><code>portfolioGroups.groupIntent</code> string <strong>Required</strong></p>\n<p>The intent of the portfolio group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pension Account Group</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>portfolioGroups.groupType</code> string <strong>Required</strong></p>\n<p>The type of the Pension Account Group</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Uncrystallised</code></td>\n</tr>\n<tr>\n<td><code>Crystallised</code></td>\n</tr>\n<tr>\n<td><code>CrystallisedTransfer</code></td>\n</tr>\n<tr>\n<td><code>Beneficiary</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>portfolioGroups.name</code> string</p>\n<p>The name of the Pension Account Group, only used with groupTypes of <code>CrystallisedTransfer</code> and <code>Beneficiary</code> to segregate multiple transfers from different providers</p>\n<hr />\n<p><code>externalReference</code> string</p>\n<p>A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","_postman_id":"0bd9f0be-c500-41b9-967e-a8a4de15b59c"},{"name":"Accept the pension terms","item":[{"name":"Retrieve the client product Id","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientproductId\", data.data.wrapperDetail.clientproductid)"],"type":"text/javascript","id":"89f2f8cd-d29e-4282-83de-f830b69018cf"}}],"id":"1b2b2071-a720-4b15-98b9-f6982c90072b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves the account record, which includes the <code>clientproductId</code> within the <code>wrapperDetail</code> array</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3aa760b0-4790-4125-b8bf-193c4743135d","name":"Retrieve the client product Id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F6C7\",\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"name\": \"Retirement savings\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clientId\": \"024B197\",\n        \"status\": \"Pending\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"PENSION\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"schemeProductId\": \"004P4\",\n            \"clientProductId\": \"631f1c09ec52d5bd158a270f\",\n            \"productDetail\": {\n                \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n                \"flexibleBenefitsAccessed\": true,\n                \"pensionOptOut\": true\n            }\n        },\n        \"clientName\": \"Demo Caldon\",\n        \"clientNationalInsuranceNo\": \"AB576470C\",\n        \"nodeName\": \"Seccl Demo\",\n        \"_name\": \"RETIREMENT SAVINGS\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T11:46:17.196Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab180\"\n    }\n}"}],"_postman_id":"1b2b2071-a720-4b15-98b9-f6982c90072b"},{"name":"Retrieve the clientproduct updateId","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"74cfeb10-1e57-4565-b555-e0b30d536ebd"}}],"id":"8852febd-b876-423c-86ba-abac6abd4ae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Returns the clientproduct record which includes the updateId</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"0cef42fc-ef3f-4d73-8f39-57b8f7e82712","name":"Retrieve the clientproduct updateId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/SDEMO/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n            \"flexibleBenefitsAccessed\": true,\n            \"pensionOptOut\": true\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"}],"_postman_id":"8852febd-b876-423c-86ba-abac6abd4ae8"},{"name":"Update to indicate terms accepted","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"50dc3541-0ae8-49e0-826d-f36b011d36e8"}}],"id":"a7efe855-18e0-483a-b64a-38751e88d65a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"acceptedProviderTermsDate\": \"{{today}}\",\n    \"acceptedProviderTerms\": true\n}"},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Update the <code>clientproduct</code> object to indicate that the client has viewed and accepted the pension terms</p>\n<p>Returns a successful array</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>acceptedProviderTermsDate</code> string <strong>Required</strong></p>\n<p>The date the client accepted the pension terms</p>\n<hr />\n<p><code>acceptedProviderTerms</code> boolean <strong>Required</strong></p>\n<p>Indicates if the client has accepted the pension terms</p>\n<hr />\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"343500b1-46f8-4b57-955d-0bd0f5b55e19","name":"Update to indicate terms accepted","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"acceptedProviderTermsDate\": \"2022-08-28\",\n    \"acceptedProviderTerms\": true\n}"},"url":"{{apiRoute}}/clientproduct/SDEMO/631f1c09ec52d5bd158a270f"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:53:25 GMT"},{"key":"x-amzn-RequestId","value":"89b63e05-db54-47e3-9a11-1a0236337c1c"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGUZFKuDoEFTJw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1db5-5401e1640b01eac137354bcc;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"DOS_o5d1p0ZTmEvbv3a9HVnbpO_2PHd1dAQm8kDCiPzd9rbKMPOmsg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"a7efe855-18e0-483a-b64a-38751e88d65a"}],"id":"e3cffea5-bb2b-430e-9d72-f1f54c9cfe4c","description":"<p>When a client opens a pension, they are required to review and accept the product declaration, product terms and key features document. These should be presented to the client during sign-up.</p>\n<p>To indicate that the client has viewed and accepted the regulatory documents, you need to update the <code>clientproduct</code> record. This only needs to be done when the first pension account is opened.</p>\n<p>This section shows you how to:</p>\n<ul>\n<li><p>Retrieve the <code>clientproductId</code> from the <code>account</code> record.</p>\n</li>\n<li><p>Retrieve the <code>updateId</code> from the <code>clientproduct</code> record.</p>\n</li>\n<li><p>Update the <code>clientproduct</code> record to indicate that the client has viewed and accepted terms.</p>\n</li>\n</ul>\n","_postman_id":"e3cffea5-bb2b-430e-9d72-f1f54c9cfe4c"},{"name":"Retrieve the declaration replay","item":[{"name":"Retrieve the document Id","event":[{"listen":"test","script":{"exec":["const json = pm.response.json()","console.log(json)","if (json.data.length >= 1) {","    const [firstMessage] = json.data","    pm.environment.set(\"payloadId\", firstMessage.payload.id)","    pm.environment.set(\"messageUpdateId\", firstMessage.updateId)","    pm.environment.set(\"clientId\", firstMessage.clientId)","","}"],"type":"text/javascript","id":"c850bd52-c70b-4351-be95-83d8541513be"}}],"id":"b68c090b-cba0-477c-97ae-87b241f0f1b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/message/{{firmId}}/?clientId={{clientId}}&messageType=NEW_ACCOUNT_REPLAY&fromDate=YYYY-MM-DD","description":"<p>Retrieves the message related to the client's pension declaration replay</p>\n<p>Use this request to find the <code>payload.id</code> – this text should be made available in your application's message hub</p>\n","urlObject":{"path":["message","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"clientId","value":"{{clientId}}"},{"key":"messageType","value":"NEW_ACCOUNT_REPLAY"},{"key":"fromDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[],"_postman_id":"b68c090b-cba0-477c-97ae-87b241f0f1b5"}],"id":"69cccdd6-9bec-4f6c-a8a0-924296eaac26","description":"<p>The pension declaration replay is a confirmation of the client's application and is a regulatory requirement. The pension declaration is automatically created when a client opens a pension account for the first time on the platform.</p>\n<p>It should be retrieved and made available in the client's message hub in your application.</p>\n<p>This section shows you how to:</p>\n<p>* Retrieve the pension declaration replay message</p>\n","_postman_id":"69cccdd6-9bec-4f6c-a8a0-924296eaac26"},{"name":"Retrieve pension cancellation letter","item":[{"name":"Retrieve pension cancellation letter PDF","id":"5e35fa56-24e3-4a1a-b1e4-ad8e5d3e0491","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{dateAccountCreated-secclSchemeProductIdpensionAccount}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/pensioncancellationletter","description":"<p>Generates the pension cancellation letter PDF URL</p>\n<h4>Parameters</h4>\n\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The document Id – this is in the format of the date the account was created in ISO date format, <code>-</code>, the <code>schemeProductId</code> of the Seccl Pension, and <code>pensionAccount</code></p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client record</p>\n<hr />\n","urlObject":{"path":["files","pensioncancellationletter"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"ca8ee95a-a91c-4845-bd78-3286a18c9120","name":"Retrieve pension cancellation letter PDF","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"2022-07-05-00002pensionAccount\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/pensioncancellationletter"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5e35fa56-24e3-4a1a-b1e4-ad8e5d3e0491"}],"id":"ec912a57-a5e6-4a8d-a1c9-1140c9eb5551","description":"<p>Pension cancellation letters are generated when a client opens a pension account for the first time on the platform. It's a regulatory requirement to make pension cancellation letters available to the client in your application.</p>\n<p>This sections shows you how to:</p>\n<ul>\n<li>Retrieve the message related to the client's pension cancellation letter</li>\n<li>Generate the PDF URL for the pension cancellation letter</li>\n</ul>\n","_postman_id":"ec912a57-a5e6-4a8d-a1c9-1140c9eb5551"},{"name":"Create a pension payment","item":[{"name":"Create a single pension contribution expectation","id":"353d8419-9dc7-4605-ab96-1038e5ae8619","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employer\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Bank Transfer\",\n            \"companyRegNo\": \"{{companyRegNo}}\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/","description":"<p>Creates a payment expectation for a pension</p>\n<p>Returns a <code>linkId</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the portfolio transaction group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employer</code></td>\n<td>Employer contribution</td>\n</tr>\n<tr>\n<td><code>Employee</code></td>\n<td>Personal contribution</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Bank Transfer</code></td>\n</tr>\n<tr>\n<td><code>Bulk Bank Transfer</code></td>\n</tr>\n<tr>\n<td><code>Seccl GoCardless</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> enum value <strong>Required</strong></p>\n<p>This indicates the movement of the cash or assets – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>transactions.companyRegNo</code> numerical string <strong>Required</strong></p>\n<p>This must match the value held at the pension client level.</p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>This indicates whether the money should be auto-invested into the <code>recurringOrders</code> or the <code>model</code> attached to the account</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"0a9068f2-bd20-4d83-b10b-5c162b3cf9ce","name":"Create a single pension contribution expectation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"025F6C7\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"accountId\": \"025F6C7\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employee\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 13:09:14 GMT"},{"key":"x-amzn-RequestId","value":"22de1fa1-ce74-4a6f-aaef-0c53f09e49ed"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWRbHH9YDoEFbHA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-0bwTbNz5cPLy5P/J6S11eo00b0E\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f2f7a-3bc68ec654f692022a37fb63;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9fedc4d43d76bf30a3fb8278d99d39aa.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"AliJ7SSYMKDkl6HHfMh09GKHoD0nvgh40ZoJhy2W6OAMIRcIgOS-bg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005S27H\"\n    }\n}"},{"id":"f3b7c48c-b1fc-419f-ba91-b95ed1daf602","name":"Create a single pension contribution expectation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"025F6C7\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"accountId\": \"025F6C7\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employer\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Bulk Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 13:09:40 GMT"},{"key":"x-amzn-RequestId","value":"c8556738-bc0f-40c5-a81b-f1a4c8e06cc9"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWRfKH_SjoEF1Rw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-255wDqeb7ScteZHVaXx+jvrmeYw\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f2f94-3003c88e4d52d70a3e483865;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9fedc4d43d76bf30a3fb8278d99d39aa.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"B8Lih9HbOviLesYWMCnYMj6Y2igh2PUx8rQGXunm7BKIE9wHPB48Qg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005S27R\"\n    }\n}"},{"id":"d73027dc-ae75-44eb-a122-f2264af452ea","name":"Create a single pension contribution expectation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"025F6C7\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"accountId\": \"025F6C7\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employer\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Seccl GoCardless\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 13:10:00 GMT"},{"key":"x-amzn-RequestId","value":"8df6fdfe-6807-48b1-b928-5c7137b1c8db"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWRiWEY7joEF1Lg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-sltChIc7UpP0eibUylDRq2SA96A\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f2fa8-1adff8320ffe56f90dd4f57d;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9fedc4d43d76bf30a3fb8278d99d39aa.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"Zxbw_ZPVGyolPyjcFq-i7Ib6W4CH8FO5284jx5zlf9Ffk0EFN-Lg3g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005S27S\"\n    }\n}"}],"_postman_id":"353d8419-9dc7-4605-ab96-1038e5ae8619"},{"name":"Post payment In recurring","id":"0a680762-cf4b-4a93-9abf-3dc87e629fb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{accountUpdateId}}\",\n    \"recurringPayments\": [\n        {\n            \"amount\": 65,\n            \"paymentDay\": 3,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"paymentType\": \"Employee\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Creates a recurring payment expectation for an existing pension account</p>\n<p>Returns a successful array</p>\n<p><strong>Please note: We cannot facilitate employer payments via direct debit at present. These can be facilitated by standing orders with a method of Bank Transfer.</strong></p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The updated identifier to the record when it was last updated</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<p>Contains details of the recurring payments</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>In</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be contributed on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the expectation is generated – this can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to contribute – this should be set as <code>Bank Transfer</code></p>\n<hr />\n<p><code>recurringPayment.paymentType</code> enum value <strong>Required</strong></p>\n<p>This is relevant for pension contributions only and will be either <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation</p>\n<hr />\n<p><code>recurringPayment.investToModel</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>model</code> allocation</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0a680762-cf4b-4a93-9abf-3dc87e629fb9"}],"id":"49e87a32-f07d-41df-a477-4460ba4a09f2","description":"<p>When creating an expectation for a pension contribution, you need to specify whether it's a personal contribution or employer contribution.</p>\n<p>Employee Personal (i.e. personal) contributions are subject to tax relief, which will be allocated to the client's pension account when the money is paid out from HMRC.</p>\n<p>This section shows you how to:</p>\n<ul>\n<li>Create a single pension contribution</li>\n<li>Create a recurring pension contribution</li>\n</ul>\n","_postman_id":"49e87a32-f07d-41df-a477-4460ba4a09f2"},{"name":"Update nominees","item":[{"name":"Retrieve the client product Id","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientproductId\", data.data.wrapperDetail.clientproductid)"],"type":"text/javascript","id":"5aafe7e9-b3be-4f76-b79d-f5eddff52d92"}}],"id":"6b2b4e16-55f0-4581-96bf-508c3e43d32f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves the account record, which includes the <code>clientproductId</code> within the <code>wrapperDetail</code> array</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c8c96f1a-8a72-4f4a-9223-0de0b6ba0b5b","name":"Retrieve the client product Id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F6C7\",\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"name\": \"Retirement savings\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clientId\": \"024B197\",\n        \"status\": \"Pending\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"PENSION\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"schemeProductId\": \"004P4\",\n            \"clientProductId\": \"631f1c09ec52d5bd158a270f\",\n            \"productDetail\": {\n                \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n                \"flexibleBenefitsAccessed\": true,\n                \"pensionOptOut\": true\n            }\n        },\n        \"clientName\": \"Demo Caldon\",\n        \"clientNationalInsuranceNo\": \"AB576470C\",\n        \"nodeName\": \"Seccl Demo\",\n        \"_name\": \"RETIREMENT SAVINGS\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T11:46:17.196Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab180\"\n    }\n}"}],"_postman_id":"6b2b4e16-55f0-4581-96bf-508c3e43d32f"},{"name":"Retrieve the clientproduct updateId","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"d8330dfa-fc2b-46d0-8b60-1723e9bfc51d"}}],"id":"b802dbad-46cd-47d7-a95b-a4523f6739c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Returns the clientproduct record which includes the updateId</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f84cccea-7bf6-4308-a4d4-5cddd1dd4d27","name":"Retrieve the clientproduct updateId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/SDEMO/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n            \"flexibleBenefitsAccessed\": true,\n            \"pensionOptOut\": true\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"}],"_postman_id":"b802dbad-46cd-47d7-a95b-a4523f6739c1"},{"name":"Update nominees on an account","event":[{"listen":"test","script":{"exec":["let json = pm.response.json()","pm.test('Should create pension product and account for adult client', function() {","    pm.response.to.be.success","    pm.response.to.not.be.error","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})","pm.environment.set('adultPensionAccountId', pm.response.json().data.id);"],"type":"text/javascript","id":"29fd54e1-8b99-4638-8ab6-1f1362f22ec7"}}],"id":"dab835d6-6af3-4e8b-a837-dfef847aac9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"expressionOfWishNominations\": [\n        {\n            \"title\": \"Mr\",\n            \"firstName\": \"Test\",\n            \"surname\": \"Nominees\",\n            \"beneficiaryRelationship\": \"DAUGHTER\",\n            \"beneficiaryProportion\": 0.5\n        },\n        {\n            \"title\": \"Miss\",\n            \"firstName\": \"Added\",\n            \"surname\": \"Nominee\",\n            \"beneficiaryRelationship\": \"WIFE\",\n            \"beneficiaryProportion\": 0.5\n        }\n    ],\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Updates the nominees on a pension account – this will automatically update the nominees on all pension sub-accounts as well</p>\n<p>A client can have one or more nominated beneficiaries – the total of the beneficiary proportion must equal 1</p>\n<p>Returns a successful array</p>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>expressionOfWishNominations</code> array <strong>Required</strong></p>\n<p>Contains of the client's nominated beneficiaries</p>\n<hr />\n<p><code>expressionOfWishNominations.title</code> string</p>\n<p>The title of the client's nominee</p>\n<hr />\n<p><code>expressionOfWishNominations.firstName</code> string <strong>Required</strong></p>\n<p>The first name of the client's nominee</p>\n<hr />\n<p><code>expressionOfWishNominations.surname</code> string <strong>Required</strong></p>\n<p>The surname of the client's nominee</p>\n<hr />\n<p><code>expressionOfWishNominations.beneficiaryRelationship</code> string <strong>Required</strong></p>\n<p>The relationship of the nominee to the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>CHARITY</code></td>\n</tr>\n<tr>\n<td><code>HUSBAND</code></td>\n</tr>\n<tr>\n<td><code>WIFE</code></td>\n</tr>\n<tr>\n<td><code>DAUGHTER</code></td>\n</tr>\n<tr>\n<td><code>SON</code></td>\n</tr>\n<tr>\n<td><code>PARTNER</code></td>\n</tr>\n<tr>\n<td><code>OTHER</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>expressionOfWishNominations.beneficiaryProportion</code> integer <strong>Required</strong></p>\n<p>The percentage allocation as a decimal place to the nominated beneficiary</p>\n<hr />\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dab835d6-6af3-4e8b-a837-dfef847aac9c"}],"id":"abf08ca1-4b3d-495f-b7c2-77b1c5708f7e","description":"<p>You can update the client's nominated beneficiaries on the client product.</p>\n<p>A client can have one or more nominated beneficiaries – the total of the beneficiary proportion must equal 1.</p>\n<p>This section shows you how to:</p>\n<ul>\n<li>Retrieve the clientproduct Id from the account record</li>\n<li>Retrieve the clientproduct updateId</li>\n<li>Update the clientproduct with the new nominated beneficiaries</li>\n</ul>\n","_postman_id":"abf08ca1-4b3d-495f-b7c2-77b1c5708f7e"},{"name":"Take income from a SIPP","item":[{"name":"Add protection and lifetime enhancement factors","item":[{"name":"Retrieve the client product Id","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientproductId\", data.data.wrapperDetail.clientproductid)"],"type":"text/javascript","id":"091ac3c5-85ed-425c-b6f6-c463d832aacb"}}],"id":"b9bab029-c614-4810-a4fa-8b7b69d71a34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves the account record, which includes the <code>clientproductId</code> within the <code>wrapperDetail</code> array</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"50801ccf-fd3e-49e4-9734-7c1b707e4da3","name":"Retrieve the client product Id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F6C7\",\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"name\": \"Retirement savings\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clientId\": \"024B197\",\n        \"status\": \"Pending\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"PENSION\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"schemeProductId\": \"004P4\",\n            \"clientProductId\": \"631f1c09ec52d5bd158a270f\",\n            \"productDetail\": {\n                \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n                \"flexibleBenefitsAccessed\": true,\n                \"pensionOptOut\": true\n            }\n        },\n        \"clientName\": \"Demo Caldon\",\n        \"clientNationalInsuranceNo\": \"AB576470C\",\n        \"nodeName\": \"Seccl Demo\",\n        \"_name\": \"RETIREMENT SAVINGS\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T11:46:17.196Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab180\"\n    }\n}"}],"_postman_id":"b9bab029-c614-4810-a4fa-8b7b69d71a34"},{"name":"Retrieve the clientproduct updateId","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"f5ad487d-ee89-428e-a565-a806c0462646"}}],"id":"0ec05b8b-1990-489f-bc12-777b9a35e5fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Returns the clientproduct record which includes the updateId</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"cd526bb0-389a-44aa-8060-77a8a67bfbbe","name":"Retrieve the clientproduct updateId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/SDEMO/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n            \"flexibleBenefitsAccessed\": true,\n            \"pensionOptOut\": true\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"}],"_postman_id":"0ec05b8b-1990-489f-bc12-777b9a35e5fa"},{"name":"Update pension protection on an account","id":"af60ab34-8100-4431-82f1-9390a487d6e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"protection\": [\n            {\n                \"protectionType\": \"Primary\",\n                \"certificateReferenceNumber\": \"12458\",\n                \"schemeAdminReferenceNumber\": \"23598\"\n            }\n        ],\n        \"updateId\": \"{{updateId}}\"\n    }\n}"},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Updates any protection that the client has. This will be shared cross all Seccl SIPP Pension products</p>\n<p>Returns a successful array</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>productDetail</code> object <strong>Required</strong></p>\n<p>Holds the information about protection and lifetime enhancement factors</p>\n<hr />\n<p><code>productDetail.protection</code> array<br />Contains the client's pension protection. This can continue multiple protections</p>\n<hr />\n<p><code>productDetail.protection.protectionType</code> string</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Primary</code></td>\n</tr>\n<tr>\n<td><code>Enhanced</code></td>\n</tr>\n<tr>\n<td><code>Fixed 2012</code></td>\n</tr>\n<tr>\n<td><code>Fixed 2014</code></td>\n</tr>\n<tr>\n<td><code>Fixed 2016</code></td>\n</tr>\n<tr>\n<td><code>Individual 2014</code></td>\n</tr>\n<tr>\n<td><code>Individual 2016</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>productDetail.protection.certificateReferenceNumber</code> string<br />The certificate reference number</p>\n<hr />\n<p><code>productDetail.protection.schemeAdminReferenceNumber</code> string<br />The scheme administrator reference number</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"4296430a-662e-4cc2-abd2-fa2996dfe33c","name":"Update pension protection on an account","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"protection\": [\n            {\n                \"protectionType\": \"Primary\",\n                \"certificateReferenceNumber\": \"12458\",\n                \"schemeAdminReferenceNumber\": \"23598\"\n            }\n        ],\n        \"updateId\": \"{{updateId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"f0530164-5308-47af-ab00-f5f9a773b803","name":"Update lifetime allowance enhancement factors","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"lifetimeAllowanceEnhancementFactors\": [\n            {\n                \"type\": \"Non-Residence Factor\",\n                \"date\": \"2013-10-03T00:00:00.000Z\",\n                \"rate\": 0.25\n            }\n        ]\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"fa99c706-5f10-45a6-9522-b1bd3efffa1b","name":"Update pension protection and lifetime allowance enhancement factors","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"protection\": [\n            {\n                \"protectionType\": \"Primary\",\n                \"certificateReferenceNumber\": \"12458\",\n                \"schemeAdminReferenceNumber\": \"23598\"\n            }\n        ],\n        \"lifetimeAllowanceEnhancementFactors\": [\n            {\n                \"type\": \"Non-Residence Factor\",\n                \"date\": \"2013-10-03T00:00:00.000Z\",\n                \"rate\": 0.25\n            }\n        ]\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"59e59946-ba8a-44d8-a052-39a155057963","name":"Update lifetime allowance used elsewhere but not transfered","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"lifetimeAllowanceUsedElsewhere\": 0.0056\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"af60ab34-8100-4431-82f1-9390a487d6e1"}],"id":"10fc4225-58dc-40ff-a5a5-4b2e38c515c9","description":"<p>Prior to requesting a benefit crystallisation instruction, it is necessary to update any pension protection or lifetime allowance enhancement factors to the client product</p>\n<p>This section shows you how to:</p>\n<ul>\n<li>Retrieve the clientproduct Id from the account record</li>\n<li>Retrieve the clientproduct updateId</li>\n<li>Update the clientproduct with the new protection information</li>\n</ul>\n","_postman_id":"10fc4225-58dc-40ff-a5a5-4b2e38c515c9"},{"name":"Lump sum allowances","item":[{"name":"Retrieve the client product Id","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientproductId\", data.data.wrapperDetail.clientproductid)"],"type":"text/javascript","id":"091ac3c5-85ed-425c-b6f6-c463d832aacb"}}],"id":"df422f83-7d33-48ce-b6ea-c0f909792cfc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves the account record, which includes the <code>clientproductId</code> within the <code>wrapperDetail</code> array</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"feb5bf47-81a0-4a50-96e6-df047d853c80","name":"Retrieve the client product Id","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F6C7\",\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"name\": \"Retirement savings\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"clientId\": \"024B197\",\n        \"status\": \"Pending\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"PENSION\",\n            \"discretionary\": false,\n            \"advised\": false,\n            \"trust\": false,\n            \"schemeProductId\": \"004P4\",\n            \"clientProductId\": \"631f1c09ec52d5bd158a270f\",\n            \"productDetail\": {\n                \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n                \"flexibleBenefitsAccessed\": true,\n                \"pensionOptOut\": true\n            }\n        },\n        \"clientName\": \"Demo Caldon\",\n        \"clientNationalInsuranceNo\": \"AB576470C\",\n        \"nodeName\": \"Seccl Demo\",\n        \"_name\": \"RETIREMENT SAVINGS\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-12T11:46:17.196Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab180\"\n    }\n}"}],"_postman_id":"df422f83-7d33-48ce-b6ea-c0f909792cfc"},{"name":"Retrieve the clientproduct updateId","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"f5ad487d-ee89-428e-a565-a806c0462646"}}],"id":"aa15c184-e620-4769-9807-72b39d4d5c8f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Returns the clientproduct record which includes the updateId</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"15273bec-db8f-429d-afb6-7886f1a894e2","name":"Retrieve the clientproduct updateId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/SDEMO/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexiAccessDate\": \"2022-09-12T00:00:00.000Z\",\n            \"flexibleBenefitsAccessed\": true,\n            \"pensionOptOut\": true\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"}],"_postman_id":"aa15c184-e620-4769-9807-72b39d4d5c8f"},{"name":"Update LTA and LSA information on an account","id":"d02a3d43-2989-4083-aa2c-52428d88c553","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"transitionalTaxFreeAmount\": 125000,\n        \"lumpSumAllowanceUsedPreApril2024\": 150000,\n        \"lifetimeAllowanceUsedElsewhere\": 0.56,\n        \"lumpSumAllowanceUsedElsewhere\": 125000\n    }\n}"},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Updates any LTA or LSA for the client. This will be shared cross all Seccl SIPP Pension products</p>\n<p>Returns a successful array</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record last time it was updated</p>\n<hr />\n<p><code>productDetail</code> object <strong>Required</strong></p>\n<p>Holds the information about protection and lifetime enhancement factors</p>\n<hr />\n<p><code>productDetail.transitionalTaxFreeAmount</code> number<br />The transitional tax free certificate reference amount</p>\n<hr />\n<p><code>productDetail.lumpSumAllowanceUsedPreApril2024</code> number<br />The deemed LSA used pre April 2024</p>\n<hr />\n<p><code>productDetail.lifetimeAllowanceUsedElsewhere</code> number<br />The LTA used elsewhere. A number less than or equal to 1</p>\n<hr />\n<p><code>productDetail.lumpSumAllowanceUsedElsewhere</code> number<br />Any LSA used elsewhere</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e00864f6-a8a3-471b-9fed-585e57bcf320","name":"Providing a transitional tax free certificate","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"transitionalTaxFreeAmount\": 125000\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"e37a5a07-0d73-42ca-b5a5-7fb339713401","name":"Providing calculated LSA allowance used pre April 2024","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"lumpSumAllowanceUsedPreApril2024\": 150000\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"bcf15654-20fc-45cc-9f05-33a4f4b44480","name":"Providing LTA used but not transferred","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"lifetimeAllowanceUsedElsewhere\": 0.56\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"5d0f2c3c-a913-40cf-96f1-6c8e29b2697a","name":"Providing LSA used elsewhere","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"productDetail\": {\n        \"lumpSumAllowanceUsedElsewhere\": 125000\n    },\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"d02a3d43-2989-4083-aa2c-52428d88c553"},{"name":"Retrieve information about LSA used","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateId)"],"type":"text/javascript","id":"f5ad487d-ee89-428e-a565-a806c0462646"}}],"id":"2a2ee2ae-952e-4a76-a4f4-143d1a71fb41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}","description":"<p>Returns the clientproduct record which includes the product detail object</p>\n<p>This can include information pertaining to the transitional tax free certificate, LSA used elsewhere, and LSA used pre April 2024.</p>\n<p>It is not possible to have both a transitional tax free certificate and a LSA used pre April 2024.</p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientproductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"97c30a95-1291-4ca9-8c81-a0b894c3be68","name":"with a transitional tax free certificate","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexibleBenefitsAccessed\": false,\n            \"pensionOptOut\": false,\n            \"transitionalTaxFreeAmount\": 125000,\n            \"transitionalTaxFreeAmountChecked\": true\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"},{"id":"93f82638-7d3d-4a8e-a31e-7b7238796b5f","name":"with lsa used elsewhere","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexibleBenefitsAccessed\": false,\n            \"pensionOptOut\": false,\n            \"lumpSumAllowanceUsedElsewhere\": 125000\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"},{"id":"c3e31312-f275-446f-a1e8-d255904cb327","name":"with lsa used pre April 2024 (deemed)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientproductId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"583"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:51:22 GMT"},{"key":"x-amzn-RequestId","value":"bd92ff0e-752c-4216-a3c8-53616ab50504"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"583"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWGBEH-kDoEFTow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"247-BDF9EjW/xqVD2FN5Va9nQOnkaqc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1d39-79bac7c24da4e6e43c4947cb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"IomtRmB-RtSa_3PKnccS0dUyEXBnkWyl89lcoBgU2jqYy7xAe9l3YA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"631f1c09ec52d5bd158a270f\",\n        \"clientIds\": [\n            \"024B197\"\n        ],\n        \"firmId\": \"SDEMO\",\n        \"nodeId\": \"0\",\n        \"schemeProductId\": \"004P4\",\n        \"wrapperType\": \"PENSION\",\n        \"auditDetails\": {\n            \"application\": \"PfolioAPI\",\n            \"updateDate\": \"2022-09-12T11:46:17.175Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1\n        },\n        \"expressionOfWishNominations\": [\n            {\n                \"title\": \"Dr\",\n                \"firstName\": \"James\",\n                \"surname\": \"Jon\",\n                \"beneficiaryRelationship\": \"HUSBAND\",\n                \"beneficiaryProportion\": 0.01\n            }\n        ],\n        \"productDetail\": {\n            \"flexibleBenefitsAccessed\": false,\n            \"pensionOptOut\": false,\n            \"lumpSumAllowanceUsedPreApril2024\": 65326.89\n        },\n        \"updateId\": \"631f1c09bbf456a4dcbab17f\"\n    }\n}"}],"_postman_id":"2a2ee2ae-952e-4a76-a4f4-143d1a71fb41"}],"id":"10b7dc86-be86-4434-9d4f-e9e7111b8972","description":"<p>As of April 6th, 2024, the 'lifetime allowance' (LTA), which formerly limited the total amount of pension benefits you could accumulate while still enjoying full tax benefits, has been replaced by a 'lump sum allowance' (LSA). The LSA sets a limit on the tax-free cash you can receive from your pension, typically £268,275. This section outlines how you can use our API to comply with these legislative changes.</p>\n<h2 id=\"mini-glossary\">Mini Glossary</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Definition</th>\n<th><strong>Comments</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Transitional tax free certificate  <br />  <br /><code>transitionalTaxFreeAmount</code></td>\n<td>A member can request one of these from a scheme. This certificate provides evidence of all pre April 6th 2024 LSA (lump-sum allowance) and LSDBA (lump-sum death benefits allowance) used.</td>\n<td>If one of these is provided the crystallisation will be held at waiting until our operations team certifies its validity.</td>\n</tr>\n<tr>\n<td>Lump sum allowance used pre 6th April 2024 - \"Deemed LSA usage\"  <br />  <br /><code>lumpSumAllowanceUsedPreApril2024</code></td>\n<td>This is the calculated figure that converts a members LTA usage pre 6th April 2024 to an equivalent LSA usage.</td>\n<td>This figure is in replacement to the transitional tax free amount certificate.</td>\n</tr>\n</tbody>\n</table>\n</div><h2 id=\"this-section-shows-you-how-to\">This section shows you how to:</h2>\n<ul>\n<li>Retrieve the <code>clientproduct</code> Id from the account record</li>\n<li>Retrieve the <code>clientproduct</code> updateId</li>\n<li>Update the <code>clientproduct</code> with the required information</li>\n</ul>\n<h2 id=\"flow-diagrams-of-how-our-ui-guides-users-down-relevant-journeys\">Flow diagrams of how our UI guides users down relevant journeys</h2>\n<img src=\"https://content.pstmn.io/49c53db5-d12d-4799-abae-aff022b3c422/TFRBIEFib2xpdGlvbl8yMDI0LTA0LTE2XzA3LTQxLTE3LnBuZw==\" alt=\"A%20members%20first%20crystallisation%20at%20seccl%20post%20April%206th%202024\" width=\"2112\" height=\"1170\" />\n\n<img src=\"https://content.pstmn.io/54a55ad2-cda3-4957-bb62-65a425ad387b/TFRBIEFib2xpdGlvbl8yMDI0LTA0LTE2XzA3LTQxLTI3LnBuZw==\" alt=\"A%20members%20subsequent%20crystallisation\" width=\"2112\" height=\"669\" />","_postman_id":"10b7dc86-be86-4434-9d4f-e9e7111b8972"},{"name":"The Benefit Crystallisation object","item":[],"id":"1f6ee477-3542-4d42-b004-9b81f5a2884d","description":"<p>This is an object representing your client's benefit crystallisation instruction. You can create and retrieve it to view information pertaining to it's progress and status.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n        \"id\": \"005F1\",\n        \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n        \"accountDetails\": {\n            \"name\": \"Drawdown Account\"\n        },\n        \"accountId\": \"027JDDC\",\n        \"advised\": true,\n        \"fcaIndividualReference\": \"ABC123\",\n        \"benefitsTakenBefore2006\": false,\n        \"protectedRetirementAgeOrLumpSum\": false,\n        \"crystallisationDetails\": {\n            \"type\": \"FAD\",\n            \"frequency\": \"Single\",\n            \"fullCrystallisation\": false,\n            \"amount\": 4400\n        },\n        \"firmId\": \"SECCI\",\n        \"guidance\": false,\n        \"withdrawalDetails\": [\n            {\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"PCLS\",\n                \"amount\": 1100,\n                \"frequency\": \"Single\",\n                \"method\": \"BACS Credit\",\n                \"movementType\": \"Out\"\n            },\n            {\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"FAD\",\n                \"grossAmount\": 1806,\n                \"method\": \"BACS Credit\",\n                \"movementType\": \"Out\",\n                \"frequency\": \"Single\"\n            }\n        ],\n        \"clientProductId\": \"6523a3aa9c9363eaab8ebcc5\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"status\": \"Completed\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-10-09T06:55:10.184Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 12,\n            \"application\": \"client-data-manager-client-event-service\"\n        },\n        \"updateId\": \"6523a3ce6da40eef3c3be18e\",\n        \"benefitCrystallisationEvents\": [\n            {\n                \"date\": \"2023-10-09T00:00:00.000Z\",\n                \"amount\": 1100,\n                \"type\": \"BCE6\",\n                \"lifetimeAllowanceUsed\": 0.001,\n                \"accountId\": \"027JDDC\",\n                \"accountGroupId\": \"02G2H\"\n            },\n            {\n                \"date\": \"2023-10-09T00:00:00.000Z\",\n                \"amount\": 3300,\n                \"type\": \"BCE1\",\n                \"lifetimeAllowanceUsed\": 0.003,\n                \"accountId\": \"027JDDD\",\n                \"accountGroupId\": \"02G2J\"\n            }\n        ],\n        \"relevantBenefitCrystallisationEvents\": [\n            {\n                \"date\": \"2023-10-09T00:00:00.000Z\",\n                \"amount\": 1100,\n                \"nonTaxableAmount\": 1100,\n                \"rbceType\": \"UFPLS\",\n                \"accountId\": \"027JDDC\",\n                \"accountGroupId\": \"02G2H\"\n            }\n        ],\n        \"processAction\": \"Generate RBCE Statement\"\n    }\n\n</code></pre>\n<h4 id=\"attributes\">Attributes</h4>\n<p><code>id</code> string</p>\n<p>The unique identifier for the benefit crystallisation instruction</p>\n<hr />\n<p><code>clientProductActionType</code> string</p>\n<p>For internal use only, which will be \"Benefit Crystallisation Instruction\"</p>\n<hr />\n<p><code>accountDetails</code> objects</p>\n<p>Initial details provided about the crystallisation account for FAD. Will contain either</p>\n<p><code>accountDetails.name</code> string<br />if a new account was to be created</p>\n<p>or</p>\n<p><code>accountDetails.id</code> string<br />if an existing account was to be used</p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The uncrystallised account that was used for the benefit crystallisation instruction</p>\n<hr />\n<p><code>advised</code> boolean</p>\n<p>Whether regulated advice was given for the benefit application</p>\n<hr />\n<p><code>fcaIndividualReference</code> string</p>\n<p>The FCA individual reference number for the benefit application</p>\n<hr />\n<p><code>benefitsTakenBefore2006</code> boolean</p>\n<p>Whether the client has taken benefits from their pension before the 6th April 2006</p>\n<hr />\n<p><code>protectedRetirementAgeOrLumpSum</code> boolean</p>\n<p>Whether the client has a protected early retirement age or scheme-specific tax-free lump sum protection</p>\n<hr />\n<p><code>guidance</code> boolean</p>\n<p>Whether the client received guidance from Pension Wise</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string<br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>clientProductId</code></p>\n<p>The unique identifier for the clientProduct that the benefit crystallisation instruction is contained within</p>\n<hr />\n<p><code>status</code> string<br />The status of the benefit crystallisation instruction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The instruction has yet to be processed</td>\n</tr>\n<tr>\n<td><code>Waiting</code></td>\n<td>The instruction cannot be automatically completed and will required manual intervention by the operation team</td>\n</tr>\n<tr>\n<td><code>Calculated</code></td>\n<td>The instruction has calculated it's BCEs and is currently processing</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>The instruction has completed</td>\n</tr>\n<tr>\n<td><code>Rejected</code></td>\n<td>The instruction was rejected</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>crystallisationDetails</code> object<br />The details of the crystallisation that was performed</p>\n<p><code>crystallisationDetails.type</code> string</p>\n<p><code>crystallisationDetails.frequency</code> string</p>\n<p><code>crystallisationDetails.fullCrystallisation</code> boolean</p>\n<p><code>crystallisationDetails.amount</code> number</p>\n<hr />\n<p><code>withdrawalDetails</code> array<br />The details of the any associated withdrawals for the instruction for FAD. It can contain an array of the following fields</p>\n<p><code>withdrawalDetails.transactionType</code> string<br />The type of transaction, usually Payment</p>\n<p><code>withdrawalDetails.transactionSubType</code> string<br />The sun type of transaction, which will be PCLS or FAD</p>\n<p><code>withdrawalDetails.method</code> string<br />The type of payment method</p>\n<p><code>withdrawalDetails.movementType</code> string<br />The movement type, which will be Out</p>\n<p><code>withdrawalDetails.frequency</code> string<br />Whether this was a Single or Regular payment</p>\n<p><code>withdrawalDetails.fullWithdrawal</code> boolean<br />Whether a full single withdrawal was requested</p>\n<p><code>withdrawalDetails.amount</code> number<br />The amount of a PCLS payment</p>\n<p><code>withdrawalDetails.grossAmount</code> number<br />The gross amount requested for a FAD payment</p>\n<p><code>withdrawalDetails.paymentDay</code> number<br />The payment day for a regular withdrawal</p>\n<p><code>withdrawalDetails.autoDisinvest</code> string<br />The disinvestment method for regular withdrawals</p>\n<hr />\n<p><code>benefitCrystallisationEvents</code> object<br />The details of the any BCE calculated for the instruction</p>\n<p><code>benefitCrystallisationEvents.date</code> date<br />The date the BCE was calculated</p>\n<p><code>benefitCrystallisationEvents.amount</code> number<br />The amount for the BCE</p>\n<p><code>benefitCrystallisationEvents.type</code> string<br />The type of BCE, usually BCE1 or BCE6</p>\n<p><code>benefitCrystallisationEvents.lifetimeAllowanceUsed</code> number<br />The percentage of lifetime allowance calculated for the event</p>\n<p><code>benefitCrystallisationEvents.accountId</code> string<br />The account id associated with the event</p>\n<p><code>benefitCrystallisationEvents.accountGroupId</code> string<br />For internal use only</p>\n<hr />\n<p><code>relevantBenefitCrystallisationEvents</code> object<br />The details of the any relevant BCE calculated for the instruction</p>\n<p><code>relevantBenefitCrystallisationEvents.date</code> date<br />The date the relevant BCE was calculated</p>\n<p><code>relevantBenefitCrystallisationEvents.amount</code> number<br />The amount for the relevant BCE</p>\n<p><code>relevantBenefitCrystallisationEvents.nonTaxableAmount</code> number<br />The amount for the relevant BCE</p>\n<p><code>relevantBenefitCrystallisationEvents.rbceType</code> string<br />The type of relevant BCE, \"UFPLS\" or \"FAD\"</p>\n<p><code>relevantBenefitCrystallisationEvents.accountId</code> string<br />The account id associated with the event</p>\n<p><code>relevantBenefitCrystallisationEvents.accountGroupId</code> string<br />For internal use only</p>\n<hr />\n<p><code>processAction</code> string<br />For internal use only to indicate progress of the instruction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Determine Portfolio Group</code></td>\n</tr>\n<tr>\n<td><code>Determine Account</code></td>\n</tr>\n<tr>\n<td><code>Record UFPLS RBCE</code></td>\n</tr>\n<tr>\n<td><code>Instruct PCLS Payment</code></td>\n</tr>\n<tr>\n<td><code>Instruct UFPLS Payment</code></td>\n</tr>\n<tr>\n<td><code>Transfer Assets</code></td>\n</tr>\n<tr>\n<td><code>Action Single Withdrawal</code></td>\n</tr>\n<tr>\n<td><code>Action Regular Withdrawal</code></td>\n</tr>\n<tr>\n<td><code>Handle LTA Tax Charge</code></td>\n</tr>\n<tr>\n<td><code>Generate RBCE Statement</code></td>\n</tr>\n<tr>\n<td><code>Assets Transferred</code></td>\n</tr>\n<tr>\n<td><code>PCLS Instructed</code></td>\n</tr>\n<tr>\n<td><code>UFPLS Instructed</code></td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"1f6ee477-3542-4d42-b004-9b81f5a2884d"},{"name":"Perform a Crystallisation","item":[{"name":"Create a Benefit Crystallisation Instruction","id":"c602f4d5-cd4d-4f8e-b61d-2d603098baf2","protocolProfileBehavior":{"disabledSystemHeaders":{},"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": false,\n        \"amount\": 10000.00\n    },\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 2500.00,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 1000,\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Single\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/crystallisation","description":"<p>Creates a new benefit crystallisation record on the platform</p>\n<p>Returns an <code>id</code> – the unique identifier for the benefit crystallisation record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The uncrystallised account to perform the crystallisation from</p>\n<hr />\n<p><code>advised</code> true <strong>Required</strong><br />Has regulated advice been given for the below benefit application?<br />Must be true</p>\n<hr />\n<p><code>fcaIndividualReference</code> string <strong>Required</strong><br />Your FCA individual reference number</p>\n<hr />\n<p><code>guidance</code> boolean <strong>Required</strong><br />Has your client received guidance from Pension Wise?</p>\n<hr />\n<p><code>benefitsTakenBefore2006</code> boolean <strong>Required</strong><br />Has your client taken benefits from their pension before the 6th April 2006?</p>\n<hr />\n<p><code>protectedRetirementAgeOrLumpSum</code> boolean <strong>Required</strong><br />Does your client have a protected early retirement age or scheme-specific tax-free lump sum protection?</p>\n<hr />\n<p><code>accountDetails</code> object <strong>Required for FAD only</strong><br />You can choose whether to crystallise into a new crystallised account or to an existing crystallised account</p>\n<hr />\n<p><code>accountDetails.name</code> or<br /><code>accountDetails.id</code> string<br />The name or id of the crystallised account</p>\n<hr />\n<p><code>crystallisationDetails</code> object <strong>Required</strong><br />The details of the crystallisation you wish to perform</p>\n<hr />\n<p>There are 3 options available.<br />To perform a FAD partial crystallisation you will need to use</p>\n<p><code>crystallisationDetails.type</code> \"FAD\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.frequency</code> \"Single\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.fullCrystallisation</code> false <strong>Required</strong></p>\n<p><code>crystallisationDetails.amount</code> number <strong>Required</strong></p>\n<p>To perform a FAD full crystallisation you will need to use</p>\n<p><code>crystallisationDetails.type</code> \"FAD\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.frequency</code> \"Single\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.fullCrystallisation</code> true <strong>Required</strong></p>\n<p>To perform an UFPLS partial crystallisation you will need to use</p>\n<p><code>crystallisationDetails.type</code> \"UFPLS\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.frequency</code> \"Single\" <strong>Required</strong></p>\n<p><code>crystallisationDetails.fullCrystallisation</code> false <strong>Required</strong></p>\n<p><code>crystallisationDetails.amount</code> number <strong>Required</strong></p>\n<p>Please note we do not currently support UFPLS full crystallisations</p>\n<p><code>withdrawalDetails</code> array <strong>Required for FAD only</strong><br />This array is used to provide details of PCLS, single withdrawals, and regular withdrawals</p>\n<p>For a PCLS payment<br /><code>withdrawalDetails.transactionType</code> \"Payment\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.transactionSubType</code> \"PCLS\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.method</code> \"BACS Credit\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.movementType</code> \"Out\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.frequency</code> \"Single\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.amount</code> number <strong>Required</strong></p>\n<p>For a single partial withdrawal<br /><code>withdrawalDetails.transactionType</code> \"Payment\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.transactionSubType</code> \"FAD\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.method</code> \"BACS Credit\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.movementType</code> \"Out\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.frequency</code> \"Single\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.grossAmount</code> number <strong>Required</strong></p>\n<p>For a single full withdrawal<br /><code>withdrawalDetails.transactionType</code> \"Payment\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.transactionSubType</code> \"FAD\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.method</code> \"BACS Credit\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.movementType</code> \"Out\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.fullWithdrawal</code> true <strong>Required</strong></p>\n<p>For a regular withdrawal<br /><code>withdrawalDetails.transactionType</code> \"Payment\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.transactionSubType</code> \"FAD\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.method</code> \"BACS Credit\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.movementType</code> \"Out\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.frequency</code> \"Regular\" <strong>Required</strong></p>\n<p><code>withdrawalDetails.paymentType</code> number<br /><strong>Required</strong></p>\n<p>must be 7,14,21 or 28<br /><code>withdrawalDetails.grossAmount</code> number <strong>Required</strong></p>\n<p><code>withdrawalDetails.autoDisinvest</code> string <strong>Required</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Proportional</td>\n</tr>\n<tr>\n<td>Largest</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["clientproduct","action","crystallisation"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"9fbaae80-8c61-497d-9b6f-f44c40e08e31","name":"Partial FAD Crystallisation and a partial single withdrawal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": false,\n        \"amount\": 10000.00\n    },\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 2500.00,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 1000,\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Single\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"/clientproduct/action/crystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\"\n    }\n}"},{"id":"ae6ea961-6686-460f-96f5-9943c82385b4","name":"Partial FAD Crystallisation and a partial single withdrawal, with regular income","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": false,\n        \"amount\": 100000.00\n    },\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 25000.00,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 10000,\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Single\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Regular\",\n            \"paymentDay\": 28,\n            \"grossAmount\": 1250,\n            \"autoDisinvest\": \"Proportional\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/crystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\"\n    }\n}"},{"id":"492fd176-69ad-4075-bfb6-8e30df41f840","name":"Partial FAD Crystallisation and a full single withdrawal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": false,\n        \"amount\": 100000.00\n    },\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 25000.00,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Single\",\n            \"fullWithdrawal\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/crystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\"\n    }\n}"},{"id":"ee5cfd41-68d2-4a55-851f-50d420b900ec","name":"Full FAD Crystallisation and a partial single withdrawal, with regular income","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": true\n    },\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 25000.00,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 10000,\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Single\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"frequency\": \"Regular\",\n            \"paymentDay\": 28,\n            \"grossAmount\": 1250,\n            \"autoDisinvest\": \"Proportional\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/crystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\"\n    }\n}"},{"id":"f0c26974-a0a4-4f14-b75a-4fa2a850237c","name":"Partial UFPLS Crystallisation and a partial single withdrawal","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accoundId}}\",\n    \"advised\": true,\n    \"guidance\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"UFPLS\",\n        \"frequency\": \"Single\",\n        \"fullCrystallisation\": false,\n        \"amount\": 10000.00\n    }\n}","options":{"raw":{"language":"json"}}},"url":"/clientproduct/action/crystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\"\n    }\n}"}],"_postman_id":"c602f4d5-cd4d-4f8e-b61d-2d603098baf2"},{"name":"Retrieve the Benefit Crystallisation Instruction","id":"3d593343-0a4c-4dd9-a967-4da6492d60b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/action/{{firmId}}/{{bciId}}","description":"<p>Retrieves the benefit crystallisation instruction record.</p>\n","urlObject":{"path":["clientproduct","action","{{firmId}}","{{bciId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3c048802-7d2f-4fd5-8ba9-dd8e38fc1457","name":"Retrieve the Benefit Crystallisation Instruction","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"005F1\",\n        \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n        \"accountDetails\": {\n            \"name\": \"Drawdown Account\"\n        },\n        \"accountId\": \"027JDDC\",\n        \"advised\": true,\n        \"fcaIndividualReference\": \"ABC123\",\n        \"benefitsTakenBefore2006\": false,\n        \"protectedRetirementAgeOrLumpSum\": false,\n        \"crystallisationDetails\": {\n            \"type\": \"FAD\",\n            \"frequency\": \"Single\",\n            \"fullCrystallisation\": false,\n            \"amount\": 4400\n        },\n        \"firmId\": \"SECCI\",\n        \"guidance\": false,\n        \"withdrawalDetails\": [\n            {\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"PCLS\",\n                \"amount\": 1100,\n                \"frequency\": \"Single\",\n                \"method\": \"BACS Credit\",\n                \"movementType\": \"Out\"\n            },\n            {\n                \"transactionType\": \"Payment\",\n                \"transactionSubType\": \"FAD\",\n                \"grossAmount\": 1806,\n                \"method\": \"BACS Credit\",\n                \"movementType\": \"Out\",\n                \"frequency\": \"Single\"\n            }\n        ],\n        \"clientProductId\": \"6523a3aa9c9363eaab8ebcc5\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"status\": \"Completed\",\n        \"auditDetails\": {\n            \"updateDate\": \"2023-10-09T06:55:10.184Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 12,\n            \"application\": \"client-data-manager-client-event-service\"\n        },\n        \"updateId\": \"6523a3ce6da40eef3c3be18e\",\n        \"benefitCrystallisationEvents\": [\n            {\n                \"date\": \"2023-10-09T00:00:00.000Z\",\n                \"amount\": 1100,\n                \"type\": \"BCE6\",\n                \"lifetimeAllowanceUsed\": 0.001,\n                \"accountId\": \"027JDDC\",\n                \"accountGroupId\": \"02G2H\"\n            },\n            {\n                \"date\": \"2023-10-09T00:00:00.000Z\",\n                \"amount\": 3300,\n                \"type\": \"BCE1\",\n                \"lifetimeAllowanceUsed\": 0.003,\n                \"accountId\": \"027JDDD\",\n                \"accountGroupId\": \"02G2J\"\n            }\n        ],\n        \"processAction\": \"Generate Statement\"\n    }\n}"}],"_postman_id":"3d593343-0a4c-4dd9-a967-4da6492d60b3"},{"name":"Search Benefit Crystallisation Instructions","id":"2e940f48-5c36-48ee-8e52-40637578fc4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/action/{{firmId}}","description":"<p>Searches for benefit crystallisation instructions</p>\n","urlObject":{"path":["clientproduct","action","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2506bd88-ed2e-4616-96f0-ad0fc3d7e69f","name":"Retrieve Benefit Crystallisation Instructions by uncrystallised account","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/clientproduct/action/{{firmId}}?accountId={{accountId}}","host":["{{apiRoute}}"],"path":["clientproduct","action","{{firmId}}"],"query":[{"key":"accountId","value":"{{accountId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0006J\",\n            \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n            \"accountDetails\": {\n                \"name\": \"Drawdown Account\"\n            },\n            \"accountId\": \"027F323\",\n            \"advised\": true,\n            \"crystallisationDetails\": {\n                \"type\": \"FAD\",\n                \"frequency\": \"Single\",\n                \"fullCrystallisation\": false,\n                \"amount\": 10000\n            },\n            \"firmId\": \"SECCI\",\n            \"guidance\": false,\n            \"withdrawalDetails\": [\n                {\n                    \"transactionType\": \"Payment\",\n                    \"transactionSubType\": \"PCLS\",\n                    \"amount\": 2500,\n                    \"frequency\": \"Single\",\n                    \"method\": \"BACS Credit\",\n                    \"movementType\": \"Out\"\n                }\n            ],\n            \"clientProductId\": \"6436cdca33a066262eae7764\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"status\": \"Completed\",\n            \"auditDetails\": {\n                \"updateDate\": \"2023-04-12T15:27:23.682Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"client-data-manager-client-event-service\"\n            },\n            \"updateId\": \"6436cddbe152f7cb27094ecf\",\n            \"benefitCrystallisationEvents\": [\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 2500,\n                    \"type\": \"BCE6\",\n                    \"lifetimeAllowanceUsed\": 0.0023\n                },\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 7500,\n                    \"type\": \"BCE1\",\n                    \"lifetimeAllowanceUsed\": 0.0069\n                }\n            ],\n            \"processAction\": \"Determine Account\"\n        },\n        {\n            \"id\": \"00071\",\n            \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n            \"accountDetails\": {\n                \"name\": \"Drawdown Account\"\n            },\n            \"accountId\": \"027F323\",\n            \"advised\": true,\n            \"crystallisationDetails\": {\n                \"type\": \"FAD\",\n                \"frequency\": \"Single\",\n                \"fullCrystallisation\": false,\n                \"amount\": 10000\n            },\n            \"firmId\": \"SECCI\",\n            \"guidance\": false,\n            \"withdrawalDetails\": [\n                {\n                    \"transactionType\": \"Payment\",\n                    \"transactionSubType\": \"PCLS\",\n                    \"amount\": 2500,\n                    \"frequency\": \"Single\",\n                    \"method\": \"BACS Credit\",\n                    \"movementType\": \"Out\"\n                }\n            ],\n            \"clientProductId\": \"6436cdca33a066262eae7764\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"status\": \"Completed\",\n            \"auditDetails\": {\n                \"updateDate\": \"2023-04-12T15:32:31.285Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"client-data-manager-client-event-service\"\n            },\n            \"updateId\": \"6436cf0fe152f7cb27094ed7\",\n            \"benefitCrystallisationEvents\": [\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 2500,\n                    \"type\": \"BCE6\",\n                    \"lifetimeAllowanceUsed\": 0.0023\n                },\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 7500,\n                    \"type\": \"BCE1\",\n                    \"lifetimeAllowanceUsed\": 0.0069\n                }\n            ],\n            \"processAction\": \"Determine Account\"\n        }    \n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"},{"id":"7a9d815e-bf4a-4966-8bdb-4579c3ff4137","name":"Retrieve Benefit Crystallisation Instructions by status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/clientproduct/action/{{firmId}}?status=Completed","host":["{{apiRoute}}"],"path":["clientproduct","action","{{firmId}}"],"query":[{"key":"status","value":"Completed"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"738"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 11:49:07 GMT"},{"key":"x-amzn-RequestId","value":"4d34539b-4e4b-4677-8c0a-32f3f0cdbdf7"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"738"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YWFsFFuEDoEF1GA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e2-HUt4Qi4jFMSohCTPbVf7Luhq3Xg\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631f1cb3-0dc71ffc0024a8f340bd62b9;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b474cf5c401bab2aebbb30cbe885dad0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"cqbTRR7l7iQm1NmgUMRWHWZ-TYAnn0YFCjHYY09CdUGEQekPwN5D5Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0006J\",\n            \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n            \"accountDetails\": {\n                \"name\": \"Drawdown Account\"\n            },\n            \"accountId\": \"027F323\",\n            \"advised\": true,\n            \"crystallisationDetails\": {\n                \"type\": \"FAD\",\n                \"frequency\": \"Single\",\n                \"fullCrystallisation\": false,\n                \"amount\": 10000\n            },\n            \"firmId\": \"SECCI\",\n            \"guidance\": false,\n            \"withdrawalDetails\": [\n                {\n                    \"transactionType\": \"Payment\",\n                    \"transactionSubType\": \"PCLS\",\n                    \"amount\": 2500,\n                    \"frequency\": \"Single\",\n                    \"method\": \"BACS Credit\",\n                    \"movementType\": \"Out\"\n                }\n            ],\n            \"clientProductId\": \"6436cdca33a066262eae7764\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"status\": \"Completed\",\n            \"auditDetails\": {\n                \"updateDate\": \"2023-04-12T15:27:23.682Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"client-data-manager-client-event-service\"\n            },\n            \"updateId\": \"6436cddbe152f7cb27094ecf\",\n            \"benefitCrystallisationEvents\": [\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 2500,\n                    \"type\": \"BCE6\",\n                    \"lifetimeAllowanceUsed\": 0.0023\n                },\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 7500,\n                    \"type\": \"BCE1\",\n                    \"lifetimeAllowanceUsed\": 0.0069\n                }\n            ],\n            \"processAction\": \"Determine Account\"\n        },\n        {\n            \"id\": \"00071\",\n            \"clientProductActionType\": \"Benefit Crystallisation Instruction\",\n            \"accountDetails\": {\n                \"name\": \"Drawdown Account\"\n            },\n            \"accountId\": \"027F323\",\n            \"advised\": true,\n            \"crystallisationDetails\": {\n                \"type\": \"FAD\",\n                \"frequency\": \"Single\",\n                \"fullCrystallisation\": false,\n                \"amount\": 10000\n            },\n            \"firmId\": \"SECCI\",\n            \"guidance\": false,\n            \"withdrawalDetails\": [\n                {\n                    \"transactionType\": \"Payment\",\n                    \"transactionSubType\": \"PCLS\",\n                    \"amount\": 2500,\n                    \"frequency\": \"Single\",\n                    \"method\": \"BACS Credit\",\n                    \"movementType\": \"Out\"\n                }\n            ],\n            \"clientProductId\": \"6436cdca33a066262eae7764\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"status\": \"Completed\",\n            \"auditDetails\": {\n                \"updateDate\": \"2023-04-12T15:32:31.285Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"client-data-manager-client-event-service\"\n            },\n            \"updateId\": \"6436cf0fe152f7cb27094ed7\",\n            \"benefitCrystallisationEvents\": [\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 2500,\n                    \"type\": \"BCE6\",\n                    \"lifetimeAllowanceUsed\": 0.0023\n                },\n                {\n                    \"date\": \"2023-04-12T00:00:00.000Z\",\n                    \"amount\": 7500,\n                    \"type\": \"BCE1\",\n                    \"lifetimeAllowanceUsed\": 0.0069\n                }\n            ],\n            \"processAction\": \"Determine Account\"\n        }    \n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"2e940f48-5c36-48ee-8e52-40637578fc4d"}],"id":"3dce0fe0-58c4-4af2-94e3-5dec978ef7d7","description":"<p>This section details how to perform a crystallisation, which is the process of taking tax-free withdrawals and to setup both single taxable withdrawals, and regular taxable withdrawals for FAD, or to take single UFPLS withdrawals</p>\n","_postman_id":"3dce0fe0-58c4-4af2-94e3-5dec978ef7d7"},{"name":"Regular Crystallisations","item":[{"name":"Creation","item":[{"name":"UFPLS Regular Crystallisation","id":"b8756271-2a76-4b9f-bceb-ca1e8049a41d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"{{accountId}}\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"UFPLS\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 21,\n        \"amount\": 2000,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{firmId}}\",\n    \"guidance\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/regularcrystallisation","urlObject":{"path":["clientproduct","action","regularcrystallisation"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"0b1585da-20d4-46a8-ae0a-eac18ad2387d","name":"UFPLS Regular Crystallisation - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"000025H\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"UFPLS\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 21,\n        \"amount\": 2000,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{firmId}}\",\n    \"guidance\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/regularcrystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 28 Feb 2024 14:14:07 GMT"},{"key":"x-amzn-RequestId","value":"fafcb7e2-f4f4-4cbc-ad4a-fc5ffc1f0f59"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"T2bjeE8DjoEEndQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17-DfniePPEGggTsSdzNE4Wyn2b70U\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-65df3faf-74acb80d6a4521b6484fe953"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d0229dbe69f77738f3ccab386a045ad8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"YpBXYsXCQrUxd98B9wD_rBKtc-9zEjRq7hUXfj0p5sCa2EjkbRUBCQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00D13\"\n    }\n}"}],"_postman_id":"b8756271-2a76-4b9f-bceb-ca1e8049a41d"},{"name":"FAD Regular Crystallisation","id":"4e91a598-ba09-4066-88e5-fe79c3b844df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"{{accountId}}\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 28,\n        \"amount\": 3812,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{firmId}}\",\n    \"guidance\": true,\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 953,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 1057,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/regularcrystallisation","urlObject":{"path":["clientproduct","action","regularcrystallisation"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d2b7c5ff-a50e-4872-a994-e4dc3ca0283a","name":"FAD Regular Crystallisation - Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"000025J\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 28,\n        \"amount\": 3812,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{firmId}}\",\n    \"guidance\": true,\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 953,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 1057,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/action/regularcrystallisation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"23"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 28 Feb 2024 14:17:32 GMT"},{"key":"x-amzn-RequestId","value":"8882efea-d6a5-4f1b-a42c-5e30251ac102"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"23"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"T2cDXE-kDoEEctA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17-hOE/N7VvdlPznmiMuDI1oegJ8ag\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-65df407b-21e13ace771b866036384217"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d0229dbe69f77738f3ccab386a045ad8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"CDG52-P2"},{"key":"X-Amz-Cf-Id","value":"lAFlMs0hKTIXLkmuodhmVL0ZRoWmPHCul8POg7yjFV1iPidma5CBPg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00D14\"\n    }\n}"}],"_postman_id":"4e91a598-ba09-4066-88e5-fe79c3b844df"}],"id":"c2746f73-fbf4-4582-8f61-df7139d0e5e8","description":"<p>This section details how to perform a regular crystallisation. The body of the requests are outlined below and differ depending on the crystallisation type UFPLS (uncrystallised funds pension lump sum), or FAD (flexi access drawdown).</p>\n<h2 id=\"ufpls\">UFPLS</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"accountId\": \"{{accountId}}\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"crystallisationDetails\": {\n        \"type\": \"UFPLS\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 21,\n        \"amount\": 2000,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"guidance\": true\n}\n\n</code></pre>\n<h2 id=\"fad\">FAD</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"accountId\": \"{{accountId}}\",\n    \"advised\": true,\n    \"fcaIndividualReference\": \"ABC123\",\n    \"benefitsTakenBefore2006\": false,\n    \"protectedRetirementAgeOrLumpSum\": false,\n    \"accountDetails\": {\n        \"name\": \"Drawdown Account\"\n    },\n    \"crystallisationDetails\": {\n        \"type\": \"FAD\",\n        \"frequency\": \"Regular\",\n        \"crystallisationDay\": 28,\n        \"amount\": 3812,\n        \"expiryDate\": \"2026-02-01\"\n    },\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"guidance\": true,\n    \"withdrawalDetails\": [\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"PCLS\",\n            \"amount\": 953,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"FAD\",\n            \"grossAmount\": 1057,\n            \"frequency\": \"Single\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\"\n        }\n    ]\n\n</code></pre>\n<h2 id=\"attributes\">Attributes</h2>\n<h3 id=\"crystallisation-summary\">Crystallisation summary</h3>\n<p><code>accountId</code> string <strong>- Required</strong></p>\n<p>The uncrystallised account that was used for the benefit crystallisation instruction</p>\n<hr />\n<p><code>advised</code> boolean <strong>- Required</strong></p>\n<p>Whether regulated advice was given for the benefit application - must be true</p>\n<hr />\n<p><code>fcaIndividualReference</code> string <strong>- Required</strong></p>\n<p>The FCA individual reference number for the benefit application</p>\n<hr />\n<p><code>benefitsTakenBefore2006</code> boolean <strong>- Required</strong></p>\n<p>Whether the client has taken benefits from their pension before the 6th April 2006</p>\n<hr />\n<p><code>protectedRetirementAgeOrLumpSum</code> boolean - <strong>Required</strong></p>\n<p>Whether the client has a protected early retirement age or scheme-specific tax-free lump sum protection</p>\n<hr />\n<p><code>accountDetails</code> objects <strong>- Required for FAD only</strong></p>\n<p>Initial details provided about the crystallisation account for FAD. Will contain either</p>\n<hr />\n<p><code>accountDetails.name</code> string <strong>- Required</strong><br />if a new account was to be created</p>\n<p>or</p>\n<p><code>accountDetails.id</code> string <strong>- Required</strong><br />if an existing account was to be used</p>\n<hr />\n<h3 id=\"crystallisation-details\">Crystallisation details</h3>\n<p><code>crystallisationDetails</code> object <strong>- Required</strong><br />The details of the crystallisation that was performed</p>\n<hr />\n<p><code>crystallisationDetails.type</code> string <strong>- Required</strong></p>\n<p>Describes the pension access option</p>\n<hr />\n<p><code>crystallisationDetails.frequency</code> string <strong>- Required</strong></p>\n<p>Describes the cadence of the crystallisation for regular please provide <code>Regular</code></p>\n<hr />\n<p><code>crystallisationDetails.day</code> number <strong>- Required</strong></p>\n<p>Dictates the day of the crystallisation each month (validation for this being &lt; 28)</p>\n<hr />\n<p><code>crystallisationDetails.amount</code> number <strong>- Required</strong></p>\n<p>Dictates the gross amount being crystallised</p>\n<hr />\n<p><code>crystallisationDetails.expiryDate</code> string</p>\n<p>Dictates the date of the last crystallisation in the series. Crystallisations will be processed up to but not including this date.</p>\n<hr />\n<h3 id=\"firm-metadata\">Firm metadata</h3>\n<p><code>firmId</code> string <strong>- Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>guidance</code> boolean <strong>- Required</strong></p>\n<p>Whether the client received guidance from Pension Wise</p>\n<hr />\n<h3 id=\"withdrawal-details\">Withdrawal details</h3>\n<p><code>withdrawalDetails</code> array <strong>- Required for FAD only</strong><br />The details of the any associated withdrawals for the instruction for FAD. It can contain an array of the following fields</p>\n<hr />\n<p><code>withdrawalDetails.transactionType</code> string <strong>- Required for FAD only</strong><br />The type of transaction, usually Payment</p>\n<hr />\n<p><code>withdrawalDetails.transactionSubType</code> string <strong>- Required for FAD only</strong><br />The sun type of transaction, which will be PCLS or FAD</p>\n<hr />\n<p><code>withdrawalDetails.method</code> string <strong>- Required for FAD only</strong><br />The type of payment method</p>\n<hr />\n<p><code>withdrawalDetails.movementType</code> string <strong>- Required for FAD only</strong><br />The movement type, which will be Out</p>\n<hr />\n<p><code>withdrawalDetails.frequency</code> string <strong>- Required for FAD only</strong><br />This will be Single (a single withdrawal every month)</p>\n<hr />\n<p><code>withdrawalDetails.amount</code> number <strong>- Required for FAD only</strong><br />The amount of a PCLS payment</p>\n<hr />\n<p><code>withdrawalDetails.grossAmount</code> number <strong>- Required for FAD only</strong><br />The gross amount requested for a FAD payment</p>\n","_postman_id":"c2746f73-fbf4-4582-8f61-df7139d0e5e8"},{"name":"Cancellation","item":[{"name":"Cancellation","id":"e791a30f-8792-42e7-8c1f-f9b5ace4053e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"status\": \"Cancelled\",\n    \"updateId\": \"{{bcirUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/clientproduct/action/regularcrystallisation/{{pfolioUserFirmId}}/{{bciId}}","urlObject":{"path":["clientproduct","action","regularcrystallisation","{{pfolioUserFirmId}}","{{bciId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e791a30f-8792-42e7-8c1f-f9b5ace4053e"}],"id":"4846e889-590b-49c8-b02b-02339e3066c9","description":"<p>To cancel a regular crystallisation series <code>PATCH</code> with the status cancelled</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"status\": \"Cancelled\",\n    \"updateId\": \"{{bcirUpdateId}}\"\n}\n\n</code></pre>\n<h2 id=\"attributes\">Attributes</h2>\n<p><code>status</code> string <strong>- Required</strong></p>\n<p>The status of the regular crystallisation, patch to <code>Cancelled</code> in order to cancel the regular crystallisation sereis</p>\n<hr />\n<p><code>updateId</code> string <strong>- Required</strong></p>\n<p>Unique update ID</p>\n","_postman_id":"4846e889-590b-49c8-b02b-02339e3066c9"}],"id":"eb9f7415-2fd3-48a7-a496-8f559e25dc26","description":"<p>There are potentially considerable tax, income stream, and investment strategy advantages in drip feeding your pension benefits through a series of crystallisations rather than crystallising your whole pot in one go.</p>\n<p>This can be done on an ad-hoc basis, whereby benefit crystallisations are carried out as and when required by the end client (we already support this)</p>\n<p><strong>OR</strong> it can be done by a series of identical crystallisations over a prolonged period of time - <strong>Regular crystallisations</strong> - which is the scope of this piece of work:</p>\n<ul>\n<li>Removes human error from ad-hoc crystallisations</li>\n<li>Removes manual burden on advisers having to conduct ad-hoc crystallisations</li>\n<li>End investors gains tax, income, and investment advantages</li>\n</ul>\n","_postman_id":"eb9f7415-2fd3-48a7-a496-8f559e25dc26"}],"id":"d7a766ef-1de3-4a98-bc87-1928aa6ec8e8","description":"<p>Drawdown describes the process of using your pension pot to provide income for retirement.</p>\n<p>This income can be taken in various ways, depending on your situation.</p>\n<p>This drawdown flow is for advised offerings only.</p>\n<p>Seccl administer tax reclaims, payroll systems and the instruction of tax and withdrawal amounts for your clients.</p>\n<p><strong>Income types offered by Seccl:</strong></p>\n<p>* Pension Commencement Lump Sum (PCLS) - this enables you to take a portion of your pension without paying any tax up to 25%.<br />* Flexi-Access Drawdown (FAD) - this is income from your pension that doesn’t have a tax free portion.</p>\n<p>* Uncrystallised Funds Pension Lump Sum (UFPLS) - this enables you to take a lump sum of your pension without paying any tax up to 25% and without creating a drawdown account.</p>\n<p>This section will show you how your client can draw an income from their Seccl pension.</p>\n<p><strong>Pre-requisites</strong></p>\n<p>* The client must have an existing accumulation pension with Seccl.<br />* The client must be aged 55 or older.</p>\n","_postman_id":"d7a766ef-1de3-4a98-bc87-1928aa6ec8e8"},{"name":"Produce SMPI","item":[{"name":"SMPI","id":"3f9ae54f-1562-433a-8bd5-f2f120e23e17","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"type\": \"SMPI\",\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"clientProductId\": \"{{clientProductId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"valuationDate\": \"2024-05-01\",\n    \"valuationData\": [\n        {\n            \"accountId\": \"{{account1Id}}\",\n            \"startValuation\": 1234.56\n        },\n        {\n            \"accountId\": \"{{account2Id}}\",\n            \"startValuation\": 3456.78\n        }\n    ],\n    \"retirementAge\": 67,\n    \"retirementDate\": \"2042-03-24\",\n    \"otherPlatformHoldings\": 456.78\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/illustration/smpi","urlObject":{"path":["illustration","smpi"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f9ae54f-1562-433a-8bd5-f2f120e23e17"},{"name":"Retrieve calculated SMPI","id":"67883122-84d8-4062-bc90-300998943efd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{pfolioApiRoute}}/illustration/{{pfolioUserFirmId}}?id={{illustrationId}}","urlObject":{"path":["illustration","{{pfolioUserFirmId}}"],"host":["{{pfolioApiRoute}}"],"query":[{"key":"id","value":"{{illustrationId}}"}],"variable":[]}},"response":[],"_postman_id":"67883122-84d8-4062-bc90-300998943efd"}],"id":"521276d6-e92d-4ef3-8bd9-4bc007c433b4","description":"<p>Seccl is introducing functionality to produce Statutory Money Purchase Illustrations (SMPI). The output of this will be used in Seccl-produced annual statements for clients in accumulation. You will not need to use this endpoint unless you are producing your own annual statements.</p>\n<p>This will be an illustration projecting fund values to the client's selected retirement age following the methodology laid out by the Financial Reporting Council (FRC) in <a href=\"https://www.frc.org.uk/library/standards-codes-policy/actuarial/actuarial-standard-technical-memorandum-as-tm1/\">AS TM1 - Actuarial Standard Technical Memorandum</a></p>\n<p>The illustration aims to provide a projected value (in real terms) of a client's uncrystallised pension, and also give an estimate of the annual annuity that this could produce (under certain assumptions).</p>\n<p>As the Seccl SIPP supports having multiple uncrystallised accounts, the SMPI tool is designed to project each account separately and aggregate the results at the end to provide the overall position at the client's retirement date.</p>\n<p>The body of the SMPI request will be of the following form:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"type\": \"SMPI\",\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"clientProductId\": \"{{clientProductId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"valuationDate\": \"2024-05-01\",\n    \"valuationData\": [\n        {\n            \"accountId\": \"{{account1Id}}\",\n            \"startValuation\": 1234.56\n        },\n        {\n            \"accountId\": \"{{account2Id}}\",\n            \"startValuation\": 3456.78\n        },\n    ],\n    \"retirementAge\": 67,\n    \"retirementDate\": \"2042-03-24\",\n    \"otherPlatformHoldings\": 456.78\n}\n\n</code></pre>\n<h2 id=\"attributes\">Attributes</h2>\n<p><code>type</code> string <strong>- Required</strong></p>\n<p>The type of illustration to be produced - must be \"SMPI\" for these illustrations</p>\n<hr />\n<p><code>firmId</code> string <strong>- Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>- Required</strong></p>\n<p>The client that the SMPI is for</p>\n<hr />\n<p><code>clientProductId</code> string <strong>- Required</strong></p>\n<p>The clientProductId that the SMPI is for - this must be for a PENSION or TPPENSION wrapperType</p>\n<hr />\n<p><code>nodeId</code> string <strong>- Required</strong></p>\n<p>The nodeId for the client</p>\n<hr />\n<p><code>valuationDate</code> string - <strong>Required</strong></p>\n<p>The date that the SMPI will project from</p>\n<hr />\n<p><code>valuationData</code> array - <strong>Required</strong></p>\n<p>A collection of account details for the illustration consisting of the following:</p>\n<p><code>accountId</code> string - <strong>Required</strong></p>\n<p>A PENSION or TPPENSION account ID</p>\n<p><code>startValuation</code> number - <strong>Required</strong></p>\n<p>The valuation of the associated account as at <code>valuationDate</code></p>\n<hr />\n<p><code>retirementDate</code> string - <strong>Required</strong></p>\n<p>The date when the client expects to retire. This will be the end point of the illustration. This must be in the future.</p>\n<hr />\n<p><code>retirementAge</code> number - <strong>Required</strong></p>\n<p>The client's age at retirementDate.</p>\n<hr />\n<p><code>otherPlatformHoldings</code> number - <strong>Optional</strong></p>\n<p>If provided, this value will be taken into account when detemining platform charges for the illustrated accounts.</p>\n<h2 id=\"output\">Output</h2>\n<p>When you retrieve an SMPI illustration, it will consist of the following:</p>\n<p><code>id</code> string - the ID of the illustration</p>\n<p><code>updateId</code> string - the updateId of the illustration</p>\n<p><code>firmId</code> string - the ID of the firm</p>\n<p><code>request</code> object - an object containing the original request data</p>\n<p><code>assumptions</code> object - an object containing the assumptions used in the illustration. This will include growth rates, annuity factors and inflation rates</p>\n<p><code>calculations</code> array - an array containing period by period calculations for each account throughout the duration of the illustration</p>\n<p><code>outputs</code> object - an object containing the pertinent results of the illustration:</p>\n<p><code>endValue</code> number - the nominal value at the end date</p>\n<p><code>endValueReal</code> number - the inflation adjusted end value to give the value in real terms at valuation date.</p>\n<p><code>annuityValue</code> number - the estimated annual annuity figure provided in real terms at valuation date.</p>\n","_postman_id":"521276d6-e92d-4ef3-8bd9-4bc007c433b4"}],"id":"4e1eb31b-dbfa-44da-bc9a-404d7af0cb64","description":"<p>The Seccl personal pension is operated and administered by Seccl. Its aim is a fully digital, inherently flexible and infinitely scalable pension solution, built using our in-house technology.</p>\n<p>This section shows you how to:</p>\n<ul>\n<li><p>Create a client record, including the data fields required to open a pension.</p>\n</li>\n<li><p>Create a Seccl pension account.</p>\n</li>\n<li><p>Accept the pension terms.</p>\n</li>\n<li><p>Retrieve the pension declaration confirmation.</p>\n</li>\n<li><p>Retrieve the pension cancellation document.</p>\n</li>\n<li><p>Update nominees.</p>\n</li>\n<li><p>Take income.</p>\n</li>\n</ul>\n<p><strong>Creating a client</strong></p>\n<p>When opening a pension for a client, you'll need to collect some additional information. This includes the client's title, retirement age, marital status and employer information.</p>\n<p>There are two ways to create a pension client:</p>\n<ol>\n<li><p>Create a pension client through an illustration – creates an illustration PDF and a skeletal client record with a status of <code>Registered</code></p>\n</li>\n<li><p>Create a pension client – creates a full client record with a status of <code>Active</code></p>\n</li>\n</ol>\n<p><strong>Creating a payment contribution</strong></p>\n<p>When contributing to a pension, the client needs to specify whether the payment is a personal contribution or an employer contribution.</p>\n<p><strong>Regulatory documents</strong></p>\n<p>There are some additional regulatory documents related to the client's pension that are made available via the Seccl API. These include:</p>\n<p>* Pension cancellation letter<br />* P60<br />* Payslip</p>\n<p>SIPPs are available for the following client types</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Available to</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individuals</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4e1eb31b-dbfa-44da-bc9a-404d7af0cb64"},{"name":"Third-party products","item":[{"name":"Retrieve the third-party product","id":"5e74629f-a16a-4f94-9e67-6bf9541ba1ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/schemeProduct/{{firmId}}/","description":"<p>Accounts in your firm can be obtained from the API.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data Type</th>\n<th>Mandatory</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>The firm Id we have created for you. It is used to segregate your data in a different database to other users of the service</td>\n</tr>\n<tr>\n<td><code>accountId</code></td>\n<td>String</td>\n<td>Yes</td>\n<td>The Seccl Id of the account</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\"><strong>Response data</strong></h4>\n<p>This returns the following data</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>The Seccl Id of the account. This should be used on any subsequent data where it is required</td>\n</tr>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. It is used to segregate your data in a different database to other users of the service</td>\n</tr>\n<tr>\n<td><code>nodeId</code></td>\n<td>The array of node Ids the account is linked to</td>\n</tr>\n<tr>\n<td><code>accountType</code></td>\n<td>The type of account. Use the value <code>Wrapper</code> here.</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>The name of this account</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>Status of the client, can be <code>Active</code>, <code>Suspended</code> or <code>Pending</code></td>\n</tr>\n<tr>\n<td><code>adviserCharge</code></td>\n<td>This is where you apply an ongoing adviser charge percentage to be charged against the account</td>\n</tr>\n<tr>\n<td><code>discretionaryManagementCharge</code></td>\n<td>This is where you apply an ongoing Discretionary Fund Manager charge percentage to be charged against the account</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>The currency of the account</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The Seccl Id of the client that the account belongs to</td>\n</tr>\n<tr>\n<td><code>wrapperDetail</code></td>\n<td>The wrapper details of the account</td>\n</tr>\n<tr>\n<td></td>\n<td><code>wrapperType</code> - The product type of the wrapper account for instance <code>GIA</code> or <code>ISA</code></td>\n</tr>\n<tr>\n<td></td>\n<td><code>assetAllocationId</code> - The model linked to the account</td>\n</tr>\n<tr>\n<td></td>\n<td><code>assetAllocationName</code> - The name of the model linked to the account</td>\n</tr>\n<tr>\n<td></td>\n<td><code>discretionary</code> - The account is being managed by a Discretionary Fund Manager</td>\n</tr>\n<tr>\n<td><code>recurringPayment</code></td>\n<td>Details of a recurring payment set up for this account</td>\n</tr>\n<tr>\n<td></td>\n<td><code>movementType</code> - Direction of the payment, either <code>In</code> or <code>Out</code></td>\n</tr>\n<tr>\n<td></td>\n<td><code>amount</code> - The recurring payment amount</td>\n</tr>\n<tr>\n<td></td>\n<td><code>paymentDay</code> - The day of the month the payment is taken</td>\n</tr>\n<tr>\n<td></td>\n<td><code>method</code> - The method of payment. This can be <code>Direct Debit</code> or <code>Bank Transfer</code></td>\n</tr>\n<tr>\n<td><code>recurringOrders</code></td>\n<td>The recurring order details associated to the account</td>\n</tr>\n<tr>\n<td></td>\n<td><code>movementType</code> - Set to <code>Invest</code></td>\n</tr>\n<tr>\n<td></td>\n<td><code>investmentType</code> - Can be <code>Bespoke</code> or <code>Asset Allocation</code></td>\n</tr>\n<tr>\n<td></td>\n<td><code>orderDay</code> - The day of the month the orders are created</td>\n</tr>\n<tr>\n<td></td>\n<td><code>details</code> - Array of data showing which instruments the investments will be made into. Includes <code>AssetId</code> and <code>Amount</code> or <code>Percentage</code></td>\n</tr>\n<tr>\n<td><code>nodeName</code></td>\n<td>The name of the nodes the account belongs to</td>\n</tr>\n<tr>\n<td><code>clientName</code></td>\n<td>The name of the client at the time of account creation</td>\n</tr>\n<tr>\n<td><code>updateId</code></td>\n<td>An Id assigned to the record when it was last updated. This value should be sent with any update requests to the record</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["schemeProduct","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"wrapperType","value":"<wrapperType>"},{"disabled":true,"key":"availableToNodeId","value":""},{"disabled":true,"key":"schemeName","value":""},{"disabled":true,"key":"productName","value":""}],"variable":[]}},"response":[],"_postman_id":"5e74629f-a16a-4f94-9e67-6bf9541ba1ec"},{"name":"Create a third-party pension account","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"cccf0be8-96a3-46c5-bfd9-927fccd315d0"}}],"id":"83994197-0bd0-480c-bb21-55af074eea63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"name\": \"{{accountName}}\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\",\n        \"trust\": true,\n        \"schemeProductId\": \"{{schemeProductId}}\",\n        \"externalId\": \"ABC123456\",\n        \"externalIds\": [{\n            \"idType\": \"ExternalIdType\",\n            \"value\": \"01ABC\"\n        }]\n    },\n    \"decisionMakerLei\": \"{{schemeLEI}}\",\n    \"bankDetails\": {\n        \"sortCode\": \"123123\",\n        \"accountNumber\": \"12321312\"\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates an investment account</p>\n<p>Returns the new <code>accountId</code></p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique node identifier that the client recode is attached</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>The ISO currency of the account – this should be set to <code>GBP</code></p>\n<p><code>accountType</code> string <strong>Required</strong></p>\n<p>The type of account – this should be set to <code>Wrapper</code></p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client record</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong></p>\n<p>The status of the account – this should be set to <code>Active</code></p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong></p>\n<p>Contains details of the wrapper</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong></p>\n<p>The type of wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third Party Pension</td>\n</tr>\n<tr>\n<td><code>SSAS</code></td>\n<td>Small Self Administered Scheme</td>\n</tr>\n<tr>\n<td><code>TPOFFBOND</code></td>\n<td>Third Party Offshore Bond</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates whether the wrapper is a trust</p>\n<hr />\n<p><code>wrapperDetail.schemeProductId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the scheme product provider</p>\n<hr />\n<p><code>wrapperDetail.externalId</code> string <strong>Required</strong></p>\n<p>The account reference number of the scheme product provider</p>\n<hr />\n<p><code>decisionMakerLei</code> string</p>\n<p>The LEI of the wrapper – this is mandatory for any product where the investment decision maker is not the client</p>\n<hr />\n<p><code>bankDetails</code> array</p>\n<p>Contains the bank details of the scheme product provider – if set, withdrawals instructed on this investment account will be sent to these bank details (NOT those held on the client record)</p>\n<hr />\n<p><code>bankDetails.sortCode</code> numerical string</p>\n<p>The sort code of the scheme product provider</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string</p>\n<p>The account number of the scheme product provider</p>\n<hr />\n<p><code>wrapperDetail.externalIds</code> array</p>\n<p>Enabled only for Third Party Pension accounts and contains a list of objects with custom external IDs</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83994197-0bd0-480c-bb21-55af074eea63"}],"id":"fd192f75-6d53-42dc-8a46-bfe30407d745","description":"<p>Seccl has the ability to hold third party products on the platform. These describe wrappers whereby the administration is carried out by another provider; Seccl provides trading &amp; custody services only in regards to these accounts.</p>\n<p>This functionality allows clients and users to:</p>\n<p>* Consolidate the platform serviceable assets held in third party products onto the platform<br />* Link the third party product's bank account – any cash contributions or withdrawals are processed to these bank details<br />* Store a Legal Entity Identifier (LEI) on the account – this is used for regulatory transaction reporting</p>\n<p><strong>Please note: Withdrawals instructed on investment accounts that have bank details set are sent to those bank details, not the bank details held on the client account</strong></p>\n<p>We support the following third party administered wrappers (<code>wrapperType</code>)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third Party Pension</td>\n</tr>\n<tr>\n<td><code>SSAS</code></td>\n<td>Small Self Administered Scheme</td>\n</tr>\n<tr>\n<td><code>TPOFFBOND</code></td>\n<td>Third Party Offshore Bond</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p>This sections shows you how to:</p>\n<p>*   Retrieve the <code>schemeProductId</code> of the relevant product\n*   Create an investment account</p>\n","_postman_id":"fd192f75-6d53-42dc-8a46-bfe30407d745"},{"name":"List and retrieve investment accounts","item":[{"name":"Retrieve individual account","event":[{"listen":"test","script":{"exec":["let json = pm.response.json()","pm.environment.set('accountUpdateId', json.data.updateId);","pm.environment.set('clientProductId', json.data.wrapperDetail.clientProductId);",""],"type":"text/javascript","id":"7cba2d2a-11a8-4ee0-bdb2-5a8cceb78464"}}],"id":"437d80fe-c374-4ff9-aafa-ed71617e20c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object of the specified <code>accountId</code></p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"437d80fe-c374-4ff9-aafa-ed71617e20c8"},{"name":"Retrieve investment accounts linked to a client","event":[{"listen":"test","script":{"id":"7cba2d2a-11a8-4ee0-bdb2-5a8cceb78464","exec":["let json = pm.response.json()","pm.environment.set('accountUpdateId', json.data.updateId);","pm.environment.set('clientProductId', json.data.wrapperDetail.clientProductId);",""],"type":"text/javascript"}}],"id":"53d3450b-fbed-468a-abec-92128caa1874","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/?clientId={{clientId}}","description":"<p>Returns all account records for the client using the <code>clientId</code></p>\n","urlObject":{"path":["account","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The unique identifier for the client whose accounts you would like to retrieve</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"}],"variable":[]}},"response":[{"id":"1a489bd4-d160-4161-85d0-470150233875","name":"Retrieve investment accounts linked to a client","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/account/{{firmId}}/?clientId=02F1GB3","host":["{{apiRoute}}"],"path":["account","{{firmId}}",""],"query":[{"key":"clientId","value":"02F1GB3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2295"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 08 Aug 2023 09:45:12 GMT"},{"key":"x-amzn-RequestId","value":"c0cd573c-5095-4a43-b416-384e6480d462"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2295"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"JVc6ZGfAjoEFg-w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"8f7-48ypdZrnKlj89WLepRgtlEVKn6I\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-64d20ea8-2f9b5c75010e611e441ff097;Sampled=0;lineage=2ce6d6c0:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 24229fe929b9c0092a29456773fdd6e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN51-P1"},{"key":"X-Amz-Cf-Id","value":"_Xzw_o6VHdaXLhZWv7g4EEGj7JHH9KBzkvU6b4KtNu0-U-lKZCLY8A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"02BF4H3\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"1\",\n            \"accountType\": \"Wrapper\",\n            \"name\": \"Fred's car savings\",\n            \"status\": \"Active\",\n            \"currency\": \"GBP\",\n            \"clientId\": \"02F1GB3\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"ISA\",\n                \"discretionary\": true,\n                \"clientProductId\": \"63e4e371dd89ce7006bf002c\",\n                \"assetAllocationId\": \"04DGH\",\n                \"assetAllocationName\": \"8-FEB\"\n            },\n            \"clientName\": \"Wilma Flinstone\",\n            \"clientNationalInsuranceNo\": \"PC955833D\",\n            \"updateId\": \"63e4e37117c0dfeae4140fab\",\n            \"updateHistory\": [\n                {\n                    \"updateId\": 1,\n                    \"updateDate\": \"2023-02-09T12:13:36.637Z\",\n                    \"updateData\": {\n                        \"fromData\": {\n                            \"wrapperDetail\": {\n                                \"wrapperType\": \"ISA\",\n                                \"discretionary\": false,\n                                \"clientProductId\": \"63904809de972ae481a0160f\"\n                            }\n                        },\n                        \"toData\": {\n                            \"wrapperDetail\": {\n                                \"wrapperType\": \"ISA\",\n                                \"discretionary\": true,\n                                \"clientProductId\": \"63e4e371dd89ce7006bf002c\",\n                                \"assetAllocationId\": \"04DGH\"\n                            }\n                        }\n                    },\n                    \"updatedFields\": [\n                        \"wrapperDetail.discretionary\",\n                        \"wrapperDetail.assetAllocationId\"\n                    ]\n                }\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2023-02-09T12:13:37.810Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B844\",\n                \"version\": 2,\n                \"application\": \"PfolioAPI\"\n            }\n        },\n        {\n            \"id\": \"02C73J7\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"1\",\n            \"name\": \"Future savings\",\n            \"currency\": \"GBP\",\n            \"accountType\": \"Wrapper\",\n            \"clientId\": \"02F1GB3\",\n            \"status\": \"Active\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"GIA\",\n                \"clientProductId\": \"63aead45de972ae4811d635a\"\n            },\n            \"clientName\": \"Wilma Flinstone\",\n            \"updateId\": \"64bfbf52b36a6bc4b1d6cb31\",\n            \"recurringOrders\": {\n                \"movementType\": \"Invest\",\n                \"investmentType\": \"Bespoke\",\n                \"details\": [\n                    {\n                        \"assetId\": \"27426\",\n                        \"percentage\": 0.4,\n                        \"assetName\": \"VANGUARD LIFESTRATEGY 20% EQUI ACC\",\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"284JP\",\n                        \"percentage\": 0.6,\n                        \"assetName\": \"SAINSBURY (J) PLC\",\n                        \"currency\": \"GBP\"\n                    }\n                ],\n                \"orderDay\": 1\n            },\n            \"updateHistory\": [\n                {\n                    \"updateId\": 1,\n                    \"updateDate\": \"2023-07-25T12:25:53.921Z\",\n                    \"updateData\": {\n                        \"toData\": {\n                            \"recurringOrders\": {\n                                \"movementType\": \"Invest\",\n                                \"investmentType\": \"Bespoke\",\n                                \"details\": [\n                                    {\n                                        \"assetId\": \"27426\",\n                                        \"percentage\": 0.4,\n                                        \"assetName\": \"VANGUARD LIFESTRATEGY 20% EQUI ACC\",\n                                        \"currency\": \"GBP\"\n                                    },\n                                    {\n                                        \"assetId\": \"284JP\",\n                                        \"percentage\": 0.6,\n                                        \"assetName\": \"SAINSBURY (J) PLC\",\n                                        \"currency\": \"GBP\"\n                                    }\n                                ],\n                                \"orderDay\": 1\n                            }\n                        }\n                    },\n                    \"updatedFields\": [\n                        \"recurringOrders.movementType\",\n                        \"recurringOrders.investmentType\",\n                        \"recurringOrders.details[0]\",\n                        \"recurringOrders.details[1]\",\n                        \"recurringOrders.orderDay\"\n                    ]\n                }\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2023-07-25T12:25:54.112Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B844\",\n                \"version\": 2,\n                \"application\": \"PfolioAPI\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"53d3450b-fbed-468a-abec-92128caa1874"},{"name":"Retrieve investment account by externalReference","event":[{"listen":"test","script":{"id":"7cba2d2a-11a8-4ee0-bdb2-5a8cceb78464","exec":["let json = pm.response.json()","pm.environment.set('accountUpdateId', json.data.updateId);","pm.environment.set('clientProductId', json.data.wrapperDetail.clientProductId);",""],"type":"text/javascript","packages":{}}}],"id":"66245fe7-cb72-452e-b5d6-94e2b023c770","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/?externalReference={{externalReference}}","description":"<p>Returns all account records for the client using the <code>externalReference</code></p>\n","urlObject":{"path":["account","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>Your reference for the account</p>\n","type":"text/plain"},"key":"externalReference","value":"{{externalReference}}"}],"variable":[]}},"response":[{"id":"02e2d1a7-5917-444f-bb25-2b88996bde6e","name":"Retrieve investment account by externalReference","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/account/{{firmId}}/?clientId=02F1GB3","host":["{{apiRoute}}"],"path":["account","{{firmId}}",""],"query":[{"key":"clientId","value":"02F1GB3"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2295"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 08 Aug 2023 09:45:12 GMT"},{"key":"x-amzn-RequestId","value":"c0cd573c-5095-4a43-b416-384e6480d462"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2295"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"JVc6ZGfAjoEFg-w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"8f7-48ypdZrnKlj89WLepRgtlEVKn6I\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-64d20ea8-2f9b5c75010e611e441ff097;Sampled=0;lineage=2ce6d6c0:0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 24229fe929b9c0092a29456773fdd6e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN51-P1"},{"key":"X-Amz-Cf-Id","value":"_Xzw_o6VHdaXLhZWv7g4EEGj7JHH9KBzkvU6b4KtNu0-U-lKZCLY8A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"02BF4H3\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"1\",\n            \"accountType\": \"Wrapper\",\n            \"name\": \"Fred's car savings\",\n            \"status\": \"Active\",\n            \"currency\": \"GBP\",\n            \"clientId\": \"02F1GB3\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"ISA\",\n                \"discretionary\": true,\n                \"clientProductId\": \"63e4e371dd89ce7006bf002c\",\n                \"assetAllocationId\": \"04DGH\",\n                \"assetAllocationName\": \"8-FEB\"\n            },\n            \"clientName\": \"Wilma Flinstone\",\n            \"clientNationalInsuranceNo\": \"PC955833D\",\n            \"updateId\": \"63e4e37117c0dfeae4140fab\",\n            \"updateHistory\": [\n                {\n                    \"updateId\": 1,\n                    \"updateDate\": \"2023-02-09T12:13:36.637Z\",\n                    \"updateData\": {\n                        \"fromData\": {\n                            \"wrapperDetail\": {\n                                \"wrapperType\": \"ISA\",\n                                \"discretionary\": false,\n                                \"clientProductId\": \"63904809de972ae481a0160f\"\n                            }\n                        },\n                        \"toData\": {\n                            \"wrapperDetail\": {\n                                \"wrapperType\": \"ISA\",\n                                \"discretionary\": true,\n                                \"clientProductId\": \"63e4e371dd89ce7006bf002c\",\n                                \"assetAllocationId\": \"04DGH\"\n                            }\n                        }\n                    },\n                    \"updatedFields\": [\n                        \"wrapperDetail.discretionary\",\n                        \"wrapperDetail.assetAllocationId\"\n                    ]\n                }\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2023-02-09T12:13:37.810Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B844\",\n                \"version\": 2,\n                \"application\": \"PfolioAPI\"\n            }\n        },\n        {\n            \"id\": \"02C73J7\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"1\",\n            \"name\": \"Future savings\",\n            \"currency\": \"GBP\",\n            \"accountType\": \"Wrapper\",\n            \"clientId\": \"02F1GB3\",\n            \"status\": \"Active\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"GIA\",\n                \"clientProductId\": \"63aead45de972ae4811d635a\"\n            },\n            \"clientName\": \"Wilma Flinstone\",\n            \"updateId\": \"64bfbf52b36a6bc4b1d6cb31\",\n            \"recurringOrders\": {\n                \"movementType\": \"Invest\",\n                \"investmentType\": \"Bespoke\",\n                \"details\": [\n                    {\n                        \"assetId\": \"27426\",\n                        \"percentage\": 0.4,\n                        \"assetName\": \"VANGUARD LIFESTRATEGY 20% EQUI ACC\",\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"284JP\",\n                        \"percentage\": 0.6,\n                        \"assetName\": \"SAINSBURY (J) PLC\",\n                        \"currency\": \"GBP\"\n                    }\n                ],\n                \"orderDay\": 1\n            },\n            \"updateHistory\": [\n                {\n                    \"updateId\": 1,\n                    \"updateDate\": \"2023-07-25T12:25:53.921Z\",\n                    \"updateData\": {\n                        \"toData\": {\n                            \"recurringOrders\": {\n                                \"movementType\": \"Invest\",\n                                \"investmentType\": \"Bespoke\",\n                                \"details\": [\n                                    {\n                                        \"assetId\": \"27426\",\n                                        \"percentage\": 0.4,\n                                        \"assetName\": \"VANGUARD LIFESTRATEGY 20% EQUI ACC\",\n                                        \"currency\": \"GBP\"\n                                    },\n                                    {\n                                        \"assetId\": \"284JP\",\n                                        \"percentage\": 0.6,\n                                        \"assetName\": \"SAINSBURY (J) PLC\",\n                                        \"currency\": \"GBP\"\n                                    }\n                                ],\n                                \"orderDay\": 1\n                            }\n                        }\n                    },\n                    \"updatedFields\": [\n                        \"recurringOrders.movementType\",\n                        \"recurringOrders.investmentType\",\n                        \"recurringOrders.details[0]\",\n                        \"recurringOrders.details[1]\",\n                        \"recurringOrders.orderDay\"\n                    ]\n                }\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2023-07-25T12:25:54.112Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B844\",\n                \"version\": 2,\n                \"application\": \"PfolioAPI\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"66245fe7-cb72-452e-b5d6-94e2b023c770"},{"name":"List investment accounts","event":[{"listen":"test","script":{"id":"9caa3c7b-5be6-49f3-bf6f-61c8fbf8b306","exec":["let json = pm.response.json()","pm.environment.set('accountUpdateId', json.data.updateId);","pm.environment.set('clientProductId', json.data.wrapperDetail.clientProductId);",""],"type":"text/javascript"}}],"id":"99669b99-cfd9-48ac-be6a-6dfcb7abc85d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/list/{{firmId}}?pageSize=100&page=1","description":"<p>Returns a list of account summaries for all accounts within the firm. This includes current values, positions, book values, etc.</p>\n","urlObject":{"path":["account","list","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"wrapperType","value":"ISA"},{"disabled":true,"key":"modelId","value":"0243D"},{"disabled":true,"key":"nodeId","value":"3"},{"disabled":true,"key":"accountName","value":"GIA"},{"key":"pageSize","value":"100"},{"key":"page","value":"1"}],"variable":[]}},"response":[],"_postman_id":"99669b99-cfd9-48ac-be6a-6dfcb7abc85d"},{"name":"Retrieve client product","id":"e9303f2c-447c-4619-80a5-6f9b9aeb9a61","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","description":"<p>Returns the clientproduct object of the specified <code>clientproductId</code></p>\n","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e9303f2c-447c-4619-80a5-6f9b9aeb9a61"}],"id":"26c96e23-6b20-45fa-a49a-328a2d47bd30","description":"<p>This section will show you how to retrieve individual accounts, and list investment accounts with the same properties – for instance, all JISA accounts or all SIPPs.</p>\n","_postman_id":"26c96e23-6b20-45fa-a49a-328a2d47bd30"},{"name":"Update an investment account","item":[{"name":"Retrieve individual account","event":[{"listen":"test","script":{"exec":["let json = pm.response.json()","pm.environment.set('accountUpdateId', json.data.updateId);","pm.environment.set('clientProductId', json.data.wrapperDetail.clientProductId);",""],"type":"text/javascript","id":"5b62fa74-3e0c-4e4c-9e30-7fd78be4a151"}}],"id":"20cd4047-c2ce-4f4a-ae2e-85b6a41fa1b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object</p>\n<p>This step is required to retrieve the <code>updateId</code> to allow you to make an update to the record</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"20cd4047-c2ce-4f4a-ae2e-85b6a41fa1b4"},{"name":"Update an investment account","id":"aee534e3-3feb-45a2-b760-6197aedffe0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n \t\"updateId\": \"{{updateId}}\",\n    \"name\": \"New account name\",\n    \"recurringPayment\": {\n        \"paymentDay\": 5,\n        \"amount\": 999\n    }\n }"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Updates the account object with the provided fields</p>\n<p>Multiple fields can be updated at once</p>\n<p><strong>Please note: If the field to be updated is an array, the whole array is overwritten. Existing fields must be sent with the update if you wish them to remain.</strong></p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>updateId</code> String <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d4ddc733-1997-456d-be0c-a0b6f00a44f7","name":"Update an investment account: Update client","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" { \n \t\"updateId\": \"{{updateId}}\",\n        \"name\": \"New account name\",\n        \"recurringPayment\": {\n            \"paymentDay\": 5,\n            \"amount\": 999\n        },\n        \"externalReference\": \"newExternalReference567\"\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/<accountId>"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"aee534e3-3feb-45a2-b760-6197aedffe0d"},{"name":"Update the status of an account","id":"08959d60-6df5-424d-9c5a-35114e516fdf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendStatus\",\n    \"updateReason\": \"Voided ISA\",\n    \"updateData\": {\n        \"status\": \"Suspended\"\n    }\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Updates the status of the account to <code>Suspended</code> or <code>Active</code></p>\n<p>Any attempts to instruct a transaction on a <code>Suspended</code> investment account will fall to exceptions and will not be processed</p>\n<p>This functionality could be used where a wrapper is voided, cancelled, or closed</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>updateAction</code> string <strong>Required</strong></p>\n<p>The update type – set to <code>AmendStatus</code></p>\n<hr />\n<p><code>updateReason</code> string <strong>Required</strong></p>\n<p>Free format narrative for the reason the update is made</p>\n<hr />\n<p><code>updateData</code> array <strong>Required</strong></p>\n<p>Contains details of the update to be made</p>\n<hr />\n<p><code>updateData.status</code> array <strong>Required</strong></p>\n<p>The status that the account should be updated to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>Account ready to process transactions</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>Account not ready to process transactions</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"08959d60-6df5-424d-9c5a-35114e516fdf"}],"id":"ca99ea7e-e76c-43a0-9f27-f89dd58efc19","description":"<p>There are many reasons why you might need to update a client's investment account. This might include:</p>\n<p>*   Switching the investment strategy\n*   Updating the adviser charge\n*   Adding a recurring payment\n*   Editing the account name</p>\n<p>To update an investment account, you can follow the below steps:</p>\n<ol>\n<li>Retrieve the <code>updateId</code> from the account object</li>\n<li>Instruct a <code>PATCH</code> request with the fields to be updated and the account <code>updateId</code></li>\n</ol>\n<p>An audit trail of updates made to the account record can be viewed in the <code>updateHistory</code> array</p>\n","_postman_id":"ca99ea7e-e76c-43a0-9f27-f89dd58efc19"}],"id":"c62db7db-606d-402a-81e2-24bf7e16fc4c","description":"<p>An investment account holds cash and assets that your client can buy and sell.</p>\n<p>In Seccl's system, these operate as sub-pots. This means you can have multiple investment strategies within a single wrapper. For example:</p>\n<ul>\n<li><p>ISA account 1 – cautious model</p>\n</li>\n<li><p>ISA account 2 – adventurous model</p>\n</li>\n</ul>\n<p>Seccl offers the following tax wrappers:</p>\n<ul>\n<li><p>General Investment Account (GIA) available to individuals, corporations and trusts</p>\n</li>\n<li><p>Individual Savings Account (ISA)</p>\n</li>\n<li><p>Junior Individual Savings Account (JISA)</p>\n</li>\n<li><p>Self Invested Personal Pension (SIPP)</p>\n</li>\n<li><p>Third-party products such as SSAS, SIPP, and Offshore Bonds</p>\n</li>\n</ul>\n<p>This sections shows you how to open an investment account for the specified wrapper, as well as some of the additional flows required when operating a GIA, ISA, JISA, and pension.</p>\n<hr />\n<h4 id=\"account-statuses\">Account statuses</h4>\n<p>Accounts also have statuses similar to the client record. This means that an active client can continue trading in any active accounts, whilst opening another account in a status of pending. Each wrapper type has different requirements linked to their regulations, once a 'type' of wrapper is active the client can go on to open additional active accounts within that wrapper type. This is managed in the client product object.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Status</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Pending</td>\n<td>The client has not yet accepted the wrapper specific declaration and/or the client record is not active.  <br />Account actions blocked</td>\n</tr>\n<tr>\n<td>Active</td>\n<td>Client has accepted the wrapper specific declaration and the client record is active.  <br />Account actions available</td>\n</tr>\n<tr>\n<td>Suspended</td>\n<td>Account closed or voided. Transaction instructions blocked.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h4 id=\"the-client-product\">The client product</h4>\n<p>This represents the wrapper information of your client. A client product is automatically created when an investment account within one wrapper type is created for the first time. There is a single client product per wrapper type per client record.</p>\n<p>The client product record stores information related to the product including remaining allowances (such as ISA subscription or Lump Sum Allowance (LSA), date product terms accepted, details on the client's beneficiaries.</p>\n<hr />\n<h4 id=\"endpoints\">Endpoints</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/account\n/clientProduct\n/schemeProduct\n\n</code></pre><hr />\n","_postman_id":"c62db7db-606d-402a-81e2-24bf7e16fc4c"},{"name":"Portfolio transactions","item":[{"name":"List transactions","id":"6ebfc648-91d9-4007-92a6-fc77590f6166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/portfoliotransaction/{{firmId}}","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"query":[{"disabled":true,"key":"page","value":""},{"disabled":true,"key":"pageSize","value":""},{"disabled":true,"key":"transactionType","value":"<transactionType>"},{"disabled":true,"key":"transactionSubType","value":"<transactionSubType>"},{"disabled":true,"key":"externalReference","value":"<externalReference>"},{"disabled":true,"key":"status","value":"Calculating / Checking / Completed / Deleted / Pending / Placed / Rejected / Waiting "},{"disabled":true,"key":"transactionDateFrom","value":"YYYY-MM-DD"},{"disabled":true,"key":"transactionDateTo","value":"YYYY-MM-DD"},{"disabled":true,"key":"movementType","value":"In / Out"}],"variable":[]}},"response":[],"_postman_id":"6ebfc648-91d9-4007-92a6-fc77590f6166"},{"name":"Create transaction with externalReference","event":[{"listen":"test","script":{"id":"c1651ef7-36b4-4de0-8290-e4194b6454fa","exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"transactionGroupId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"a598ab92-1a8b-4ec5-bd7b-3916457bf089","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\",\n            \"externalReference\": \"<externalReference>\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>An <code>externalReference</code> can be provided on each transaction you create via the group. This will persist on each portfolio transaction that is provided with one at creation. This <code>externalReference</code> can be used to search for transactions and will be present on the transactionWebhook if you are subscribed to it.</p>\n<p>The <code>externalReference</code> must conform to a maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a598ab92-1a8b-4ec5-bd7b-3916457bf089"}],"id":"ce95700b-08c2-4fbf-a951-26bc6dd48131","description":"<p>This section outlines how to list portfolio transactions.</p>\n","_postman_id":"ce95700b-08c2-4fbf-a951-26bc6dd48131"},{"name":"Investment strategies","item":[{"name":"The orders portfolioTransaction object","item":[],"id":"31a67bdb-8d9a-4988-b5da-a3420bbf5958","description":"<p>The <code>portfolioTransaction</code> object is used to capture transactions including single or regular payments in, withdrawals, orders and sells on an account.</p>\n<p>Transactions are grouped to perform two actions at once. For example, if a client pays into their account and invests in a fund, this is considered two transactions and returns a singular <code>linkId.</code></p>\n<h2 id=\"creating-transactions\"><strong>Creating transactions</strong></h2>\n<p>The portfolioTransactionGroup endpoint creates a group of <code>portfolioTransactions</code> united by a single <code>linkId</code></p>\n<h3 id=\"validation\">Validation</h3>\n<p>When using the <code>/portfoliotransactiongroup</code> endpoint to submit transaction groups, there are two types of validation error responses you can expect to observe, these are split between:</p>\n<ol>\n<li><p>API response errors</p>\n<ol>\n<li>These are responses directly from the API after you send a request</li>\n</ol>\n</li>\n<li><p>Exception notifications</p>\n<ol>\n<li>Asynchronous handling of errors that cannot be handled by the API response</li>\n</ol>\n</li>\n</ol>\n<h4 id=\"api-response-errors\">API response errors</h4>\n<p>These occur when the API can immediately validate the request. You can expect to find errors related to:</p>\n<ul>\n<li><p>The request format is not valid</p>\n</li>\n<li><p>Cannot find the given accountId</p>\n</li>\n<li><p>There is insufficient cash and/or stock for the instructed transactions</p>\n</li>\n</ul>\n<h4 id=\"exception-notifications\">Exception notifications</h4>\n<p>These occur when the system needs to validate the transactions asynchronously, such as when submitting a group of transactions. This applies whether submitting one or many transactions in a group - the validation of each transaction is processed asynchronously.</p>\n<p>You can find further information on viewing and managing exceptions in the <strong>Platform Management / Notifications</strong> section.</p>\n<p>You can expect to find exceptions related to:</p>\n<ul>\n<li><p>Transaction types not recognised</p>\n</li>\n<li><p>There is insufficient cash when the withdrawal is triggered after some other transactions completing (e.g. linked sell orders)</p>\n</li>\n</ul>\n<h2 id=\"retrieving-transactions\"><strong>Retrieving transactions</strong></h2>\n<p>The portfolioTransaction endpoint is where you can retrieve individual transactions using the <code>transactionId</code> – this could relate to a payment, order, stock transfer, dividend payment, etc.</p>\n<h3 id=\"understanding-transaction-statuses\"><strong>Understanding transaction statuses</strong></h3>\n<p>The portfolioTransactionGroup creates a group of portfolioTransactions with a status of <code>Pending</code> or <code>Waiting</code>. For example, a pay-in and invest group:</p>\n<p>* Payment is created with a status of <code>Pending</code><br />* Linked orders have a status of <code>Waiting</code><br />* When the payment completes, the status moves from <code>Pending</code> to <code>Completed</code><br />* This triggers the the linked orders to switch status from <code>Pending</code> to <code>Completed</code> – and the orders are routed to market</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-plaintext\">Endpoints used\n/ portfoliotransactiongroup\n/ portfoliotransaction\n\n</code></pre>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n            \"id\": \"0000RN1PS\",\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"accountId\": \"{{accountId}}\",\n            \"assetId\": \"24BHJ\",\n            \"currency\": \"GBP\",\n            \"percentage\": 1,\n            \"status\": \"Completed\",\n            \"linkId\": \"0000RN1PR\",\n            \"transactionDate\": \"2022-06-24T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2022-06-28T00:00:00.000Z\",\n            \"assetName\": \"Vanguard LifeStrategy 100% Equity Fund Acc\",\n            \"isin\": \"GB00B41XG308\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Waiting\",\n                    \"statusDate\": \"2022-06-23T11:56:32.136Z\",\n                    \"description\": \"Order request created, waiting for transactions to complete\"\n                },\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2022-06-23T11:59:29.760Z\",\n                    \"description\": \"Linked transactions now completed\"\n                },\n                {\n                    \"status\": \"Completed\",\n                    \"statusDate\": \"2022-06-27T08:04:18.997Z\",\n                    \"description\": \"Order executed\"\n                }\n            ],\n            \"nodeId\": \"1\",\n            \"createdDate\": \"2022-06-23T11:56:32.146Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-27T08:04:18.999Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 3,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b96482f432985766c2a057\",\n            \"amount\": 25,\n            \"tradingFirm\": \"SCUST\",\n            \"completedDate\": \"2022-06-24T00:00:00.000Z\",\n            \"consideration\": 25,\n            \"executedAmount\": 25,\n            \"executedQuantity\": 0.0901,\n            \"executionDetails\": {\n                \"currency\": \"GBP\",\n                \"price\": 277.35,\n                \"transactionTime\": \"21:00:00\",\n                \"venue\": \"XOFF\"\n            }\n        }\n\n</code></pre>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<p><code>firmId</code> string</p>\n<p>The unique identifier if your firm</p>\n<hr />\n<p><code>id</code> string</p>\n<p><code>transactionType</code> string</p>\n<p>The type of transaction – this will be set to <code>Order</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub type of the transaction – this will be set <code>Order</code></p>\n<hr />\n<p><code>movementType</code> string</p>\n<p>The direction of movement – this will be set to <code>Invest</code></p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>amount</code> float - optional</p>\n<p>This indicates the monetary amount to invest.</p>\n<hr />\n<p><code>percentage</code> float - optional</p>\n<p>This indicates the percentage of cash to invest. The scope of the cash depends on if the transaction shares a group with another transaction that has the <code>includeCash</code> attribute.</p>\n<p>If <code>includeCash</code> is in the same group (identified by a <code>linkId</code> attribute), then the <code>percentage</code> refers to all the available cash on the account, at the time the transaction with the <code>percentage</code> attribute moves from <code>status: Waiting -&gt; Pending</code>. If there is no <code>includeCash</code> in the group, the <code>percentage</code> refers to only the cash raised by other transactions in the same group.</p>\n<p>When the transaction moves from <code>status: Waiting -&gt; Pending</code>, the percentage is calculated in to a monetary amount, and an <code>amount</code> attribute will be added to the transaction. This is the actual amount that will be sent in the market instruction.</p>\n<hr />\n<p><code>quantity</code> float - optional</p>\n<p>This indicates the quantity of units to sell (or transfer). This field is currently only in use for Sell orders or Stock Transfers.</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Waiting</code></td>\n<td>Order transaction waiting on another transaction to complete</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Order transaction routed to market</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Order transaction executed</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Order transaction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the portfolio transaction group</p>\n<hr />\n<p><code>transactionDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>intendedSettlementDate</code> numerical string</p>\n<p>The intended settlement date of the order – this is based on settlement period of the asset held in Seccl's system (taking into account weekends and bank holidays)</p>\n<hr />\n<p><code>assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>mic</code> string</p>\n<p>The Market Identifier Code (MIC)</p>\n<hr />\n<p><code>instrumentType</code> string</p>\n<p>The type of asset</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Fund</code></td>\n<td>Mutual fund or OEIC</td>\n</tr>\n<tr>\n<td><code>Investment Trust</code></td>\n<td>Investment Trust</td>\n</tr>\n<tr>\n<td><code>ETF</code></td>\n<td>Exchange Traded Fund</td>\n</tr>\n<tr>\n<td><code>Equity</code></td>\n<td>Direct equity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>statusChanges</code> array</p>\n<p>Contains details of the transaction status changes</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique node identifier of the client record</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the instruction was created</p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Contains audit details of the transaction</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n<p><code>completedDate</code> numerical string</p>\n<p>The date the order executed</p>\n<hr />\n<p><code>consideration</code> float</p>\n<p>The amount (£) raised</p>\n<hr />\n<p><code>executedAmount</code> float</p>\n<p>The amount (£) raised</p>\n<hr />\n<p><code>executedQuantity</code> float</p>\n<p>The number of units purchased</p>\n<hr />\n<p><code>executionDetails</code> array</p>\n<p>Contains details of the executed order</p>\n<hr />\n<p><code>executionDetails.currency</code> string</p>\n<p>The currency that the order executed</p>\n<hr />\n<p><code>executionDetails.price</code> float</p>\n<p>The price the order executed</p>\n<hr />\n<p><code>executionDetails.transactionTime</code> numerical string</p>\n<p>The date and time the order executed</p>\n<hr />\n<p><code>executionDetails.venue</code> string</p>\n<p>The MIC code of the venue where the order executed</p>\n<hr />\n<p><code>autoDisinvestmentMethod</code> enum</p>\n<p>The auto disinvestment method that was used to generate this transaction if it was created by a Portfolio Transaction Group with <code>autoDisinvest</code> or if the account has <code>autoDisinvest</code> configured by default.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Largest</code></td>\n<td>Assets were disinvested, starting with the largest holding by £ monetary value first.</td>\n</tr>\n<tr>\n<td><code>Proportional</code></td>\n<td>Assets were disinvested proportionally across all holdings, by weighting of their £ monetary value.</td>\n</tr>\n<tr>\n<td><code>Full</code></td>\n<td>All assets were disinvested.</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"31a67bdb-8d9a-4988-b5da-a3420bbf5958"},{"name":"Buys","item":[{"name":"Create order from uninvested cash","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"orderId\", data.data.id)"],"type":"text/javascript","id":"cc78e16b-672a-4076-b98b-bf4663031c3f"}}],"id":"9ea023cc-00d9-457c-81e7-b8812760087f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n{\n        \"firmId\": \"{{firmId}}\",\n        \"accountId\": \"{{accountId}}\",\n        \"transactionType\": \"Order\",\n        \"transactionSubType\": \"At Best\",\n        \"movementType\": \"Invest\",\n        \"currency\": \"GBP\",\n        \"amount\": 1000,\n        \"assetId\": \"286Q5\"\n      }]\n\n }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates an order expectation from uninvested cash available on the investment account.</p>\n<p>This returns a <code>linkid</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At Best</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Invest</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9ea023cc-00d9-457c-81e7-b8812760087f"},{"name":"Create payment in and auto-invest","event":[{"listen":"test","script":{"id":"acb7b4fb-3ccc-4ddb-8c7a-6689f7d1c542","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"linkId\", data.data.id)"],"type":"text/javascript"}}],"id":"b9bfca24-e8dc-44ed-97e3-2fc0eafbcc42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 4.55,\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates a payment in from a bank transfer and automatically creates an order expectation for the chosen <code>assetId</code>.</p>\n<p>This returns a <code>linkid</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order  <br />Payment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best  <br />Deposit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"1726a1a7-f17b-4e4c-91ba-93b08b378a1c","name":"Create payment in and auto-invest","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmid}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmid}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 10000,\n            \"method\": \"Bank Transfer\",\n            \"investToModel\": false\n        },\n        {\n            \"firmId\": \"SECCI\",\n            \"accountId\": \"025FGG9\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 0.9,\n            \"currency\": \"GBP\",\n            \"assetId\": \"27426\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\"data\":{\"id\":\"00006127J\"}}"}],"_postman_id":"b9bfca24-e8dc-44ed-97e3-2fc0eafbcc42"}],"id":"edc3db51-f321-490c-9c61-472f9aaea8d5","_postman_id":"edc3db51-f321-490c-9c61-472f9aaea8d5","description":""},{"name":"Sells","item":[{"name":"Set up","item":[{"name":"Generate an access token [OAuth]","event":[{"listen":"test","script":{"id":"03dd5e35-c424-4ef4-aaef-0f7855a0b490","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"apiToken\", data.access_token);"],"type":"text/javascript","packages":{}}}],"id":"8f207f74-6c9c-4b1c-9aa8-10b992b58580","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"audience","value":"{{apiRoute}}","type":"text"}]},"url":"{{authRoute}}/oauth/token","urlObject":{"path":["oauth","token"],"host":["{{authRoute}}"],"query":[],"variable":[]}},"response":[{"id":"de1fe747-0142-4685-95de-32af44d955f8","name":"Acquire access token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"{{client_id}}","type":"text"},{"key":"client_secret","value":"{{client_secret}}","type":"text"},{"key":"audience","value":"{{apiRoute}}","type":"text"}],"options":{"raw":{"language":"json"}}},"url":"https://seccl-{{firmId}}-staging.uk.auth0.com/oauth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"###TOKEN###\",\n    \"scope\": \"create:scopes\",\n    \"expires_in\": 7200,\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"8f207f74-6c9c-4b1c-9aa8-10b992b58580"},{"name":"Generate an access token [DEPRECATED]","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"apiToken\", data.data.token);"],"type":"text/javascript","id":"941bc785-f779-48c8-9542-67e3f69161a2"}}],"id":"d1d8aed2-99ed-44fc-b223-763b20db8dcd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{userId}}\",\n    \"password\": \"{{userPassword}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/authenticate","description":"<p>This flow returns an API token that should be used in all subsequent calls to Seccl's API in the <code>Authorization</code> header field.</p>\n<p>API tokens generated by <code>Machine</code> users will expire after two hours of inactivity. API tokens generated by <code>User</code> users expire after ten minutes of inactivity and should only be used for the users accessing Seccl's services via the off-the-shelf user interfaces.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of your user or the email address of your user</p>\n<hr />\n<p><code>password</code> string <strong>Required</strong></p>\n<p>The secret password</p>\n<hr />\n","urlObject":{"path":["authenticate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d066c3b7-77f6-4ec8-aeeb-13a2da05c568","name":"Acquire access token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{ \"firmId\": \"{{firmId}}\", \"id\": \"{{userId}}\", \"password\": \"{{userPassword}}\" }","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"token\": \"<token>\",\n        \"userName\": \"<name>\",\n        \"userType\": \"<User or Machine>\",\n        \"scopes\": [\n            \"Admin\"\n        ],\n        \"services\": [\n            \"Core\",\n            \"Pfolio\"\n        ]\n    }\n}"}],"_postman_id":"d1d8aed2-99ed-44fc-b223-763b20db8dcd"},{"name":"Add a Fund asset","event":[{"listen":"test","script":{"id":"62a4413d-92bf-447b-9a86-5d2725359c71","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"672a9b24-172c-48a5-b40b-110c55dc597b","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"59004b98-c93a-431b-a49d-3546d6f57b95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{rtAssetId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/asset","description":"<p>Now let's add some assets to your platform that we can practice Raise Trading on. We will use a Fund for these use cases, because they trade to many decimal places, and will always work with Raise Trades.</p>\n<p>To add an asset to your asset universe, send a <code>POST</code> request to the <code>/asset</code> endpoint. This makes the asset available to trade.</p>\n","urlObject":{"path":["asset"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59004b98-c93a-431b-a49d-3546d6f57b95"},{"name":"Add another Fund asset","event":[{"listen":"test","script":{"id":"62a4413d-92bf-447b-9a86-5d2725359c71","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"672a9b24-172c-48a5-b40b-110c55dc597b","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"7e4ac765-917e-47bf-a16c-ad2f57264272","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{rtAssetId2}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/asset","description":"<p>And another fund</p>\n","urlObject":{"path":["asset"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e4ac765-917e-47bf-a16c-ad2f57264272"},{"name":"Add an Equity asset","event":[{"listen":"test","script":{"id":"62a4413d-92bf-447b-9a86-5d2725359c71","exec":[""],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"672a9b24-172c-48a5-b40b-110c55dc597b","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"59435b75-573d-403b-8eef-f71eb65ec6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{equityAssetId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/asset","description":"<p>Now let's add an equity that we will use later on, to observe the difference between fund and equity raise trades</p>\n","urlObject":{"path":["asset"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59435b75-573d-403b-8eef-f71eb65ec6cb"},{"name":"Retrieve the asset","event":[{"listen":"test","script":{"id":"af520eb3-f9a1-4211-8f03-5d2e4e003c3d","exec":["var data = pm.response.json()","console.log(data)","pm.globals.set(\"rtAssetPrice\", data.bid)"],"type":"text/javascript","packages":{}}}],"id":"f4a783bd-00aa-48cc-b87b-16e4bc063838","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}/{{rtAssetId}}","description":"<p>This retrieves a single asset object of the specified <code>assetId</code>.</p>\n","urlObject":{"path":["asset","{{firmId}}","{{rtAssetId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"page","value":"1"},{"disabled":true,"key":"pageSize","value":"10"},{"disabled":true,"key":"idOrName","value":"van"},{"disabled":true,"key":"isin","value":"GB00BFBFZ140"},{"disabled":true,"key":"instrumentType","value":"Fund"},{"disabled":true,"key":"currency","value":"GBP"},{"disabled":true,"key":"ticker","value":"H4ZG"}],"variable":[]}},"response":[{"id":"0c8ddd5f-3172-4b57-a3f5-d4dd267eca53","name":"Retrieve single asset in platform universe","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/asset/{{firmId}}/{{assetId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1335"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 20 Jul 2022 16:05:29 GMT"},{"key":"x-amzn-RequestId","value":"4b4fbecd-39e1-4727-b187-14036db7ef8e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1335"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VksnZHc4joEFWsw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"537-FYfyW/fH7bJlZP1ns65Ki5/aBzU\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d827c8-1f2257a04e818b503d42951e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 c499c5bd7a2c5201de6b25f3c79376f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Rd0nxe6si69vteT9wlPQHFwobcWS_Q7JS6dT1xJHF8KFf0b5kFoWTg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"275F1\",\n        \"type\": \"Asset\",\n        \"firmId\": \"SECCI\",\n        \"isin\": \"GB00B3TYHH97\",\n        \"shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n        \"longName\": \"Vanguard Investments UK Ltd LifeStrategy 60% Equity Acc\",\n        \"instrumentType\": \"Fund\",\n        \"currency\": \"GBP\",\n        \"status\": \"Active\",\n        \"primaryMarket\": true,\n        \"quoteUnit\": 1,\n        \"mic\": \"XOFF\",\n        \"mexId\": \"VVLFST\",\n        \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n        \"bid\": 196.2,\n        \"ask\": 196.2,\n        \"mid\": 196.2,\n        \"classifications\": [\n            {\n                \"classificationType\": \"IMA\",\n                \"value\": \"Mixed Investment 40%-85% Shrs\"\n            }\n        ],\n        \"minimumTransferUnit\": 0.0001,\n        \"_longName\": \"VANGUARD INVESTMENTS UK LTD LIFESTRATEGY 60% EQUITY ACC\",\n        \"_shortName\": \"VANGUARD LIFESTRATEGY 60% EQUI ACC\",\n        \"availableToNodeId\": [\n            \"0\"\n        ],\n        \"nodeId\": [\n            \"7\",\n            \"15\",\n            \"12\",\n            \"14\",\n            \"6\",\n            \"3\",\n            \"13\",\n            \"5\",\n            \"1\",\n            \"2\",\n            \"8\",\n            \"10\",\n            \"4\",\n            \"11\",\n            \"9\",\n            \"0\"\n        ],\n        \"settlementPeriod\": 4,\n        \"ocfEstimated\": 0.0025,\n        \"ocfCalculated\": 0.0022,\n        \"kiidDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=dfedca76-5112-400e-a77b-004e6f883d5f&user=0rWRIIaKa%2foLQkQbfmqKsLxfKDJQXIYBiYoWrFYgpSI%3d\",\n        \"kiddDocumentUrl\": \"https://www.fundslibrary.co.uk/FundsLibrary.DataRetrieval/Documents.aspx?type=packet_fund_unit_doc_kiid&docid=dfedca76-5112-400e-a77b-004e6f883d5f&user=0rWRIIaKa%2foLQkQbfmqKsLxfKDJQXIYBiYoWrFYgpSI%3d\",\n        \"mifidCharges\": {\n            \"exAnteOngoing\": 0.0022,\n            \"exAnteIncidental\": 0,\n            \"exAnteTransaction\": 0.0005\n        }\n    }\n}"}],"_postman_id":"f4a783bd-00aa-48cc-b87b-16e4bc063838"},{"name":"Create a client | Individual","event":[{"listen":"test","script":{"id":"3b5ed39f-8e3d-4900-a22c-ec8b7c1c902a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientId\", data.data.id)"],"type":"text/javascript","packages":{}}},{"listen":"prerequest","script":{"id":"2ff0e67f-44a2-4dd9-ab77-210278b11a04","exec":["var moment = require('moment')","pm.environment.set(\"clientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}}],"id":"4e5776cd-8bfe-4bd0-8f0c-8dcbdce85fb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"{{firmNodeId}}\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"available\": true,\n                    \"value\": \"{{clientNiNumber}}\"\n                }\n            ]\n        }\n    ],\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"emailVerified\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n        \"domesticPep\": false,\n        \"domesticAssociatedPep\": false,\n        \"foreignPep\": false,\n        \"foreignAssociatedPep\": false,\n        \"sanctioned\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client","description":"<p>Creates a new client record on the platform at an active status</p>\n<p>Returns a <code>clientId</code> – the unique identifier for the client record</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firms</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier of the firm node</p>\n<hr />\n<p><code>clientType</code> string <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> string <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>middleName</code> string<br />The legal middle name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> string<br />The legal gender of the client, required for pension clients but can be derived from title</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>addressDetail</code> object <strong>Required</strong><br />Contains details for the client's home address</p>\n<hr />\n<p><code>addressDetail.flatNumber</code> or <code>addressDetail.buildingName</code> or <code>addressDetail.buildingNumber</code> string <strong>Required</strong><br />The flat number, building name, or building number of the client's home address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address. This will be used to log into their investor portal</p>\n<hr />\n<p><code>mobile</code> object<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location of the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string <strong>Required</strong><br />The client's National Insurance Number</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>vulnerability</code> object</p>\n<p>Details capturing the clients vulnerability situation</p>\n<hr />\n<p><code>vulnerability.isVulnerable</code> boolean</p>\n<p><strong>Required</strong> if <strong>vulnerableClientPromptEnabled</strong> flag is set to <strong>true</strong> on firm node</p>\n<p>Confirms the client is a vulnerable person</p>\n<hr />\n<p><code>vulnerability.reason</code> array</p>\n<p>Details the clients reasons for additional support. <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum Values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health  <br />Life event  <br />Resilience  <br />Capability</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>vulnerability.isSupportTemporary</code> boolean</p>\n<p>Captures if the need for additional support is temporary (does it need to be reviewed and updated at a later date). <strong>Required</strong> if <code>isVulnerable</code> is provided.</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks – this should be set to <code>Approved</code>unless using automated flow.</p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong><br />Indicates whether the client has accepted the platform's terms and conditions. This field must be explicitly set to <code>true</code> to confirm acceptance and move the client record to active status alongside <code>emailVerified: true</code>. A value of <code>false</code> indicates that the client has not accepted the terms. To transact on accounts this must be set to <code>true</code> once the client has agreed to platform terms and conditions.</p>\n<hr />\n<p><code>emailVerified</code> boolean <strong>Required</strong><br />Indicates whether the client has confirmed the email address on record is correct. This must be set to true alongside <code>termsAccepted: true</code> for a client to have an <code>Active</code> status.</p>\n<hr />\n<p><code>bankDetails</code> object<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numerical string<br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>nationalities</code> array</p>\n<p>Contains details of the client's nationality/s and the relevant national identifier</p>\n<hr />\n<p><code>kycData</code> object<br />Flags to capture output from KYC (Know Your Customer) screening.</p>\n<hr />\n<p><code>kycData.domesticPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Domestic PEP (Politically Exposed Person)</p>\n<hr />\n<p><code>kycData.domesticAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Domestic PEP</p>\n<hr />\n<p><code>kycData.foreignPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as a Foreign PEP</p>\n<hr />\n<p><code>kycData.foreignAssociatedPep</code> boolean <strong>Required</strong><br />If true, client has a positive match as an associated person of a Foreign PEP</p>\n<hr />\n<p><code>kycData.sanctioned</code> boolean <strong>Required</strong><br />If true, client has a positive match as having a sanction</p>\n<hr />\n<p><code>externalReference</code> string<br />A maximum of 256 characters containing alphanumeric, spaces, dashes and underscores only.</p>\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"57ef90ec-b92e-40c4-9b38-4ff11dcdba9c","name":"Create a client – Success: Client created with multiple nationalities","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02689JD\"\n    }\n}"},{"id":"1a8b1eba-0f2e-42af-bb37-66a6a729bdd2","name":"Create a client – Error: Provided identifier value does not match the required format","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"nodeId\": [\n    \"0\"\n  ],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mrs\",\n  \"firstName\": \"Wilma\",\n  \"surname\": \"Flintstone\",\n  \"gender\": \"Female\",\n  \"currency\": \"GBP\",\n  \"addressDetail\": {\n    \"flatNumber\": \"301\",\n    \"address1\": \"Cobblestone Way\",\n    \"address2\": \"Bedrock\",\n    \"country\": \"GB\",\n    \"postCode\": \"B70 777\"\n  },\n  \"language\": \"en\",\n  \"email\": \"{{clientEmail}}\",\n  \"mobile\": {\n    \"number\": \"07777000000\",\n    \"locale\": \"en-GB\",\n    \"isMobile\": true\n  },\n  \"nationality\": \"GB\",\n  \"nationalInsuranceNo\": \"ABC1234D\",\n  \"dateOfBirth\": \"1982-10-01\",\n  \"taxDomicile\": \"GB\",\n  \"amlStatus\": \"Approved\",\n  \"termsAccepted\": true,\n  \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"nationalities\",\n                \"errorMessage\": \"The value of the provided National Insurance Number is not a valid format\",\n                \"type\": \"validNationality\"\n            }\n        ]\n    }\n}"},{"id":"a05e28be-2b27-4e6c-9a3b-ed384ad1e5b9","name":"Create a client - PEP","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"0\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Mrs\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flintstone\",\n    \"gender\": \"Female\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"flatNumber\": \"301\",\n        \"address1\": \"Cobblestone Way\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"B70 777\"\n    },\n    \"language\": \"en\",\n    \"email\": \"{{clientEmail}}\",\n    \"mobile\": {\n        \"number\": \"07777000000\",\n        \"locale\": \"en-GB\",\n        \"isMobile\": true\n    },\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\"\n    },\n    \"kycData\": {\n    \"domesticPep\": true,\n    \"domesticAssociatedPep\": false,\n    \"foreignPep\": false,\n    \"foreignAssociatedPep\": false,\n    \"sanctioned\": false\n  }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 22 Dec 2022 15:30:09 GMT"},{"key":"x-amzn-RequestId","value":"8723ef93-6397-429f-9806-575e3e116d63"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"djewBFuCDoEFc9g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-AVtFxTtzq2pglY6mHU7TQYDUVks\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63a477ff-4dd590a732de74c30b324a3e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4dd28c7d9439664c66fbf62f5cd00636.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"mmobsBjLHfQmAkDKYcYjWjJMaW0aNbE5SciHqFL4X4U9UVwlCTXLMw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02G876D\"\n    }\n}"}],"_postman_id":"4e5776cd-8bfe-4bd0-8f0c-8dcbdce85fb5"},{"name":"Create a GIA","event":[{"listen":"test","script":{"id":"9e9cc43c-c304-47b1-8532-a55ef088dca3","exec":["var data = pm.response.json()","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"4abb100d-5172-42fe-9b38-9208a61d9f45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{firmNodeId}}\",\n    \"name\": \"Raise Trades Testing\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates a GIA for a client</p>\n<p>Returns the unique identifier <code>accountId</code> (<code>id</code>) for the GIA</p>\n<p>To create a GIA with an investment strategy, refer to the examples under this request.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account - current functionality only supports wrapper type</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string <strong>Required</strong><br />The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the platform terms.  <br />  <br />Active accounts can only be created when linked to an active client.</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account. Currently only GBP</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for a client.</p>\n<hr />\n<p><code>wrapperDetail</code><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum <strong>Required</strong><br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GIA</td>\n<td>General Investment Account</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates that the investment decision maker is the discretionary fund manager if set to <code>true</code> – this impacts transaction reporting</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates that the management of the account is owned by the adviser if set to <code>true</code></p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates if the account is a trust. Trust account will require an LEI to trade in ETIs</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code></p>\n<p>The unique identifier for a model attached to the account – any transactions created with an auto-invest flag set to true will be invested into this allocation. Please note, changing the model on an account will automatically trigger a rebalance.</p>\n<hr />\n<p><code>wrapperDetail.clientProductId</code></p>\n<p>The unique identifier for the clientProduct that the account is contained within</p>\n<hr />\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation, if applicable. If this account is attached to a model (i.e. has <code>assetAllocationId</code> set in <code>wrapperDetail</code> - it should not contain <code>recurringOrders</code>. See documentation on Investment Strategies &gt; Recurring orders for more information.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required when recurringOrders present</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required when recurringOrders present</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required when recurringOrders present</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required when recurringOrders present</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> number <strong>Required when recurringOrders present</strong></p>\n<p>The percentage allocation of the asset, expressed as a decimal, eg. 0.1</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required when recurringOrders present</strong></p>\n<p>A recurring day of the month, when the orders will be created.</p>\n<hr />\n<p><code>recurringPayments</code> array</p>\n<p>Contains details of recurring contributions to the account. See documentation on Investment Strategies &gt; Recurring orders &gt; Auto-invest a payment to recurring order allocation for more information.</p>\n<hr />\n<p><code>recurringPayments.paymentDay</code> integer <strong>Required if recurringOrders present</strong></p>\n<p>A recurring day of the month, when the payment will be made by the client into their investment account.</p>\n<hr />\n<p><code>recurringPayments.amount</code> number <strong>Required if recurringOrders present</strong></p>\n<p>A recurring amount which will be requested as a bank transfer into the investment account.</p>\n<hr />\n<p><code>recurringPayments.movementType</code> string <strong>Required if recurringOrders present</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In</td>\n</tr>\n<tr>\n<td>Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.method</code> string <strong>Required if recurringOrders present</strong><br />Method by which payment will be made.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank transfer  <br />Direct debit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.autoInvest</code> boolean</p>\n<p>Whether the incoming cash is automatically invested in assets.</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3b382c7f-1fdc-4f7c-ba34-21ff074df56e","name":"Create a GIA with a model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"{{nodeId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Marge's GIA\",\n    \"status\": \"Active\",\n    \"adviserCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0,\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": false,\n        \"advised\": false,\n        \"assetAllocationId\": \"{{modelId}}\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F416\"\n    }\n}"}],"_postman_id":"4abb100d-5172-42fe-9b38-9208a61d9f45"},{"name":"Add cash to client account","event":[{"listen":"test","script":{"id":"c1651ef7-36b4-4de0-8290-e4194b6454fa","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"transactionGroupId\", data.data.id);"],"type":"text/javascript","packages":{}}}],"id":"75a09b30-2cae-453c-9f9f-09c2b09cb262","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This flow creates a bank transfer expectation.</p>\n<p>The response returns a <code>linkId</code> which can be queried to retrieve all <code>portfoliotransaction</code> 's in the group.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<p>Contains details of the transactions within the portfolio transaction group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong></p>\n<p>This will be <code>Deposit</code>, or if the contribution is to a pension wrapper, it will be <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>transactions.method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected – this should be set to <code>Bank Transfer</code></p>\n<hr />\n<p><code>transactions.movementType</code> enum value <strong>Required</strong></p>\n<p>This indicates the movement of the cash or assets – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code - this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>This indicates whether the money should be auto-invested into the <code>recurringOrders</code> attached to the account</p>\n<hr />\n<p><code>transactions.investToModel</code> boolean</p>\n<p>This indicates whether the money should be auto-invested into the <code>model</code> attached to the account.</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"25e89422-0de3-4456-9efc-eba9ccfab07d","name":"Create a bank transfer expectation - keep it as cash in the account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 15 Aug 2022 10:00:20 GMT"},{"key":"x-amzn-RequestId","value":"1f64f1be-4ce0-4bf8-bd91-1fee73b0155a"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W5jgMG18DoEF8zg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-3mO5UrKD4gEJs5PuQGXw45ehS8s\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fa1934-044e2a43236246a66585cc65;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 90927d233f1a615dc244e8b198aa1f04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"ktzryMqEOiBLQoNZctx4fSmdPfm6sSQE85zrUnd3XHQpzbxcYDnhEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"}],"_postman_id":"75a09b30-2cae-453c-9f9f-09c2b09cb262"},{"name":"Get payment transactionId","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolPaymentId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"6223caae-7ce6-465e-b443-1c489d9511d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}],"variable":[]}},"response":[{"id":"8f98b889-83e5-45fb-b4c3-5029a4d402e2","name":"Get payment transactionId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"794"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:30:49 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68869-34c094d13a03d0c15a3dccd5;Parent=0ab31eaccfee2c79;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"4743657d-9fee-44f4-8826-563d7b2b7dbe"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"794"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIpAiHlrjoEEG9Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"31a-yoPZ01IcvYPbw6cZGwRqjgCDQEs\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"EyLnAI4p-oXBTF-Akq1fiPhpy5MLuI1Mol2dMq-mHa3ogy3EU9G8pA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0000M7M3R\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"transactionDate\": \"2025-03-28T00:00:00.000Z\",\n            \"accountId\": \"A05X9TD\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"amount\": 1000,\n            \"currency\": \"GBP\",\n            \"method\": \"Bank Transfer\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"status\": \"Pending\",\n            \"linkId\": \"0000M7M3Q\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-28T11:30:44.637Z\",\n                    \"description\": \"Payment request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"createdDate\": \"2025-03-28T11:30:44.672Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-28T11:30:44.685Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67e688646e11bb89bde247d9\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"6223caae-7ce6-465e-b443-1c489d9511d8"},{"name":"[Staging Only] Mock - complete a payment","id":"113db325-1017-48b4-bed1-002342bf2b95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"type\" : \"Action\",\n\t\"firmId\" : \"{{firmId}}\",\n\t\"transactionAction\" : \"Complete\",\n    \"actionReason\": \"Mock cash received\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{pfolPaymentId}}","description":"<p>This endpoint lets you simulate a production environment by completing a payment. Completing a payment will allocate cash to the client account.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>The type of event being used - this should be set to \"Action\"</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The firm Id</p>\n<hr />\n<p><code>transactionAction</code> string <strong>Required</strong></p>\n<p>The type of action being used - this should be set to \"Complete\"</p>\n<hr />\n<p><code>actionReason</code> string <strong>Required</strong></p>\n<p>An audit trail note for you to record why you made the action.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{pfolPaymentId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"113db325-1017-48b4-bed1-002342bf2b95"},{"name":"Check payment transaction is Completed","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolPaymentId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"7169d716-06b3-44dc-8ef8-a3ae16abae83","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}],"variable":[]}},"response":[{"id":"64fa278b-acad-4577-bccb-d5d1b803bb13","name":"Check payment transaction is Completed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"926"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:31:16 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68884-1c76090406d808ba57387630;Parent=6c6d63cd2a6e0afe;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"b030f7ba-a076-403f-8a02-b0a51955b32f"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"926"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIpEtHjEDoEEpxw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"39e-JXLkgdbtco3YtKcByjDeq3ALr7s\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"cP71hyWdV25wsKrDpUgggHwIb126AlsltRZsl77wst1-ai49EE9Oeg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0000M7M3R\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"transactionDate\": \"2025-03-28T00:00:00.000Z\",\n            \"accountId\": \"A05X9TD\",\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"amount\": 1000,\n            \"currency\": \"GBP\",\n            \"method\": \"Bank Transfer\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"status\": \"Completed\",\n            \"linkId\": \"0000M7M3Q\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-28T11:30:44.637Z\",\n                    \"description\": \"Payment request created\"\n                },\n                {\n                    \"statusDate\": \"2025-03-28T11:31:09.122Z\",\n                    \"status\": \"Completed\",\n                    \"description\": \"Mock cash received\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"createdDate\": \"2025-03-28T11:30:44.672Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-28T11:31:09.128Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"TESTUSER\",\n                \"version\": 2,\n                \"application\": \"PfolioEventAPI\"\n            },\n            \"updateId\": \"67e6887d822c4060bf1a617c\",\n            \"completedDate\": \"2025-03-28T11:31:09.112Z\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"7169d716-06b3-44dc-8ef8-a3ae16abae83"},{"name":"Create order to buy some stock","event":[{"listen":"test","script":{"id":"cc78e16b-672a-4076-b98b-bf4663031c3f","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"buyOrderPtgId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"d2e83b9a-5fef-4b87-b4f8-6fca7ac0eb2f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"assetId\": \"{{rtAssetId}}\"\n        }\n    ]\n\n }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Now we will create an order to invest the cash in to our Raise Trade asset.</p>\n<p>This returns a <code>linkId</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At Best</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Invest</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"199dfb1f-34d5-4f88-bada-21f2c926bd75","name":"Create order to buy some stock","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"currency\": \"GBP\",\n            \"amount\": 1,\n            \"assetId\": \"{{rtAssetId}}\"\n        }\n    ]\n\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 08:00:05 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e65704-60f0c2ba0311c8d9794b7f85;Parent=16a68e8b4eff10e9;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"6b760390-8479-40ad-98a1-b6dc2595f7e4"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIKIxE8djoEEpEw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-1Q3tDBtn0COgc9qug2uyNqiQGzs\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cb9d66c261e91793be744f629d6e309e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"lLbg7J2m3SkIBpnb6cUYyhiuXwpl_LhcC1Ei74R3REFDilHbCXojRw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000M78DD\"\n    }\n}"}],"_postman_id":"d2e83b9a-5fef-4b87-b4f8-6fca7ac0eb2f"},{"name":"Get buy order transactionId","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolBuyOrderId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"c7c6bb0b-e1de-43a4-a437-5ab4be819bb0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{buyOrderPtgId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{buyOrderPtgId}}"}],"variable":[]}},"response":[{"id":"f1973b30-be1e-4361-ac3f-0c6d540c2766","name":"Get buy order transactionId","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{buyOrderPtgId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{buyOrderPtgId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"896"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:31:37 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68899-549a0e3252819c4f1c2880cf;Parent=4eaf5002ba8e4df7;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"151c619c-77b8-4770-ab5e-1c18e27db23f"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"896"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIpICFRqDoEEdDw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"380-dav89/6XPlSFi5xfRQhFgwZfyoc\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"spxOmvxQWgbV2QyEF4V86ZwM4jVysHLVJNGaDsQ6Sa9nrO5hzaVUhA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0000M7M41\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"accountId\": \"A05X9TD\",\n            \"assetId\": \"29F55\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"status\": \"Pending\",\n            \"linkId\": \"0000M7M3S\",\n            \"transactionDate\": \"2025-03-28T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-04-01T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-28T11:31:32.749Z\",\n                    \"description\": \"Order request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-28T11:31:32.807Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-28T11:31:32.814Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67e688946e11bb89bde247dd\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"c7c6bb0b-e1de-43a4-a437-5ab4be819bb0"},{"name":"[Staging only] Mock Complete order","id":"86f2e6ab-0c54-4daf-aaeb-5c8df289bc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 1000,\n        \"executedQuantity\": 4.3712\n    },\n    \"quantity\": 4.3712,\n    \"amount\": 1000,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{pfolBuyOrderId}}","description":"<p>This mocks a completed order.</p>\n<p>In this scenario, we want to invest £1000, and we know the price of the asset is 228.7697, so the quantity we will receive is:</p>\n<p>quantity = ROUND( amountToInvest / assetPrice, minimumDecimalPlaces)</p>\n<p>In our example:</p>\n<ul>\n<li><p>amountToInvest = 1000</p>\n</li>\n<li><p>assetPrice = 228.7697</p>\n</li>\n<li><p>minimumDecimalPlaces = 4 (because the minimumTransferUnit is 0.0001, which is to 4 decimal places)</p>\n</li>\n</ul>\n<p>quantity = ROUND( 1000 / 228.7697, 4) = 4.3712</p>\n<p>We have entered the relevant values in the request for you, assuming you are following the tutorial.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{pfolBuyOrderId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2fd370f9-eac1-4757-9019-2458d1fa8063","name":"[Staging only] Mock Complete order","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 1000,\n        \"executedQuantity\": 4.3712\n    },\n    \"quantity\": 4.3712,\n    \"amount\": 1000,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{pfolBuyOrderId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:34:02 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68929-57efb95a1a33e558352b3eb1;Parent=0d1b16220f33a5ee;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"1112568f-bcab-4cbf-b28c-d0458cf35d94"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIpelGgRjoEEGIw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"Yz3GvZ1XeMd1zFHWgtmWPl5r6QfLHsSHLaHp_YACw7CNfOZkIRhqhA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"86f2e6ab-0c54-4daf-aaeb-5c8df289bc34"},{"name":"Check buy order is Completed","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolBuyOrderId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"8dad98fd-0cf5-4d59-be4b-ebb62ec38391","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{buyOrderPtgId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{buyOrderPtgId}}"}],"variable":[]}},"response":[{"id":"85851d02-0161-4a82-bf13-4674e1b79979","name":"Check buy order is Completed","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{buyOrderPtgId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{buyOrderPtgId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1192"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:34:31 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68946-2ee666ad21b8186e34f5c39d;Parent=3d8768c9d2e7e80c;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"a4de30fd-e69d-4109-a755-f2656a769fc2"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1192"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIpjFHVCDoEETrg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"4a8-0GPPn6dwjsT7WzDKZRK4npfPaqU\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"rt49xXnSk9MJEWduZLWf2BK1xAmdyTtftSa-ONcZd9uosguOEoGNfA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"0000M7M41\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"accountId\": \"A05X9TD\",\n            \"assetId\": \"29F55\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"status\": \"Completed\",\n            \"linkId\": \"0000M7M3S\",\n            \"transactionDate\": \"2025-03-28T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-03-28T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-28T11:31:32.749Z\",\n                    \"description\": \"Order request created\"\n                },\n                {\n                    \"statusDate\": \"2025-03-28T11:34:02.092Z\",\n                    \"status\": \"Completed\",\n                    \"description\": \"Order executed\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-28T11:31:32.807Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-28T11:34:02.098Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"TESTUSER\",\n                \"version\": 2,\n                \"application\": \"PfolioEventAPI\"\n            },\n            \"updateId\": \"67e6892ad738c7554f5e033f\",\n            \"completedDate\": \"2025-03-28T11:34:02.058Z\",\n            \"consideration\": 1000,\n            \"executedAmount\": 1000,\n            \"executedQuantity\": 4.3712,\n            \"executionDetails\": {\n                \"currency\": \"GBP\",\n                \"price\": 228.7697,\n                \"transactionTime\": \"00:00:00\",\n                \"venue\": \"XLON\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"8dad98fd-0cf5-4d59-be4b-ebb62ec38391"}],"id":"03a27b6d-c5c6-4549-bb28-5eddf90d97ca","description":"<p>This folder gives you the example API calls you need to set an account up to eventually place sells on the account, including:</p>\n<ol>\n<li><p>Authenticating in to the Pfolio API</p>\n</li>\n<li><p>Adding the valid Raise Trade asset</p>\n</li>\n<li><p>Creating the client that we will be using to do the investing and trading</p>\n</li>\n<li><p>Creating an account for that client</p>\n</li>\n<li><p>Depositing some cash</p>\n</li>\n<li><p>Investing in an asset</p>\n</li>\n</ol>\n<p>These API calls are not explicitly related to Raise Trades, but they give you the pre-requisites need to do a Raise Trade.</p>\n<p>Once you have completed the setup, you can move on to the Use Case examples.</p>\n<h2 id=\"environment-variables\">Environment variables</h2>\n<p>To successfully follow this tutorial, you will need to set these environment variables in Postman:</p>\n<h3 id=\"firm-and-client\">Firm and client</h3>\n<ul>\n<li><p><code>firmId</code> = your staging firmId</p>\n</li>\n<li><p><code>firmNodeId</code> = your staging nodeId (which node your account sits on)</p>\n</li>\n<li><p><code>clientEmail</code> = an email that belongs to your test client, we recommend using an email that you have access to, so you can receive the account setup emails. You can use a trick to create unique email addresses without actually creating them - for example if you have <a href=\"https://mailto:myEmail@myDomain.com\">myEmail@myDomain.com</a>, you can then use <a href=\"https://mailto:myEmail+uniqueAddress@myDomain.com\">myEmail+uniqueAddress@myDomain.com</a>, and you will still receive emails to your original inbox</p>\n</li>\n<li><p><code>clientNiNumber</code> = a globally unique national insurance number for this client</p>\n</li>\n</ul>\n<h3 id=\"assets\"><strong>Assets</strong></h3>\n<p>We have specifically chosen and verified that the below asset IDs are valid for use in this tutorial:</p>\n<ul>\n<li><p><code>rtAssetId</code> = 29F55</p>\n</li>\n<li><p><code>rtAssetId2</code> = 27G1M</p>\n</li>\n<li><p><code>equityAssetId</code> = 286D7</p>\n</li>\n</ul>\n","_postman_id":"03a27b6d-c5c6-4549-bb28-5eddf90d97ca"},{"name":"Quantity sells","item":[{"name":"Instruct a single sell (quantity)","event":[{"listen":"test","script":{"id":"d83540d2-8b1b-4aaa-8c22-3bd31c903354","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"transactionGroupId\", data.data.id)"],"type":"text/javascript"}}],"id":"79a1ff79-6aa1-431b-9dae-4a93617390ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n       \"firmId\": \"{{firmId}}\",\n       \"accountId\": \"{{accountId}}\",\n       \"transactions\": [\n            {\n             \"firmId\": \"{{firmId}}\",\n             \"transactionType\": \"Order\",\n             \"transactionSubType\": \"At Best\",\n             \"movementType\": \"Sell\",\n             \"accountId\": \"{{accountId}}\",\n             \"currency\": \"GBP\",\n             \"assetId\": \"{{assetId}}\",\n             \"quantity\": 1\n           }\n       ]\n    }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This is an API call to sell some assets in an account. Use this if you want to raise cash from, or reduce exposure to, specific assets your client holds.</p>\n<p>Currently, you can only instruct sells as a quantity of units or shares. Please refer to the /assets endpoint to check an asset's <code>minimumTransferUnit</code> before submitting a trade, to know how many decimal places you can submit in the <code>transactions.quantity</code> field.</p>\n<p>You can instruct many sells in the same group, each for different assets, so long as they are all on the same <code>accountId</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sell</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n<p><code>transactions.quantity</code> decimal string <strong>Required</strong><br />The share quantity of the asset sold down</p>\n<hr />\n<h4 id=\"returns\"><strong>Returns</strong></h4>\n<p>Returns an order expectation</p>\n<hr />\n<p><code>data.id</code> string<br />Successful response, the <code>id</code> relates to the <code>linkId</code> you will find on any transactions created within that group. You can retrieve transactions using GET <code>/portfoliotransactions/?linkId={{linkId}}</code></p>\n<hr />\n<p><strong>Failed requests</strong></p>\n<p>Please see the <strong>The orders portfolioTransactionGroups</strong> folder for information on how we validate and surface errors.</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"1c0d5549-a628-4e24-a2d6-98e4a199ea62","name":"Instruct a single sell","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n       \"firmId\": \"{{firmId}}\",\n       \"accountId\": \"0282G9F\",\n       \"transactions\": [\n            {\n             \"firmId\": \"{{firmId}}\",\n             \"transactionType\": \"Order\",\n             \"transactionSubType\": \"At Best\",\n             \"movementType\": \"Sell\",\n             \"accountId\": \"0282G9F\",\n             \"currency\": \"GBP\",\n             \"assetId\": \"24D2L\",\n             \"quantity\": 1\n           }\n       ]\n    }"},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 Jan 2024 16:21:20 GMT"},{"key":"x-amzn-RequestId","value":"9bef1494-1193-4eda-a400-79b6b606463d"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"SAEbaFEkDoEEURQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-AlPZsIpIsM8K1zXyv0sOU1/POyg\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-65afe77b-3c7ef98f178bc82f176a9a11"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 8313bbb5b34d1ea0742b64ffbb83b692.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"qaaFJ1VumnKWWGAxoBVDTVJ_XvM92b77t6eFCccQcMebhrWi8UEIcw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00007RRJD\"\n    }\n}"}],"_postman_id":"79a1ff79-6aa1-431b-9dae-4a93617390ce"}],"id":"168aca03-7d17-4bb7-a8b5-96556ef1decd","_postman_id":"168aca03-7d17-4bb7-a8b5-96556ef1decd","description":""},{"name":"Raise Trades (sell by amount)","item":[{"name":"Observe the available cash and stock on the account before the Raise Trade","event":[{"listen":"test","script":{"id":"bfd44ea2-1367-4aa9-9855-5675c7ed033a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript"}}],"id":"3af132b8-6746-4aab-a95e-e2d83ae3fbf2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/{{firmId}}/{{accountId}}","description":"<p>This command returns the Live Account Summary (LAS) object for the specified account. The LAS represents the account's available cash and stock balances, which are the completed balances less any in-flight transactions that are being ring-fenced.</p>\n<p>Use this endpoint to know how much available cash and stock you have, when calculating new transactions prior to requesting them.</p>\n<p>You can see how much available stock value you have for each asset. If you have followed this tutorial closely, you will see a <code>currentValue</code> of £1000 for assetId 29F55, with a current sell price of 228.7697, and a minimum transfer unit of 0.0001.</p>\n<p>This means the following constraints apply when creating a Raise Trade:</p>\n<ul>\n<li><p>Minimum raise amount = 0.02</p>\n</li>\n<li><p>Maximum raise amount = 800</p>\n</li>\n</ul>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>firmId</code></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached to</p>\n<hr />\n<p><code>name</code></p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code of the account. Currently only GBP is supported</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail</code></p>\n<p>Contains details of the investment account</p>\n<hr />\n<p><code>recurringPayment</code> boolean</p>\n<p>States whether or not there is a recurring payment on the account</p>\n<hr />\n<p><code>recurringOrders</code> array</p>\n<p>Contains details of any recurring order allocation on the account</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientId</code></p>\n<p>The unique identifier of the client account</p>\n<hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.id</code> string</p>\n<p>The unique identifier of the position.<br />For cash positions consisting of <code>accountId</code>|<code>C</code>|<code>position currency</code><br />For stock positions consisting of <code>accountId</code>|<code>S</code>|<code>isin</code></p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.instrumentType</code> enum</p>\n<p>The type of instrument this position represents</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Equity</code></td>\n<td>An equity</td>\n</tr>\n<tr>\n<td><code>ETF</code></td>\n<td>An ETF</td>\n</tr>\n<tr>\n<td><code>Investment Trust</code></td>\n<td>An investment trust</td>\n</tr>\n<tr>\n<td><code>Fund</code></td>\n<td>A fund</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.accountId</code> string</p>\n<p>The ID of the account for this position</p>\n<hr />\n<p><code>positions.amount</code> float</p>\n<p>For cash positions, the amount of available cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The current number of available units in the holding, after any units have been removed for ring-fencing. For previously held assets, they will be included in the response with a zero amount of units</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The value of the available position as at the last known price for this asset.</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code of the position</p>\n<hr />\n<p><code>positions.prices</code> array</p>\n<p>An array of the prices used to calculate the value of the position. See 'Prices' in the platform management section for more detail on the prices object.</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentSellPrice</code> float</p>\n<p>The current sell price of the asset.</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system. This is the date of the price being used and may be prior to the current date or toDate used (for example when the toDate is a non-trading day)</p>\n<hr />\n<p><code>positions.updateId</code> string</p>\n<p>The unique identifier assigned to the position when it was last updated</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.auditDetails</code> nested object</p>\n<p>Details of when the position was last updated</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current available value of the account.</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n","urlObject":{"path":["account","summary","live","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"dd5ebbe6-efc7-4339-a90c-176ff187b328","name":"Observe the available cash and stock on the account before the Raise Trade","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2080"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:41:10 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68ad6-7a86bf4938eb23062cebac90;Parent=79f6ba20de55fa82;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"b3ee4d5a-0553-4538-8858-d34bbee2d850"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2080"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIqhjGLXjoEEaSQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"820-gfClWpJ/7UZrJ0MmBw+JpSl31oU\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4c3c0be12954d0bfb5e695119bb76338.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"SQDKfZOBkcw21JYJpNMU3uhuerQYM7HBeIvlJpreThLbbJZfMeJgeA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"A05X9TD\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"name\": \"Raise Trades Testing\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"wrapperType\": \"GIA\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"clientProductId\": \"67e6885eeb1cb71cd38a9a28\"\n        },\n        \"recurringPayment\": false,\n        \"status\": \"Active\",\n        \"clientId\": \"C069HRX\",\n        \"clientNames\": [\n            \"Wilma Flintstone\"\n        ],\n        \"positions\": [\n            {\n                \"id\": \"A05X9TD|C|GBP\",\n                \"accountId\": \"A05X9TD\",\n                \"accountName\": \"Raise Trades Testing\",\n                \"accountType\": \"Wrapper\",\n                \"amount\": 0,\n                \"auditDetails\": {\n                    \"application\": \"PfolioEventAPI\",\n                    \"updateDate\": \"2025-03-28T11:34:02.111Z\",\n                    \"userFirmId\": \"SECCL\",\n                    \"userId\": \"TESTUSER\",\n                    \"version\": 2\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Cash\",\n                \"updateId\": \"67e6892ad738c7554f5e0342\",\n                \"currentValue\": 0\n            },\n            {\n                \"id\": \"A05X9TD|S|GB00BZ82ZW98\",\n                \"accountId\": \"A05X9TD\",\n                \"accountName\": \"Raise Trades Testing\",\n                \"accountType\": \"Wrapper\",\n                \"assetId\": \"29F55\",\n                \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n                \"auditDetails\": {\n                    \"application\": \"PfolioEventAPI\",\n                    \"updateDate\": \"2025-03-28T11:34:02.107Z\",\n                    \"userFirmId\": \"SECCL\",\n                    \"userId\": \"TESTUSER\",\n                    \"version\": 1\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"isin\": \"GB00BZ82ZW98\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Stock\",\n                \"quantity\": 4.3712,\n                \"updateId\": \"67e6892ad738c7554f5e0341\",\n                \"prices\": [\n                    {\n                        \"assetId\": \"29F55\",\n                        \"priceDate\": \"2024-07-01T00:00:00.000Z\",\n                        \"ask\": 228.7697,\n                        \"mid\": 228.7697,\n                        \"bid\": 228.7697,\n                        \"quoteUnit\": 1,\n                        \"minimumTransferUnit\": 0.0001,\n                        \"currency\": \"GBP\",\n                        \"exchangeRates\": [],\n                        \"instrumentType\": \"Fund\",\n                        \"ocfCalculated\": 0.0051\n                    }\n                ],\n                \"closingPrice\": {\n                    \"assetId\": \"29F55\",\n                    \"priceDate\": \"2024-07-01T00:00:00.000Z\",\n                    \"ask\": 228.7697,\n                    \"mid\": 228.7697,\n                    \"bid\": 228.7697,\n                    \"quoteUnit\": 1,\n                    \"minimumTransferUnit\": 0.0001,\n                    \"currency\": \"GBP\",\n                    \"exchangeRates\": [],\n                    \"instrumentType\": \"Fund\",\n                    \"ocfCalculated\": 0.0051\n                },\n                \"currentPrice\": 228.7697,\n                \"currentSellPrice\": 228.7697,\n                \"instrumentType\": \"Fund\",\n                \"minimumTransferUnit\": 0.0001,\n                \"currentPriceDate\": \"2024-07-01T00:00:00.000Z\",\n                \"currentValue\": 1000,\n                \"assetInstrumentType\": \"Fund\",\n                \"assetCountryOfIssue\": \"GB\",\n                \"assetTaxDetails\": [\n                    {\n                        \"taxDomicile\": \"GB\",\n                        \"taxCalculation\": \"GROSS\",\n                        \"reportCategory\": \"UK Dividend\"\n                    }\n                ]\n            }\n        ],\n        \"completeTransactions\": [],\n        \"currentValue\": 1000,\n        \"uninvestedCash\": 0\n    }\n}"}],"_postman_id":"3af132b8-6746-4aab-a95e-e2d83ae3fbf2"},{"name":"Instruct a Raise Trade","event":[{"listen":"test","script":{"id":"c534706e-a419-498a-9e34-870b029e3ee9","exec":["var data = pm.response.json()","console.log(data)"],"type":"text/javascript","packages":{}}}],"id":"5194924b-efa0-4bd1-8dd6-b9e41aa7a75a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"amount\": 500\n}"},"url":"{{apiRoute}}/portfoliotransaction","description":"<p>Raise Trades are instructions to sell a monetary amount from a given asset.</p>\n<p>Immediately below are some cases that will cause an API error. Below that are the required attributes to make a successful API call.</p>\n<p>Any of the following will return an API error (see examples for error responses):</p>\n<ol>\n<li><p>If no <code>amount</code> is included on the request (you must provide an amount to raise)</p>\n</li>\n<li><p>If <code>amount: 0</code> is on the request (amount must be greater than 0)</p>\n</li>\n<li><p>If <code>amount</code> is less than the minimum raise amount for this asset (see below for more details</p>\n</li>\n<li><p>If <code>amount</code> is more than the maximum raise amount for this asset on this account (see below for more details)</p>\n</li>\n<li><p>If <code>quantity</code> or <code>percentage</code> is included on the request</p>\n</li>\n<li><p>If the <code>assetId</code> is of <code>instrumentType</code> <code>Equity</code>, <code>Investment Trust</code> or <code>ETF</code></p>\n<ol>\n<li>Except, if your firm has fractional trading enabled, and you do not charge dealing fees for ETF assets, then you can instruct a Raise Trade on <code>ETF</code> assets</li>\n</ol>\n</li>\n</ol>\n<h2 id=\"error-message-examples-not-included-here\">Error message examples not included here</h2>\n<p>If your firm:</p>\n<ol>\n<li><p>Does not fractionally trade, or</p>\n</li>\n<li><p>Charges dealing fees on asset</p>\n</li>\n</ol>\n<p>Then you will receive an API erorr if trying to raise on Equity, Investment Trust and ETF assets (fractional trading validation), or if you charge fees on the asset in the request (any <code>instrumentType</code>).</p>\n<p>To provide real examples in this documentation would require you to create:</p>\n<ol>\n<li><p>A new firm without fractional trading enabled (if you currently have it enabled)</p>\n</li>\n<li><p>A new node which charges dealing fees on the asset in the request</p>\n</li>\n</ol>\n<p>In lieu of that, we will provide the API responses you can expect in those scenarios.</p>\n<h3 id=\"instruct-a-raise-trade-when-your-firm-does-not-fractionally-trade\">Instruct a Raise Trade when your firm does not fractionally trade</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"movementType\",\n                \"errorMessage\": \"Raise requires Firm to support fractional trading\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<h3 id=\"instruct-a-raise-trade-when-your-firm-charges-dealing-fees-on-the-asset-requested\">Instruct a Raise Trade when your firm charges dealing fees on the asset requested</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"movementType\",\n                \"errorMessage\": \"Raise is not supported with node dealing charges for instrument type of ETF\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<h2 id=\"minimum-raise-amount-for-this-asset\">Minimum raise amount for this asset</h2>\n<h3 id=\"reason-for-the-validation\">Reason for the validation</h3>\n<p>The reason for this minimum amount validation, is to prevent you instructing a trade that is not likely to be executed in the market.</p>\n<p>The reason for adding the 10% buffer (the x1.1), is because the prices that we provide are the previous day's closing price. Therefore the price is likely to change between you instructing the trade, and when the trade is executed. So, we factor in a 10% price rise, to give a higher likelihood that your trade will succeed.</p>\n<h3 id=\"calculation-of-minimum-raise-amount\">Calculation of minimum raise amount</h3>\n<p>The minimum Raise Trade amount is calculated as:</p>\n<p><code>minAmount = ROUNDDOWN( assetPrice x (minimumTransferUnit x 1.1), 2)</code></p>\n<h4 id=\"examples\">Examples</h4>\n<p>For example:</p>\n<ul>\n<li><p>assetPrice = 100</p>\n</li>\n<li><p>minimumTransferUnit = 0.01</p>\n</li>\n</ul>\n<p><code>minAmount = ROUNDDOWN( 100 x (0.01 x 1.1) , 2) = 1.1</code></p>\n<h4 id=\"example-for-this-tutorial\">Example for this tutorial</h4>\n<p>Worked example for the asset we are using:</p>\n<ul>\n<li><p>assetPrice = 228.7697</p>\n</li>\n<li><p>minimumTransferUnit = 0.0001</p>\n</li>\n</ul>\n<p><code>minAmount = ROUNDUP( 228.7697 x ( 0.0001 x 1.1) , 2) = 0.02</code></p>\n<p>If you are still using the asset suggested in this tutorial, then the minimum raise amount is £0.03.</p>\n<p>Therefore, if we try to instruct a Raise Trade for less than this, we will get an API error.</p>\n<h2 id=\"maximum-raise-amount-for-this-asset-on-this-account\">Maximum raise amount for this asset on this account</h2>\n<h3 id=\"reason-for-the-validation-1\">Reason for the validation</h3>\n<p>The reason for this maximum amount validation, is to prevent you instructing a trade that is at risk of selling more quantity than your client account holds.</p>\n<p>The validation is based on 80%* of the account's current available stock value.</p>\n<p>* 80% is the current maximum percentage of a single asset holding's value that Seccl will allow you Raise Trade. This number is subject to change, based on Seccl's risk-based view of market volatility. We will communicate any change to this number.</p>\n<h3 id=\"calculation-of-maximum-raise-amount\">Calculation of maximum raise amount</h3>\n<p>The maximum Raise Trade amount is calculated as:</p>\n<p><code>maxAmount = ROUNDDOWN( (availableStockQuantity x maxPercentForRaiseTrade) x latestBidPrice, 2)</code></p>\n<h4 id=\"how-we-validate-this\">How we validate this</h4>\n<p>When a Raise Trade order request is received, we will estimate the quantity that is required to raise the amount. We include a -20% buffer on the last known price of the asset (directly related to 1 - <code>maxPercentForRaiseTrade</code>, e.g. 1 - 0.8 = 0.2). Then, we check if the estimated quantity is &gt; the available stock on the account, and if it is then we return an error.</p>\n<h4 id=\"examples-1\">Examples</h4>\n<p>For example:</p>\n<ul>\n<li><p><code>availableStockQuantity</code> = 100</p>\n</li>\n<li><p><code>maxPercentForRaiseTrade</code> = 0.8</p>\n</li>\n<li><p><code>latestBidPrice</code> = 1</p>\n</li>\n</ul>\n<p><code>maxAmount = ROUNDDOWN( (100 x 0.8) x 1, 2) = 80</code></p>\n<h4 id=\"example-for-this-tutorial-1\">Example for this tutorial</h4>\n<p>Worked example for the asset we are using:</p>\n<ul>\n<li><p><code>availableStockQuantity</code> = 4.3712 (as identified in the Live Account Summary call in this folder)</p>\n</li>\n<li><p><code>maxPercentForRaiseTrade</code> = 0.8</p>\n</li>\n<li><p><code>latestBidPrice</code> = 228.7697</p>\n</li>\n</ul>\n<p><code>maxAmount = ROUNDDOWN( (4.3712 x 0.8) x 228.7697, 2) = 799.99</code></p>\n<p>If you have not yet placed a new trade on this asset in the tutorial, then your maximum raise trade amount will be £799.99.</p>\n<p>Therefore, if we try to instruct a Raise Trade for more than this, we will get an API error.</p>\n<h1 id=\"parameters\">Parameters</h1>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>transactionType</code> string <strong>Required</strong></p>\n<p>Must be <code>Order</code></p>\n<hr />\n<p><code>transactionSubType</code> string <strong>Required</strong></p>\n<p>Must be <code>At Best</code></p>\n<hr />\n<p><code>movementType</code> string <strong>Required</strong></p>\n<p>Must be <code>Raise</code> for Raise Trades</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>Must be <code>GBP</code></p>\n<hr />\n<p><code>assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the asset you want to trade</p>\n<hr />\n<p><code>amount</code> int or float <strong>Required</strong></p>\n<p>The GBP value you want to raise from selling the asset holding.</p>\n<p>Must be:</p>\n<ul>\n<li><p>Greater than 0.01</p>\n</li>\n<li><p>Greater than or equal to the minimum raise amount</p>\n</li>\n<li><p>Less than or equal to the maximum raise amount</p>\n</li>\n<li><p>No greater than 2 decimal places</p>\n</li>\n</ul>\n","urlObject":{"path":["portfoliotransaction"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c88b92d8-fc43-42da-ae63-cc538532f3f7","name":"Success - Instruct a Raise Trade","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"amount\": 500\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:06:47 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc6745-518628d122d313942a84ddca;Parent=6d63969b08f8ca0b;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"262e5ce5-295c-4710-8f72-11e7abaf6c15"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvUS9HMJjoEEfPQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-s0kBwq4SQf7wrmiVpYn+w5hTOzQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 17d60a367e7e38c01f5a3242a9a3e784.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"1kvJri916Iw5XZXr1GBNMyS6PLZgXMTyT5DMalDHQi9tvwtbKzGksw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000M2N1N\"\n    }\n}"},{"id":"35073187-2f61-4215-b10c-dc694a6a95ee","name":"Error - Without an amount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\"\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"204"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:34:43 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68953-0d2f600f7f091d7337645a6a;Parent=20426ea374f66836;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"7a039415-e4bd-49f0-9533-3ffde3f47932"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"204"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIplCGDujoEEExQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"cc-4hLTweM5mcwN2E16t+gGfZdueYI\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 955b5f6b59fedae13d00dcc66f7085f2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"JiEe6bz7ePmClrigxI_kzwKkP1CXr-WTD_wDu01Go9QMllGHp6y1aQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Amount can't be blank\",\n                \"type\": \"presence\"\n            }\n        ]\n    }\n}"},{"id":"d26703c7-ce21-4849-92a1-b083ad5f7bab","name":"Error - With 0 Amount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"amount\": 0\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"231"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 18:41:47 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc616a-7a41670b30133fa920c3d247;Parent=1053301c479e99f8;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"8e91964e-ebb8-4fcd-ba9b-a179057e3526"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"231"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvQowGNODoEEBZg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"e7-PfoveWAQsj+V564i87+X/x8Ysr0\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 19d5615c4d307c11803beb015d8f6562.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"E8ONduXf-M5zg-W-ZRw1er4XADbRBeDOxw_YKxE-Uw1_MLh_oj0cQg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Amount must be greater than or equal to 0.01\",\n                \"type\": \"numericality\"\n            }\n        ]\n    }\n}"},{"id":"9d214cfa-8894-4da1-81ca-dbda4cf614ae","name":"Error - With a percentage","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"percentage\": 1\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 18:20:04 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc5c53-4842f81f61bb7ebb18fdeb8e;Parent=43d249d2b0a9c89a;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"a141df92-7ee5-4005-a0c5-bb148905c5ca"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"309"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvNdKGLpDoEEBqQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"135-smShKWcmXj2B3xnqoUOjbukjZto\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 242a81711c4fc113f186d0cca0b5bb94.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"OV3zh16c_bu4rC14YNxtW7viJZtPd1GUV4Y7KZOgcXjP45NYo9KyGg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"percentage\",\n                \"errorMessage\": \"Percentage Orders with a movementType of Raise cannot be instructed with a percentage. Please use amount instead.\",\n                \"type\": \"forbiddenProperty\"\n            }\n        ]\n    }\n}"},{"id":"90e91d6c-851a-4078-b429-02eabc7a6c3a","name":"Error - With a quantity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"quantity\": 1\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"303"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 18:21:05 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc5c8f-539eaeff0a596bc000d971a8;Parent=38364b895b1a6692;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"37e241c0-d6bc-49be-8eab-66f8127e6111"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"303"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvNmaH2rjoEEBjw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"12f-YIamJUdzGWXdFv8Dv7LE20wTKzM\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 242a81711c4fc113f186d0cca0b5bb94.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"sq8hOKusC4GyIBgDX2nhVtJm9dk4qN7LVJFtMBrWqCx34C23vh9qsg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"quantity\",\n                \"errorMessage\": \"Quantity Orders with a movementType of Raise cannot be instructed with a quantity. Please use amount instead.\",\n                \"type\": \"forbiddenProperty\"\n            }\n        ]\n    }\n}"},{"id":"e33f534e-ab1d-4dc5-8dd8-088ea698b116","name":"Error - Invalid instrumentType","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"amount\": 1000,\n    \"assetId\": \"{{equityAssetId}}\"\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"235"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 18:05:26 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc58e5-290565de72946c7340e9611f;Parent=00d3edc15f74c216;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"ec2ebd84-907c-4861-8912-1e141abc63d8"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"235"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvLT_Gy4DoEEG9Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"eb-nxZE+8jSxTw96IYqbfS5lq5Cs3E\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 04bb33465149b34afca4988622dca584.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"bGvW7OtLqVuGCHv1g_yIjqv0syUgvsyX9ugRrTg3WsFewEwiP04KFw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"movementType\",\n                \"errorMessage\": \"Raise is not supported for instrument type Equity\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"e0dca9af-7524-4205-b50f-8c406a53d0ff","name":"Error - Less than the minimum raise amount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"amount\": 0.01,\n    \"assetId\": \"{{rtAssetId}}\"\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"226"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 18:32:44 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc5f49-5cf7525275ac54c07f681af8;Parent=12ddc794dd964c79;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"08621d80-92bd-4a87-9dc0-03280452b7f6"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"226"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvPThF8ZjoEEZYA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"e2-uGrYESvzpyDYGFNhx/9j3EnqomE\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 675c3f96928d591debc37b54f2b16dc2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"vxzeUsPnw2mk9qt27HLtI4MnNbYrEt2yJhDN-Gbt6xgQKO9QyjzcEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Minimum required raise for this asset is 0.02.\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"aaccd87a-a647-4d84-942e-bce13413507e","name":"Error - More than maximum % of holding for raise trades","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"transactionType\": \"Order\",\n    \"transactionSubType\": \"At Best\",\n    \"movementType\": \"Raise\",\n    \"accountId\": \"{{accountId}}\",\n    \"currency\": \"GBP\",\n    \"assetId\": \"{{rtAssetId}}\",\n    \"amount\": 1000\n}"},"url":"{{pfolioApiRoute}}/portfoliotransaction"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"131"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 28 Mar 2025 11:42:13 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67e68b14-6bafc78d6c3eab6e6d6db5a8;Parent=2ec02d7111c98b34;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"c84969d9-b78c-4bbb-a328-0d0e43a7011e"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"131"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IIqrPFSrjoEEStg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"83-NJoYWrRKiQojsjv6TEcwFtrC4eQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4c3c0be12954d0bfb5e695119bb76338.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"93jJqkp5wC2Jhdynszqv2-gc8c_d_bCpfxKTCes3z5wbXtL20pqaQg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Insufficient stock for this transaction\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"5194924b-efa0-4bd1-8dd6-b9e41aa7a75a"},{"name":"Observe the Raise Trade at Pending status","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolRaiseTxnId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"7d3c5399-d324-46c7-84c1-170737537870","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/{{happyPathRaiseTradeOrderId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{happyPathRaiseTradeOrderId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"bb495574-c0cd-4705-8680-255ecc39ba51","name":"Observe the Raise Trade at Pending status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/{{happyPathRaiseTradeOrderId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"841"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:07:18 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc6766-1ec722a849c5623a1635654b;Parent=41f9f4f71a24ec2f;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"c85b92be-0d4c-4b41-975c-033fb99cc88a"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"841"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvUYBE0gDoEEoJw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"349-yeJggQUqsKadfeiTwbxtQV+O8FI\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 17d60a367e7e38c01f5a3242a9a3e784.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"DIXlCdzwkzCezVs7nhtK54ZXeCiQmHgPeIOS88Pt7ikA-GWjJXJA-A=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000M2N1N\",\n        \"firmId\": \"SECCI\",\n        \"transactionType\": \"Order\",\n        \"transactionSubType\": \"At Best\",\n        \"movementType\": \"Raise\",\n        \"accountId\": \"A05WQ3V\",\n        \"currency\": \"GBP\",\n        \"assetId\": \"29F55\",\n        \"amount\": 500,\n        \"transactionDate\": \"2025-03-20T00:00:00.000Z\",\n        \"status\": \"Pending\",\n        \"intendedSettlementDate\": \"2025-03-24T00:00:00.000Z\",\n        \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n        \"isin\": \"GB00BZ82ZW98\",\n        \"mic\": \"XOFF\",\n        \"instrumentType\": \"Fund\",\n        \"statusChanges\": [\n            {\n                \"status\": \"Pending\",\n                \"statusDate\": \"2025-03-20T19:06:46.501Z\",\n                \"description\": \"Order request created\"\n            }\n        ],\n        \"checkingResults\": [\n            {\n                \"rule\": \"Check transaction\",\n                \"passed\": true\n            }\n        ],\n        \"nodeId\": \"0\",\n        \"createdDate\": \"2025-03-20T19:06:46.931Z\",\n        \"auditDetails\": {\n            \"updateDate\": \"2025-03-20T19:06:46.939Z\",\n            \"userFirmId\": \"SECCL\",\n            \"userId\": \"TESTUSER\",\n            \"version\": 1,\n            \"application\": \"PfolioEventAPI\"\n        },\n        \"updateId\": \"67dc674634da7e7d5b3e9167\"\n    }\n}"}],"_postman_id":"7d3c5399-d324-46c7-84c1-170737537870"},{"name":"[Staging only] Mock Complete RT order","id":"d30ecb33-9111-461f-b38e-ced89dc90a9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 500,\n        \"executedQuantity\": 2.1857\n    },\n    \"quantity\": 2.1857,\n    \"amount\": 500,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{happyPathRaiseTradeOrderId}}","description":"<p>This mocks a completed order.</p>\n<p>In this scenario, we have sold £500, and we know the price of the asset is 228.7697, so the quantity we must sell to raise £500 is:</p>\n<p>quantity = ROUNDUP( amountToRaise / assetPrice, minimumDecimalPlaces)</p>\n<p>In our example:</p>\n<ul>\n<li><p>amountToRaise = 500</p>\n</li>\n<li><p>assetPrice = 228.7697</p>\n</li>\n<li><p>minimumDecimalPlaces = 4 (because the minimumTransferUnit is 0.0001, which is to 4 decimal places)</p>\n</li>\n</ul>\n<p>quantity = ROUNDUP( 500 / 228.7697, 4) = 2.1857</p>\n<p>We have entered the relevant values in the request for you, assuming you are following the tutorial.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{happyPathRaiseTradeOrderId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d30ecb33-9111-461f-b38e-ced89dc90a9d"},{"name":"Observe the Raise Trade at Completed status","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["var data = pm.response.json();","console.log(data);","var firstElement = data.data[0];","if (firstElement && firstElement.id) {","    pm.environment.set(\"pfolRaiseTxnId\", firstElement.id);","} else {","    console.log(\"Unable to find the 'id' in the response data.\");","}",""],"type":"text/javascript","packages":{}}}],"id":"90b3edfb-0b29-4aea-8549-93827b4cbdb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/{{happyPathRaiseTradeOrderId}}","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{happyPathRaiseTradeOrderId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"72d0c5e6-0b30-4d44-9517-3fde265aa2a9","name":"Observe the Raise Trade at Completed status","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/{{happyPathRaiseTradeOrderId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1146"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:12:53 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc68b4-26a8a97e4e07f2c6077a9411;Parent=592cbdaa0f18fba1;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"4fe42282-cde0-45e8-931f-bf40e6d9b108"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1146"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvVMVEquDoEEESA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"47a-c++RYXf0PuK1QVIMkHzDAAIcmn4\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 133321d9ca8be95a19f574700824c0e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"v_s_J7RfGtb1iZT6h_dLGV37bT_28UKudP99v9EjO_mxOlQjDji1oQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000M2N1N\",\n        \"firmId\": \"SECCI\",\n        \"transactionType\": \"Order\",\n        \"transactionSubType\": \"At Best\",\n        \"movementType\": \"Raise\",\n        \"accountId\": \"A05WQ3V\",\n        \"currency\": \"GBP\",\n        \"assetId\": \"29F55\",\n        \"amount\": 500,\n        \"transactionDate\": \"2025-03-10T00:00:00.000Z\",\n        \"status\": \"Completed\",\n        \"intendedSettlementDate\": \"2025-03-10T00:00:00.000Z\",\n        \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n        \"isin\": \"GB00BZ82ZW98\",\n        \"mic\": \"XOFF\",\n        \"instrumentType\": \"Fund\",\n        \"statusChanges\": [\n            {\n                \"status\": \"Pending\",\n                \"statusDate\": \"2025-03-20T19:06:46.501Z\",\n                \"description\": \"Order request created\"\n            },\n            {\n                \"statusDate\": \"2025-03-20T19:12:00.945Z\",\n                \"status\": \"Completed\",\n                \"description\": \"Order executed\"\n            }\n        ],\n        \"checkingResults\": [\n            {\n                \"rule\": \"Check transaction\",\n                \"passed\": true\n            }\n        ],\n        \"nodeId\": \"0\",\n        \"createdDate\": \"2025-03-20T19:06:46.931Z\",\n        \"auditDetails\": {\n            \"updateDate\": \"2025-03-20T19:12:00.951Z\",\n            \"userFirmId\": \"SECCL\",\n            \"userId\": \"TESTUSER\",\n            \"version\": 2,\n            \"application\": \"PfolioEventAPI\"\n        },\n        \"updateId\": \"67dc688043cba8a96d24dc7e\",\n        \"completedDate\": \"2025-03-20T19:12:00.441Z\",\n        \"consideration\": 500,\n        \"executedAmount\": 500,\n        \"executedQuantity\": 2.1857,\n        \"executionDetails\": {\n            \"currency\": \"GBP\",\n            \"price\": 228.7697,\n            \"transactionTime\": \"00:00:00\",\n            \"venue\": \"XLON\"\n        }\n    }\n}"}],"_postman_id":"90b3edfb-0b29-4aea-8549-93827b4cbdb4"},{"name":"Observe the cash from Raise Trade on the account","id":"7b765f8f-0f2e-4570-9b48-23e071f79d65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/cash/{{firmId}}?accountId={{accountId}}","description":"<p>This command returns the cash posting objects. Cash posting objects are the individual cash movements on an account that occur when a transaction status change causes a movement on the account.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node</p>\n<hr />\n<p><code>accountId</code> alphanumerical string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO code</p>\n<hr />\n<p><code>positionType</code> string</p>\n<p>This will be set to <code>Cash</code></p>\n<hr />\n<p><code>transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transactionCode</code> string</p>\n<p>The transaction code, which can be retrieved from the static data</p>\n<hr />\n<p><code>narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>valueDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>clients</code> array</p>\n<p>Contains details of the client</p>\n<hr />\n","urlObject":{"path":["posting","cash","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"transactionCode","value":"CPIN,AFOF"},{"key":"accountId","value":"{{accountId}}"},{"disabled":true,"key":"postDateFrom","value":"YYYY-MM-DD"},{"disabled":true,"key":"postDateTo","value":"YYYY-MM-DD"},{"disabled":true,"key":"nodeId","value":"<nodeId>"}],"variable":[]}},"response":[{"id":"b28483c8-1b91-4ef5-9930-ef89615ab3cd","name":"Observe the cash from Raise Trade on the account","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/posting/cash/{{firmId}}?accountId={{accountId}}","host":["{{apiRoute}}"],"path":["posting","cash","{{firmId}}"],"query":[{"key":"transactionCode","value":"CPIN,AFOF","disabled":true},{"key":"accountId","value":"{{accountId}}"},{"key":"postDateFrom","value":"YYYY-MM-DD","disabled":true},{"key":"postDateTo","value":"YYYY-MM-DD","disabled":true},{"key":"nodeId","value":"<nodeId>","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1081"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:14:34 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc691a-498f720a4420fec91e971d7d;Parent=7a974644199bbc08;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"76e33e84-c70a-4754-be07-cc7466a54dc7"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1081"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvVcJGGDjoEEY6g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"439-pmJn3xx9nxEDHXYsgAOYrGtiQtE\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 133321d9ca8be95a19f574700824c0e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"M2c4lwNcyCFM2TlQDDwDjHRqsAoUi_CXCfBZop3boW3ibgPSBZ7PCw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"A05WQ3V\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000M2N14\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2025-03-20T17:48:56.679Z\",\n            \"valueDate\": \"2025-03-20T17:48:56.319Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Wilma Flintstone\",\n                    \"id\": \"C068WP3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"A05WQ3V\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000M2N16\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2025-03-20T17:54:25.061Z\",\n            \"valueDate\": \"2025-03-20T17:54:24.348Z\",\n            \"amount\": -1000,\n            \"clients\": [\n                {\n                    \"name\": \"Wilma Flintstone\",\n                    \"id\": \"C068WP3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"A05WQ3V\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000M2N1N\",\n            \"transactionCode\": \"SELL\",\n            \"narrative\": \"Sell\",\n            \"postDate\": \"2025-03-20T19:12:01.983Z\",\n            \"valueDate\": \"2025-03-20T19:12:00.441Z\",\n            \"amount\": 500,\n            \"clients\": [\n                {\n                    \"name\": \"Wilma Flintstone\",\n                    \"id\": \"C068WP3\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 3\n    }\n}"}],"_postman_id":"7b765f8f-0f2e-4570-9b48-23e071f79d65"},{"name":"Observe the stock from Raise Trade removed from account","id":"8706faa1-e844-4cf1-8309-77e035d991cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/stock/{{firmId}}?accountId={{accountId}}&assetId={{rtAssetId}}","description":"<p>This command returns stock posting objects. Stock posting objects are the individual stock movements on an account that occur when a transaction status change causes a movement on the account.</p>\n<p>You will need to reference the <code>accountId</code> as well as the specific <code>assetId</code> to narrow down your search to find the relevant Raise Trade movement.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node</p>\n<hr />\n<p><code>accountId</code> alphanumerical string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO code</p>\n<hr />\n<p><code>positionType</code> string</p>\n<p>This will be set to <code>Stock</code></p>\n<hr />\n<p><code>assetId</code> alphanumerical string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transactionCode</code> string</p>\n<p>The transaction code, which can be retrieved from the static data</p>\n<hr />\n<p><code>narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>valueDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>quantity</code> float</p>\n<p>The number of units</p>\n<hr />\n<p><code>clients</code> array</p>\n<p>Contains details of the client</p>\n<hr />\n","urlObject":{"path":["posting","stock","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"accountId","value":"{{accountId}}"},{"key":"assetId","value":"{{rtAssetId}}"}],"variable":[]}},"response":[{"id":"15cd6b64-5313-4ec9-8944-68ede15b4f09","name":"Observe the stock from Raise Trade removed from account","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/posting/stock/{{firmId}}?accountId={{accountId}}&assetId={{rtAssetId}}","host":["{{apiRoute}}"],"path":["posting","stock","{{firmId}}"],"query":[{"key":"accountId","value":"{{accountId}}"},{"key":"assetId","value":"{{rtAssetId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"814"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:15:56 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc696c-77c5c63a47c9cc7f695702f1;Parent=7e04e2afee29d414;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"e2c1fb75-f6fb-4eb5-811f-4dfb6a748311"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"814"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvVpDGRvDoEEGBA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"32e-NvdfyweZ64WJieOBHT0zEeVPoSE\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 133321d9ca8be95a19f574700824c0e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"oJAh9KIfL2S-Ui9H3AX-B2vt4ub3akGDsVCI-6lgBDpGKAqiGnsLyQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"A05WQ3V\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"29F55\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"transactionId\": \"0000M2N16\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2025-03-20T17:54:24.966Z\",\n            \"valueDate\": \"2025-03-20T17:54:24.348Z\",\n            \"quantity\": 4.3712,\n            \"clients\": [\n                {\n                    \"name\": \"Wilma Flintstone\",\n                    \"id\": \"C068WP3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SECCI\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"A05WQ3V\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"29F55\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"transactionId\": \"0000M2N1N\",\n            \"transactionCode\": \"SELL\",\n            \"narrative\": \"Sell\",\n            \"postDate\": \"2025-03-20T19:12:01.836Z\",\n            \"valueDate\": \"2025-03-20T19:12:00.441Z\",\n            \"quantity\": -2.1857,\n            \"clients\": [\n                {\n                    \"name\": \"Wilma Flintstone\",\n                    \"id\": \"C068WP3\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"8706faa1-e844-4cf1-8309-77e035d991cd"},{"name":"Observe the available cash and stock on the account after Raise Trades","event":[{"listen":"test","script":{"id":"bfd44ea2-1367-4aa9-9855-5675c7ed033a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript"}}],"id":"38a41faf-b0fb-409b-a2f9-02d777cc5050","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/{{firmId}}/{{accountId}}","description":"<p>This command returns the Live Account Summary (LAS) object for the specified account. The LAS represents the account's available cash and stock balances, which are the completed balances less any in-flight transactions that are being ring-fenced.</p>\n<p>If you have followed this tutorial closely, you will now be able to see that the stock quantity and value of the raise trade asset has been reduced, since you have sold £500 worth of stock. In turn, you can see the available cash has been increased by £500.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>firmId</code></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached to</p>\n<hr />\n<p><code>name</code></p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code of the account. Currently only GBP is supported</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail</code></p>\n<p>Contains details of the investment account</p>\n<hr />\n<p><code>recurringPayment</code> boolean</p>\n<p>States whether or not there is a recurring payment on the account</p>\n<hr />\n<p><code>recurringOrders</code> array</p>\n<p>Contains details of any recurring order allocation on the account</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientId</code></p>\n<p>The unique identifier of the client account</p>\n<hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.id</code> string</p>\n<p>The unique identifier of the position.<br />For cash positions consisting of <code>accountId</code>|<code>C</code>|<code>position currency</code><br />For stock positions consisting of <code>accountId</code>|<code>S</code>|<code>isin</code></p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.instrumentType</code> enum</p>\n<p>The type of instrument this position represents</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Equity</code></td>\n<td>An equity</td>\n</tr>\n<tr>\n<td><code>ETF</code></td>\n<td>An ETF</td>\n</tr>\n<tr>\n<td><code>Investment Trust</code></td>\n<td>An investment trust</td>\n</tr>\n<tr>\n<td><code>Fund</code></td>\n<td>A fund</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.accountId</code> string</p>\n<p>The ID of the account for this position</p>\n<hr />\n<p><code>positions.amount</code> float</p>\n<p>For cash positions, the amount of available cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The current number of available units in the holding, after any units have been removed for ring-fencing. For previously held assets, they will be included in the response with a zero amount of units</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The value of the available position as at the last known price for this asset.</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code of the position</p>\n<hr />\n<p><code>positions.prices</code> array</p>\n<p>An array of the prices used to calculate the value of the position. See 'Prices' in the platform management section for more detail on the prices object.</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentSellPrice</code> float</p>\n<p>The current sell price of the asset.</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system. This is the date of the price being used and may be prior to the current date or toDate used (for example when the toDate is a non-trading day)</p>\n<hr />\n<p><code>positions.updateId</code> string</p>\n<p>The unique identifier assigned to the position when it was last updated</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.auditDetails</code> nested object</p>\n<p>Details of when the position was last updated</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current available value of the account.</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n","urlObject":{"path":["account","summary","live","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"8ed06a01-cb79-4275-afd1-d698ef07b6f3","name":"Observe the available cash and stock on the account after Raise Trades","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2112"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 20 Mar 2025 19:19:06 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67dc6a25-016241944f5aff6f08007219;Parent=59aa45471345ce4f;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"6e9ea493-027d-429e-a2b4-24fd8483c2db"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2112"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"HvWF3FcZDoEEBjw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"840-vlA4/8KoRvx0elAT3X+VZ/XiXNo\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 133321d9ca8be95a19f574700824c0e0.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"6QpYtCuC1ZZe0j0mOtn_m-fVCkzKeHxc_XMCYKVuM-LADpSEB6wrmQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"A05WQ3V\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"name\": \"Raise Trades Testing\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"wrapperType\": \"GIA\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"clientProductId\": \"67dc54bae97e306b57c508d0\"\n        },\n        \"recurringPayment\": false,\n        \"status\": \"Active\",\n        \"clientId\": \"C068WP3\",\n        \"clientNames\": [\n            \"Wilma Flintstone\"\n        ],\n        \"positions\": [\n            {\n                \"id\": \"A05WQ3V|C|GBP\",\n                \"accountId\": \"A05WQ3V\",\n                \"accountName\": \"Raise Trades Testing\",\n                \"accountType\": \"Wrapper\",\n                \"amount\": 500,\n                \"auditDetails\": {\n                    \"application\": \"PortfolioProcessor\",\n                    \"updateDate\": \"2025-03-20T19:12:01.983Z\",\n                    \"userFirmId\": \"BACKGROUND\",\n                    \"userId\": \"Background\",\n                    \"version\": 3\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Cash\",\n                \"updateId\": \"67dc68815fa5ea73d18fba5b\",\n                \"currentValue\": 500\n            },\n            {\n                \"id\": \"A05WQ3V|S|GB00BZ82ZW98\",\n                \"accountId\": \"A05WQ3V\",\n                \"accountName\": \"Raise Trades Testing\",\n                \"accountType\": \"Wrapper\",\n                \"assetId\": \"29F55\",\n                \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n                \"auditDetails\": {\n                    \"application\": \"PortfolioProcessor\",\n                    \"updateDate\": \"2025-03-20T19:12:01.837Z\",\n                    \"userFirmId\": \"BACKGROUND\",\n                    \"userId\": \"Background\",\n                    \"version\": 2\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"isin\": \"GB00BZ82ZW98\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Stock\",\n                \"quantity\": 2.1855,\n                \"updateId\": \"67dc68815fa5ea73d18fba59\",\n                \"prices\": [\n                    {\n                        \"assetId\": \"29F55\",\n                        \"priceDate\": \"2024-07-01T00:00:00.000Z\",\n                        \"ask\": 228.7697,\n                        \"mid\": 228.7697,\n                        \"bid\": 228.7697,\n                        \"quoteUnit\": 1,\n                        \"minimumTransferUnit\": 0.0001,\n                        \"currency\": \"GBP\",\n                        \"exchangeRates\": [],\n                        \"instrumentType\": \"Fund\",\n                        \"ocfCalculated\": 0.0051\n                    }\n                ],\n                \"closingPrice\": {\n                    \"assetId\": \"29F55\",\n                    \"priceDate\": \"2024-07-01T00:00:00.000Z\",\n                    \"ask\": 228.7697,\n                    \"mid\": 228.7697,\n                    \"bid\": 228.7697,\n                    \"quoteUnit\": 1,\n                    \"minimumTransferUnit\": 0.0001,\n                    \"currency\": \"GBP\",\n                    \"exchangeRates\": [],\n                    \"instrumentType\": \"Fund\",\n                    \"ocfCalculated\": 0.0051\n                },\n                \"currentPrice\": 228.7697,\n                \"currentSellPrice\": 228.7697,\n                \"instrumentType\": \"Fund\",\n                \"minimumTransferUnit\": 0.0001,\n                \"currentPriceDate\": \"2024-07-01T00:00:00.000Z\",\n                \"currentValue\": 499.98,\n                \"assetInstrumentType\": \"Fund\",\n                \"assetCountryOfIssue\": \"GB\",\n                \"assetTaxDetails\": [\n                    {\n                        \"taxDomicile\": \"GB\",\n                        \"taxCalculation\": \"GROSS\",\n                        \"reportCategory\": \"UK Dividend\"\n                    }\n                ]\n            }\n        ],\n        \"completeTransactions\": [],\n        \"currentValue\": 999.98,\n        \"uninvestedCash\": 500\n    }\n}"}],"_postman_id":"38a41faf-b0fb-409b-a2f9-02d777cc5050"}],"id":"3335b8a5-fbc5-4cd1-b3fc-601c4b759b50","description":"<p>The first use case made available is to create a singular Raise Trade. This will not be linked to any other transactions, but will introduce the concept of the Raise Trade, how it is instructed, how it looks as a transaction in different states, and what happens to the cash and stock on the client account once completed.</p>\n<p>The set of instructions in this folder will take you on the end to end journey of:</p>\n<ol>\n<li><p>Observing the available cash and stock balances on the account before you make the trade</p>\n</li>\n<li><p>Describe what API errors you might find</p>\n</li>\n<li><p>Create a valid Raise Trade instruction</p>\n</li>\n<li><p>Observing what the transaction looks like when it is at Pending status</p>\n</li>\n<li><p>Completing the order (emulating the production environment)</p>\n</li>\n<li><p>Observing what the transaction looks like when it is at Completed status</p>\n</li>\n<li><p>Observing the cash and stock movements that happen on the account as a result of the trade</p>\n</li>\n<li><p>Observing the available cash and stock balances on the account as a result of the trade</p>\n</li>\n</ol>\n<h2 id=\"valid-asset-types\">Valid asset types</h2>\n<ul>\n<li><p>Fund</p>\n</li>\n<li><p>ETF, only if:</p>\n<ul>\n<li><p>Your firm has fractional trading enabled, and</p>\n</li>\n<li><p>You do not charge dealing fees on ETF orders</p>\n</li>\n</ul>\n</li>\n</ul>\n<h2 id=\"invalid-asset-types\">Invalid asset types</h2>\n<ul>\n<li><p>ETF, only if:</p>\n<ul>\n<li><p>Your firm does not have fractional trading enabled, or</p>\n</li>\n<li><p>You charge dealing fees on ETF orders</p>\n</li>\n</ul>\n</li>\n<li><p>Equity</p>\n</li>\n<li><p>Investment Trust</p>\n</li>\n<li><p>Bond</p>\n</li>\n</ul>\n","_postman_id":"3335b8a5-fbc5-4cd1-b3fc-601c4b759b50"}],"id":"dba3d566-8a52-4de2-8b6c-20cf3b74802c","_postman_id":"dba3d566-8a52-4de2-8b6c-20cf3b74802c","description":""},{"name":"Transaction Groups with orders","item":[{"name":"Raise Trade in a PTG","item":[{"name":"Create a PTG with Raise Trade","event":[{"listen":"test","script":{"id":"cc78e16b-672a-4076-b98b-bf4663031c3f","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"raiseOrderPtgId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"5c870a8e-d631-481f-ba57-d6a3faf4e2ec","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"amount\": 1000\n        }\n    ]\n\n }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p><strong>Parameters</strong></p>\n<p><strong>The parameters documentation below will explicitly refer to instructing a Raise Trade. You can combine this with most other transaction types that you find in the full API documentation on this page - such as a Withdrawal or Invest order.</strong></p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong><br />Universal array used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>Must be <code>Order</code> for Raise Trade</p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>Must be <code>At Best</code> for Raise Trades</p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>Must be <code>Raise</code> for Raise Trades</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Must be <code>GBP</code></p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the asset you want to trade</p>\n<hr />\n<p><code>transactions.amount</code> int or float <strong>Required</strong></p>\n<p>The GBP value you want to raise from selling the asset holding.</p>\n<p>Must be:</p>\n<ul>\n<li><p>Greater than 0.01</p>\n</li>\n<li><p>Greater than or equal to the minimum raise amount</p>\n</li>\n<li><p>Less than or equal to the maximum raise amount</p>\n</li>\n<li><p>No greater than 2 decimal places</p>\n</li>\n</ul>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"6ec61b88-9540-4fcf-9035-a76fa1a0572e","name":"Success - Instruct a Raise Trade in a PTG","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"amount\": 500\n        }\n    ]\n\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 06:50:34 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"5b360022-9c92-4622-a8c7-2bc6b27170d1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IR4xJFa5DoEEr6w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-ZkMmphA0kO9o6indouVb/RXKWds\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea3b3a-5e1d5e267de0dfd268647665;Parent=1de3c332d5df919e;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00008LLSQ\"\n    }\n}"},{"id":"12c566b1-be19-4dad-9a6d-33bca450fd86","name":"Error - Without an amount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\"\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 09:18:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"237"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"e01a057e-20a5-4e11-a917-d7d315383803"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"237"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ISOeZFe9joEEmzg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"ed-UStXgWNIMQrbHK/l32JE86aZu10\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea5df5-5020c1646368b12a513edc21;Parent=67f5a9cb64f6a6b9;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Orders with movementType of Raise require an amount value\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"5b2a0982-1a2c-4a7e-912b-766b6573ea7f","name":"Error - With a percentage","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"percentage\": 0.5\n        }\n    ]\n\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 05:33:30 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"237"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"cf7336e2-ac3d-4160-8b45-e18d92855e5d"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"237"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IVAZtFV-DoEEYTg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"ed-UStXgWNIMQrbHK/l32JE86aZu10\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67eb7aa4-11c194924db319813684dfe7;Parent=3c5d0563e8f254b0;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Orders with movementType of Raise require an amount value\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"1f73ed94-7297-47d8-9fd7-28e1b47c4d86","name":"Error - With a quantity","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"quantity\": 0.01\n        }\n    ]\n\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 01 Apr 2025 05:38:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"237"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"acd4a313-a2db-4462-adf1-92eaee061d11"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"237"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IVBKkFCDjoEEJLw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"ed-UStXgWNIMQrbHK/l32JE86aZu10\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67eb7bdc-075ceff52e57a2ca4bd44d59;Parent=4c58f14d6bab4a24;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"amount\",\n                \"errorMessage\": \"Orders with movementType of Raise require an amount value\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"23974894-8c8d-48c5-91a6-2a0c07c291bd","name":"Error - No assetId provided","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 500\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 08:57:38 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"240"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"79a634e5-aa99-46f5-a034-d18b08b781dd"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"240"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ISLYbE__DoEEp2A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"f0-v4xBDarokT4KH6JsOOVjAtFklYw\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea5902-5dd03fd427422a1c05f166ea;Parent=42b6d60f8aaa0565;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Transaction(s) missing valid assetId(s)\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"request.data.transactions[0].assetId\",\n                \"errorMessage\": \"Missing valid assetId\",\n                \"type\": \"presence\"\n            }\n        ]\n    }\n}"},{"id":"9c1ae9b2-b728-420d-b199-9f81fae4076c","name":"Error - Invalid instrumentType","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"assetId\": \"{{equityAssetId}}\"\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 08:58:58 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"235"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"7ca96454-48d7-486e-98b3-2a14c936cd06"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"235"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ISLk7EIljoEEZgg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"eb-nxZE+8jSxTw96IYqbfS5lq5Cs3E\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea5952-6f16f78c075b295256e532be;Parent=2d32208de80e5903;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"movementType\",\n                \"errorMessage\": \"Raise is not supported for instrument type Equity\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"33fbf085-aad7-4985-94b9-1d9ad47db272","name":"Error - Dealing charges on asset","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 1,\n            \"assetId\": \"286Q5\"\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 13:29:28 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"261"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"bbec48c2-386a-4033-9cc0-ee55ce58e832"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"261"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ISzL6F-kjoEEFVw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"105-Oi3387W/18ILbB0dSfzCIy9+DI8\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea98b2-0d328f905bafa31142756c57;Parent=76dec0f12189967a;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"movementType\",\n                \"errorMessage\": \"Raise is not supported with node dealing charges for instrument type of ETF\",\n                \"type\": \"usage\"\n            }\n        ]\n    }\n}"},{"id":"29b445e6-796b-430f-9a1c-ba5c4f8398d5","name":"Error - More than the maximum % of holding for raise trades","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"amount\": 1000\n        }\n    ]\n\n }"},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 14:37:33 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"282"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"1233c45f-b6a8-4cc6-8206-8ead9bf1f267"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"282"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IZjDEFfyDoEEkmQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"11a-pm01SA0NxnRiL2w7C5XCgy+AHxU\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ed4bac-7bfac3c4416a9951644cf42a;Parent=181f15002d5831aa;Sampled=0;Lineage=1:2bb66e27:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Insufficient available balances to facilitate this request\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"quantity\",\n                \"errorMessage\": \"Insufficient available stock quantity on account 036338C for assetId: 29F55\",\n                \"type\": \"value\"\n            }\n        ]\n    }\n}"}],"_postman_id":"5c870a8e-d631-481f-ba57-d6a3faf4e2ec"}],"id":"0805e329-5940-40d3-835c-c2395d9c488b","description":"<p>A Portfolio Transaction Group (PTG) is an instruction to perform a set of <code>transactions</code> . The transactions are linked together (by a <code>linkId</code> ) and progress as a chain of events. Most often, Sell-like transactions (such as Raise) progress first, and other linked transactions wait for the sells to <code>Complete</code> before moving on to their next state.</p>\n<p>In contrast to the Single Raise Trade instruction, PTGs are instructed as an array of transactions to the <code>/portfolioTransactionGroup</code> endpoint. This returns a <code>linkId</code> in the <code>data.id</code> attribute after a valid instruction is accepted.</p>\n","_postman_id":"0805e329-5940-40d3-835c-c2395d9c488b"},{"name":"Sell and Invest","item":[{"name":"Instruct a sell and invest","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"transactionGroupId\", data.data.id)"],"type":"text/javascript","id":"d83540d2-8b1b-4aaa-8c22-3bd31c903354"}}],"id":"4c2d5ef3-cfca-4151-980e-047332e4ff37","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n       \"firmId\": \"{{firmId}}\",\n       \"accountId\": \"{{accountId}}\",\n       \"transactions\": [\n            {\n             \"firmId\": \"{{firmId}}\",\n             \"transactionType\": \"Order\",\n             \"transactionSubType\": \"At Best\",\n             \"movementType\": \"Sell\",\n             \"accountId\": \"{{accountId}}\",\n             \"currency\": \"GBP\",\n             \"assetId\": \"26NHB\",\n             \"quantity\": 6397.953\n           },\n           {\n             \"firmId\": \"{{firmId}}\",\n             \"transactionType\": \"Order\",\n             \"transactionSubType\": \"At Best\",\n             \"movementType\": \"Invest\",\n             \"accountId\": \"{{accountId}}\",\n             \"currency\": \"GBP\",\n             \"assetId\": \"284PF\",\n             \"percentage\": 1\n           }\n       ]\n    }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Each item in the transactions array can be an order. You can combine sells and buys so that the buys are a percentage of the sell amount.</p>\n<p>If the percentage does not add up to a whole (1), anything remaining will be added to the account's available cash.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sell</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n<p><code>transactions.quantity</code> decimal string <strong>Required</strong><br />The share quantity of the asset sold down</p>\n<hr />\n<h4 id=\"returns\"><strong>Returns</strong></h4>\n<p>Returns an order expectation</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4c2d5ef3-cfca-4151-980e-047332e4ff37"}],"id":"d5393397-47a2-45ff-ac29-79540e84e80d","description":"<p>Reduce the time out of the market, by chaining an invest order to be triggered when a sell order has executed.</p>\n<p>Use this request to implement a \"switch\" between assets in your investor's account.</p>\n","_postman_id":"d5393397-47a2-45ff-ac29-79540e84e80d"},{"name":"Sell and Withdraw (Raise Trade)","item":[{"name":"Sell and withdraw (Raise Trade)","event":[{"listen":"test","script":{"id":"cc78e16b-672a-4076-b98b-bf4663031c3f","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"sellAndWithdrawLinkId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"5f73cf37-f91b-4b0b-bc76-a283d74933a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"amount\": 500\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"method\": \"BACS Credit\"\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup","description":"<p>You can define your own sell amounts and withdraw the proceeds. By leaving the Withdrawal amount blank, you can withdraw the full proceeds of the linked Raise orders.</p>\n<p>Returns a <code>linkId</code> in the <code>data.id</code> attribute.</p>\n<p><strong>Parameters</strong></p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong><br />Universal array used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<ul>\n<li><p><code>Order</code> for Raise Trade</p>\n</li>\n<li><p><code>Payment</code> for Withdrawal</p>\n</li>\n</ul>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>Must be <code>At Best</code> for Raise Trades</p>\n<ul>\n<li><p><code>At Best</code> for Raise Trade</p>\n</li>\n<li><p><code>Withdrawal</code> for Withdrawal</p>\n</li>\n</ul>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<ul>\n<li><p><code>Raise</code> for Raise Trade</p>\n</li>\n<li><p><code>Out</code> for Withdrawal</p>\n</li>\n</ul>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the account</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Must be <code>GBP</code></p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<ul>\n<li><p>The unique identifier for the asset you want to trade</p>\n</li>\n<li><p>Not required for the Withdrawal</p>\n</li>\n</ul>\n<hr />\n<p><code>transactions.amount</code> int or float <strong>Required</strong></p>\n<p><strong>For Raise</strong> <strong><code>movementType</code></strong></p>\n<p>The GBP value you want to raise from selling the asset holding.</p>\n<p>Must be:</p>\n<ul>\n<li><p>Greater than 0.01</p>\n</li>\n<li><p>Greater than or equal to the minimum raise amount</p>\n</li>\n<li><p>Less than or equal to the maximum raise amount</p>\n</li>\n<li><p>No greater than 2 decimal places</p>\n</li>\n</ul>\n<p><strong>For</strong> <strong><code>transactionSubType: Withdrawal</code></strong></p>\n<ul>\n<li>Not required</li>\n</ul>\n<p>If you leave the <code>amount</code> undefined on a Withdrawal, it will default to the amount realised by the Raise Trade</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<ul>\n<li><p>Not required for Raise Trade</p>\n</li>\n<li><p><code>BACS Credit</code> for Payment <code>transactionTypes</code></p>\n</li>\n</ul>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"31e9ea71-2c7d-4fee-a5be-fe9a64235a44","name":"Sell and withdraw (Raise Trade)","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":" {\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{rtAssetId}}\",\n            \"amount\": 500\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"method\": \"BACS Credit\"\n        }\n    ]\n }"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 07:14:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"00ce1fb2-40cd-4013-8669-941223c27fea"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IR8OTH7qDoEEUow="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-kN9zFRwtmRN8DdQUk0dzZZPU4aE\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea40c1-6443b41d12b8d71e72b05eef;Parent=45d31c94463e830f;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00008LM14\"\n    }\n}"}],"_postman_id":"5f73cf37-f91b-4b0b-bc76-a283d74933a4"},{"name":"Observe the transaction group at creation","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["// Parse the response JSON","let response = pm.response.json();","","// Find the object with movementType \"XYZ\"","let targetObject = response.data.find(item => item.movementType === \"Raise\");","","if (targetObject) {","    // Set the environment variable with the found object's id","    pm.environment.set(\"sellAndWithdrawRaiseId\", targetObject.id);","    console.log(\"Environment variable set: sellAndWithdrawRaiseId =\", targetObject.id);","} else {","    console.log(\"No matching object found with movementType 'Raise'\");","}",""],"type":"text/javascript","packages":{}}}],"id":"06c6456f-73da-4d40-9904-ab24c062291a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{sellAndWithdrawLinkId}}","description":"<p>We retrieve all the transactions in a PTG by querying by the <code>linkId</code> URL parameter.</p>\n<p>Here you can see that the Payment-Withdrawal-Out has been created alongside the Order-At Best-Raise transaction.</p>\n<p>The <code>status</code> of the transactions are:</p>\n<ul>\n<li><p>Raise trade is <code>Pending</code></p>\n</li>\n<li><p>Withdrawal is <code>Waiting</code></p>\n</li>\n</ul>\n<p>You can see the Withdrawal does not have an <code>amount</code> set yet. When the Raise completes, the Withdrawal's <code>status</code> will update to <code>Pending</code> and will have an <code>amount</code> set.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{pfolioApiRoute}}"],"query":[{"key":"linkId","value":"{{sellAndWithdrawLinkId}}"}],"variable":[]}},"response":[{"id":"050f31eb-c62d-4706-9cfd-4d3267936a85","name":"Observe the transaction group","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{sellAndWithdrawLinkId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{sellAndWithdrawLinkId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 07:20:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1622"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"8a6c9d9e-2fd2-4bfb-bd39-efd5f9517666"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1622"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IR9G8E3iDoEEvOw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"656-skK9hUkVfAxYS6sne0QRa1zkC80\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea422c-0021e88f23867665375156f6;Parent=567678d0a3c5eb3e;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00008LM18\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"035GGH1\",\n            \"currency\": \"GBP\",\n            \"method\": \"BACS Credit\",\n            \"status\": \"Waiting\",\n            \"linkId\": \"00008LM17\",\n            \"transactionDate\": \"2025-03-31T00:00:00.000Z\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Waiting\",\n                    \"statusDate\": \"2025-03-31T07:19:25.661Z\",\n                    \"description\": \"Payment request created, waiting for transactions to complete\"\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-31T07:19:25.672Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-31T07:19:25.681Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ea41fd009916b75d181da5\"\n        },\n        {\n            \"id\": \"00008LM1B\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"035GGH1\",\n            \"assetId\": \"29F55\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"status\": \"Pending\",\n            \"linkId\": \"00008LM17\",\n            \"transactionDate\": \"2025-03-31T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-04-02T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-31T07:19:26.136Z\",\n                    \"description\": \"Order request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-31T07:19:26.298Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-31T07:19:26.305Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ea41fe009916b75d181da8\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"06c6456f-73da-4d40-9904-ab24c062291a"},{"name":"[Staging only] Mock Complete RT order","id":"99fea749-ff8f-43da-88d4-2bafa0cbd6f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 500,\n        \"executedQuantity\": 2.1857\n    },\n    \"quantity\": 2.1857,\n    \"amount\": 500,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{sellAndWithdrawRaiseId}}","description":"<p>This mocks a completed order.</p>\n<p>In this scenario, we have sold £500, and we know the price of the asset is 228.7697, so the quantity we must sell to raise £500 is:</p>\n<p>quantity = ROUNDUP( amountToRaise / assetPrice, minimumDecimalPlaces)</p>\n<p>In our example:</p>\n<ul>\n<li><p>amountToRaise = 500</p>\n</li>\n<li><p>assetPrice = 228.7697</p>\n</li>\n<li><p>minimumDecimalPlaces = 4 (because the minimumTransferUnit is 0.0001, which is to 4 decimal places)</p>\n</li>\n</ul>\n<p>quantity = ROUNDUP( 500 / 228.7697, 4) = 2.1857</p>\n<p>We have entered the relevant values in the request for you, assuming you are following the tutorial.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{sellAndWithdrawRaiseId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2beca22b-4df8-4104-91f1-7beab17c6cfb","name":"[Staging only] Mock Complete RT order","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 500,\n        \"executedQuantity\": 2.1857\n    },\n    \"quantity\": 2.1857,\n    \"amount\": 500,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{sellAndWithdrawRaiseId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 07:25:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"bc245283-8d36-4617-b3d2-22a5319aac8e"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IR93rGxNDoEEq2A="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea4363-625fc85b5ba47b283d639551;Parent=0167a283cb0b1f00;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"99fea749-ff8f-43da-88d4-2bafa0cbd6f7"},{"name":"Observe the transaction group after Raise completes","id":"2d51874c-ca01-45c7-9ad9-b47335d52541","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{sellAndWithdrawLinkId}}","description":"<p>Now that the Raise trade has completed, the Withdrawal's <code>status</code> has updated to <code>Pending</code> and now has an <code>amount</code> set.</p>\n<p>You can observe the state changes of each transaction in their <code>statusChanges</code> array.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{pfolioApiRoute}}"],"query":[{"key":"linkId","value":"{{sellAndWithdrawLinkId}}"}],"variable":[]}},"response":[{"id":"6fd10912-ac9f-494c-afec-3d2c830f84d1","name":"Observe the transaction group after Raise completes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{sellAndWithdrawLinkId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{sellAndWithdrawLinkId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 31 Mar 2025 07:26:26 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2241"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"499a0571-2e2a-49f8-93cb-9f8eb044060d"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2241"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IR-BdFmjDoEEShQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"8c1-HXZOzCmZCTKG38ORHNwB681mr+s\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ea43a2-10a2e416068ebdaa250790de;Parent=6ef48e761240fd97;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00008LM18\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"035GGH1\",\n            \"currency\": \"GBP\",\n            \"method\": \"BACS Credit\",\n            \"status\": \"Pending\",\n            \"linkId\": \"00008LM17\",\n            \"transactionDate\": \"2025-03-31T00:00:00.000Z\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Waiting\",\n                    \"statusDate\": \"2025-03-31T07:19:25.661Z\",\n                    \"description\": \"Payment request created, waiting for transactions to complete\"\n                },\n                {\n                    \"statusDate\": \"2025-03-31T07:25:24.865Z\",\n                    \"status\": \"Pending\",\n                    \"description\": \"Linked transactions now completed\"\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-31T07:19:25.672Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-31T07:25:24.870Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ea4364009916b75d181db2\",\n            \"amount\": 500,\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank account status pending\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank details added within last 90 days\",\n                    \"passed\": true\n                }\n            ],\n            \"tradingFirm\": \"SCUST\"\n        },\n        {\n            \"id\": \"00008LM1B\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountId\": \"035GGH1\",\n            \"assetId\": \"29F55\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"status\": \"Completed\",\n            \"linkId\": \"00008LM17\",\n            \"transactionDate\": \"2025-03-31T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-03-31T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-03-31T07:19:26.136Z\",\n                    \"description\": \"Order request created\"\n                },\n                {\n                    \"statusDate\": \"2025-03-31T07:25:24.141Z\",\n                    \"status\": \"Completed\",\n                    \"description\": \"Order executed\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-03-31T07:19:26.298Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-03-31T07:25:24.146Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B3FF\",\n                \"version\": 2,\n                \"application\": \"PfolioEventAPI\"\n            },\n            \"updateId\": \"67ea4364658cc2ae1a8c8f2f\",\n            \"completedDate\": \"2025-03-31T07:25:24.089Z\",\n            \"consideration\": 500,\n            \"executedAmount\": 500,\n            \"executedQuantity\": 2.1857,\n            \"executionDetails\": {\n                \"currency\": \"GBP\",\n                \"price\": 228.7697,\n                \"transactionTime\": \"00:00:00\",\n                \"venue\": \"XLON\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"2d51874c-ca01-45c7-9ad9-b47335d52541"}],"id":"ed91e3cb-770a-4406-9614-33312ae52791","description":"<p>You can use a Raise Trade to sell a specific monetary amount of your assets and withdraw the proceeds in full.</p>\n","_postman_id":"ed91e3cb-770a-4406-9614-33312ae52791"},{"name":"Auto-disinvest with Raise Trades","item":[{"name":"Create a withdrawal with auto-disinvest using Raise Trades","event":[{"listen":"test","script":{"id":"1c79ba47-1725-4dfe-b057-8308aa8215f4","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"autoDisinvestLinkId\", data.data.id)"],"type":"text/javascript","packages":{}}}],"id":"93f1ba58-fd1a-487c-9a28-d87539eb9e0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"amount\": 500,\n            \"currency\": \"GBP\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates a single withdrawal with auto-disinvest and specifically using Raise Trades (sell by amount).</p>\n<p>To specify that you want to use Raise Trades in the disinvestment, you must use <code>autoDisinvestmentMethod: \"Amount\"</code></p>\n<p>If <code>autoDisinvestmentMethod</code> is not specified, or if \"Quantity\" is passed in to it, then quantity-based sells will be generated.</p>\n<p>A successful request returns a <code>linkId</code> as the <code>data.id</code>.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client's investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction taking place – this will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The action to be performed on the account – this will be set to <code>Withdrawal</code></p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>The payment method facilitating the withdrawal – this will be set to <code>BACS Credit</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Three-letter ISO code for the currency paid in or out of the account – this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.autoDisinvest</code> string <strong>Required</strong></p>\n<p>The type of auto-disinvestment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Largest</code></td>\n<td>Instructs a sell-down from the largest holding in the investment account</td>\n</tr>\n<tr>\n<td><code>Proportional</code></td>\n<td>Instructs a sell-down proportionally across the investment account</td>\n</tr>\n<tr>\n<td><code>Full</code></td>\n<td>(Not available if <code>autoDisinvestmentMethod = \"Amount\"</code>)  <br />  <br />Instructs a full sell-down with all the available stock in the investment account, and withdrawal the proceeds</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.autoDisinvestSellType</code> string <strong>Optional</strong></p>\n<p>The sell method to be used for the auto-disinvestment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Amount</code></td>\n<td>Uses Raise Trade sells (sell by amount)</td>\n</tr>\n<tr>\n<td><code>Quantity</code></td>\n<td>Uses Quantity sells</td>\n</tr>\n<tr>\n<td><code>null</code></td>\n<td>If not defined, default is <code>Quantity</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7cbd2a04-6920-44b6-a959-b60312b4818f","name":"Success - Create a withdrawal with auto-disinvest using Raise Trades","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"amount\": 500,\n            \"currency\": \"GBP\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 12:16:44 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"668b7b7e-ab9b-444c-9e06-5472a2dbb6c9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IZOa9EpiDoEEI2g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-5oFRxWXdvNQwgQIadgB8hy2J7Dg\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ed2aac-6f5cfb721507fbf208e25d65;Parent=778ffcd5563d67f5;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00008LM5N\"\n    }\n}"},{"id":"a989da7b-7c18-41c1-b613-e8ed3063d989","name":"Error - Less than minimum raise amount","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"amount\": 0.01,\n            \"currency\": \"GBP\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 07:06:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"118"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"587b6eb9-d25b-43a0-9472-f86d225bcd91"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"118"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IYg7MGMHDoEEVDg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"76-yVSH+zcg2k6LGndzOKK0OZpoAY4\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ece1e0-1c5ef8e800f7365d43d95fe5;Parent=7cb9159002a914a3;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Too small a value to raise\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"},{"id":"aa0935aa-3835-497b-aab2-72fe0a4b2712","name":"Error - More than the maximum % of holding for autoDisinvest with Raise Trade","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"method\": \"BACS Credit\",\n            \"movementType\": \"Out\",\n            \"amount\": 500,\n            \"currency\": \"GBP\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 07:07:52 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"170"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"21c11b6a-ebd9-406f-bd6a-58138b82b5d1"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"170"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IYhLUF0PjoEEIGQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"aa-VssLj9fT8BFjTG5eCRDoEuum8OI\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ece248-14a3b87e7fc12f3f37810ab5;Parent=3411e2cf21733825;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Insufficient funds for auto-disinvestment with autoDisinvestSellType of amount\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"93f1ba58-fd1a-487c-9a28-d87539eb9e0e"},{"name":"Observe the transaction group at creation","event":[{"listen":"test","script":{"id":"babda3dc-6bfd-4062-bfe0-a7c5c13ef530","exec":["// Parse the response JSON","let response = pm.response.json();","","// Find the object with movementType \"XYZ\"","let targetObject = response.data.find(item => item.movementType === \"Raise\");","","if (targetObject) {","    // Set the environment variable with the found object's id","    pm.environment.set(\"autoDisinvestRaiseId\", targetObject.id);","    console.log(\"Environment variable set: autoDisinvestRaiseId =\", targetObject.id);","} else {","    console.log(\"No matching object found with movementType 'Raise'\");","}",""],"type":"text/javascript","packages":{}}}],"id":"06eeb4e9-b4a2-4809-891a-af1ee7e3c529","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{autoDisinvestLinkId}}","description":"<p>We retrieve all the transactions in a PTG by querying by the <code>linkId</code> URL parameter.</p>\n<p>Here you can see that the Payment-Withdrawal-Out has been created alongside the Order-At Best-Raise transaction.</p>\n<p>The <code>status</code> of the transactions are:</p>\n<ul>\n<li><p>Raise trade is <code>Pending</code></p>\n</li>\n<li><p>Withdrawal is <code>Waiting</code></p>\n</li>\n</ul>\n<p>You can see the Withdrawal does not have an <code>amount</code> set yet. When the Raise completes, the Withdrawal's <code>status</code> will update to <code>Pending</code> and will have an <code>amount</code> set.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{pfolioApiRoute}}"],"query":[{"key":"linkId","value":"{{autoDisinvestLinkId}}"}],"variable":[]}},"response":[{"id":"6bb5bb89-7370-4e80-871a-bd78ad857633","name":"Observe the transaction group at creation","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{autoDisinvestLinkId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{autoDisinvestLinkId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 12:17:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1730"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ef03cee1-8400-4bc9-84f2-356a76970e30"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1730"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IZOhNEIEjoEEdQg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"6c2-zCYjUj5zmhj833tyoQkIdavBS9w\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ed2ad4-495d6d1f1c1c59b34a1e3c96;Parent=2e787b943b8a7317;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00008LM5P\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"035GGHB\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"method\": \"BACS Credit\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\",\n            \"status\": \"Waiting\",\n            \"linkId\": \"00008LM5N\",\n            \"transactionDate\": \"2025-04-02T00:00:00.000Z\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Waiting\",\n                    \"statusDate\": \"2025-04-02T12:16:44.661Z\",\n                    \"description\": \"Payment request created, waiting for transactions to complete\"\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-04-02T12:16:44.669Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-04-02T12:16:44.676Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ed2aac3478efc1fc8809a3\"\n        },\n        {\n            \"id\": \"00008LM5Q\",\n            \"firmId\": \"SECCI\",\n            \"accountId\": \"035GGHB\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"assetId\": \"29F55\",\n            \"autoDisinvestmentMethod\": \"Largest\",\n            \"status\": \"Pending\",\n            \"linkId\": \"00008LM5N\",\n            \"transactionDate\": \"2025-04-02T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-04-04T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-04-02T12:16:44.835Z\",\n                    \"description\": \"Order request created\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-04-02T12:16:44.897Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-04-02T12:16:44.904Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ed2aac3478efc1fc8809a6\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"06eeb4e9-b4a2-4809-891a-af1ee7e3c529"},{"name":"[Staging only] Mock Complete RT order","id":"f3f7065e-3515-4d93-92b5-f28488fbcec5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"Action\",\n    \"transactionAction\": \"Complete\",\n    \"actionReason\": \"Order executed\",\n    \"executionDetails\": {\n        \"currency\": \"GBP\",\n        \"price\": 228.7697,\n        \"transactionTime\": \"00:00:00\",\n        \"venue\": \"XLON\",\n        \"executionAmount\": 500,\n        \"executedQuantity\": 2.1857\n    },\n    \"quantity\": 2.1857,\n    \"amount\": 500,\n    \"transactionDate\": \"{{today}}\",\n    \"intendedSettlementDate\": \"{{today}}\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{autoDisinvestRaiseId}}","description":"<p>This mocks a completed order.</p>\n<p>In this scenario, we have sold £500, and we know the price of the asset is 228.7697, so the quantity we must sell to raise £500 is:</p>\n<p>quantity = ROUNDUP( amountToRaise / assetPrice, minimumDecimalPlaces)</p>\n<p>In our example:</p>\n<ul>\n<li><p>amountToRaise = 500</p>\n</li>\n<li><p>assetPrice = 228.7697</p>\n</li>\n<li><p>minimumDecimalPlaces = 4 (because the minimumTransferUnit is 0.0001, which is to 4 decimal places)</p>\n</li>\n</ul>\n<p>quantity = ROUNDUP( 500 / 228.7697, 4) = 2.1857</p>\n<p>We have entered the relevant values in the request for you, assuming you are following the tutorial.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{autoDisinvestRaiseId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f3f7065e-3515-4d93-92b5-f28488fbcec5"},{"name":"Observe the transaction group after Raise completes","id":"b690aa83-1309-4c91-8c08-766fb2b2ac95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{autoDisinvestLinkId}}","description":"<p>Now that the Raise trade has completed, the Withdrawal's <code>status</code> has updated to <code>Pending</code> and now has an <code>amount</code> set.</p>\n<p>You can observe the state changes of each transaction in their <code>statusChanges</code> array.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{pfolioApiRoute}}"],"query":[{"key":"linkId","value":"{{autoDisinvestLinkId}}"}],"variable":[]}},"response":[{"id":"0c2f4dff-7a7c-4edc-aff1-a8d249e5b9e4","name":"Observe the transaction group after Raise completes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{pfolioApiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{autoDisinvestLinkId}}","host":["{{pfolioApiRoute}}"],"path":["portfoliotransaction","{{firmId}}",""],"query":[{"key":"linkId","value":"{{autoDisinvestLinkId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 02 Apr 2025 12:17:57 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2336"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"976676a0-c79d-45df-8f5f-392b6bd9cde7"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2336"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"IZOmcHCCjoEEvLA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"920-7mNTEvDGLUB9zzlWZ8qBSKwW0FM\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67ed2af5-1ac64d555ef8aafc5efa886c;Parent=0f16e6a6b1e61b69;Sampled=0;Lineage=1:de7c14cd:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00008LM5Q\",\n            \"firmId\": \"SECCI\",\n            \"accountId\": \"035GGHB\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"assetId\": \"29F55\",\n            \"autoDisinvestmentMethod\": \"Largest\",\n            \"status\": \"Completed\",\n            \"linkId\": \"00008LM5N\",\n            \"transactionDate\": \"2025-03-31T00:00:00.000Z\",\n            \"intendedSettlementDate\": \"2025-03-31T00:00:00.000Z\",\n            \"assetName\": \"Vanguard Global Equity Income Fund A GBP Acc\",\n            \"isin\": \"GB00BZ82ZW98\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Pending\",\n                    \"statusDate\": \"2025-04-02T12:16:44.835Z\",\n                    \"description\": \"Order request created\"\n                },\n                {\n                    \"statusDate\": \"2025-04-02T12:17:36.147Z\",\n                    \"status\": \"Completed\",\n                    \"description\": \"Order executed\"\n                }\n            ],\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-04-02T12:16:44.897Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-04-02T12:17:36.152Z\",\n                \"userFirmId\": \"SECCI\",\n                \"userId\": \"029B3FF\",\n                \"version\": 2,\n                \"application\": \"PfolioEventAPI\"\n            },\n            \"updateId\": \"67ed2ae026fca9ea73043fa8\",\n            \"completedDate\": \"2025-04-02T12:17:36.136Z\",\n            \"consideration\": 500,\n            \"executedAmount\": 500,\n            \"executedQuantity\": 2.1857,\n            \"executionDetails\": {\n                \"currency\": \"GBP\",\n                \"price\": 228.7697,\n                \"transactionTime\": \"00:00:00\",\n                \"venue\": \"XLON\"\n            }\n        },\n        {\n            \"id\": \"00008LM5P\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"035GGHB\",\n            \"currency\": \"GBP\",\n            \"amount\": 500,\n            \"method\": \"BACS Credit\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoDisinvestSellType\": \"Amount\",\n            \"status\": \"Pending\",\n            \"linkId\": \"00008LM5N\",\n            \"transactionDate\": \"2025-04-02T00:00:00.000Z\",\n            \"accountName\": \"Raise Trades Testing\",\n            \"accountType\": \"Wrapper\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Waiting\",\n                    \"statusDate\": \"2025-04-02T12:16:44.661Z\",\n                    \"description\": \"Payment request created, waiting for transactions to complete\"\n                },\n                {\n                    \"statusDate\": \"2025-04-02T12:17:36.554Z\",\n                    \"status\": \"Pending\",\n                    \"description\": \"Linked transactions now completed\"\n                }\n            ],\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2025-04-02T12:16:44.669Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2025-04-02T12:17:36.558Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"67ed2ae03478efc1fc8809ac\",\n            \"checkingResults\": [\n                {\n                    \"rule\": \"Check transaction\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank account status pending\",\n                    \"passed\": true\n                },\n                {\n                    \"rule\": \"Bank details added within last 90 days\",\n                    \"passed\": true\n                }\n            ],\n            \"tradingFirm\": \"SCUST\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 2\n    }\n}"}],"_postman_id":"b690aa83-1309-4c91-8c08-766fb2b2ac95"}],"id":"79e61634-05e0-4a5c-a634-a1b227766962","description":"<p>Auto-disinvest is an instruction to let the Pfolio API decide which assets to sell down, to achieve your intended outcome. It removes the responsibility on the firm or user to calculate and decide which asset to sell. We provide 3 disinvestment methods:</p>\n<ul>\n<li><p><code>Largest</code> (start with the largest eligible asset by value)</p>\n</li>\n<li><p><code>Proportional</code> (spread the sells across eligible assets given their weighted proportion)</p>\n</li>\n<li><p><code>Full</code> (sell down all holdings)</p>\n</li>\n</ul>\n<p>Raise Trades is currently available with only the <code>Largest</code> and <code>Proportional</code> methods.</p>\n<p>The API will respond with a <code>linkId</code> which can be used to retrieve all the transactions created to satisfy the request, which will be the original transaction (withdrawal, fee etc.) and one or many sells.</p>\n<h2 id=\"how-autodisinvest-largest-works-with-raise-trades\">How <code>autoDisinvest: Largest</code> works with Raise Trades</h2>\n<p>Auto-disinvest is an attribute attached to a non-order transaction, such as a Withdrawal, or a Fee. When Pfolio API receives a request to auto-disinvest with the Largest method, we:</p>\n<ol>\n<li><p>Retrieve the holdings and available balances on the account</p>\n</li>\n<li><p>Select only the holdings eligible for Raise Trades (reference the main folder documentation to identify which assets are eligible for Raise Trades)</p>\n</li>\n<li><p>Identify the smallest raise amount out of all the eligible holdings</p>\n<ol>\n<li>And validate that the amount to raise is not smaller than this</li>\n</ol>\n</li>\n<li><p>Sum the value of the eligible holdings (subject to the maximum percentage available to raise per holding)</p>\n<ol>\n<li>And validate that the amount to raise is not greater than this</li>\n</ol>\n</li>\n<li><p>Sort the eligible holdings by value (largest to smallest)</p>\n</li>\n<li><p>Then starting from the largest asset:</p>\n<ol>\n<li><p>Calculate the Raise Trades required to get at least the requested amount as the minimum of: <em>Requested amount</em> or <em>Value of holding eligible for raise trade</em></p>\n<ol>\n<li>If the calculated raise trade is less than that asset's minimum sell value, it is rounded up to the minimum</li>\n</ol>\n</li>\n<li><p>Repeat until the requested amount can be satisfied by the calculated sells</p>\n</li>\n</ol>\n</li>\n</ol>\n<p>If you are requesting an amount that can be satisfied from just the largest asset, there will only be one sell. If however the requested amount cannot be satisfied from one asset, there will be multiple sells.</p>\n<h2 id=\"how-autodisinvest-proportional-works-with-raise-trades\">How <code>autoDisinvest: Proportional</code> works with Raise Trades</h2>\n<p>Auto-disinvest is an attribute attached to a non-order transaction, such as a Withdrawal, or a Fee. When Pfolio API receives a request to auto-disinvest with the Proportional method, we:</p>\n<ol>\n<li><p>Retrieve the holdings and available balances on the account</p>\n</li>\n<li><p>Select only the holdings eligible for Raise Trades (reference the main folder documentation to identify which assets are eligible for Raise Trades)</p>\n</li>\n<li><p>Identify the smallest raise amount out of all the eligible holdings</p>\n<ol>\n<li>And validate that the amount to raise is not smaller than this</li>\n</ol>\n</li>\n<li><p>Sum the value of the eligible holdings (subject to the maximum percentage available to raise per holding)</p>\n<ol>\n<li>And validate that the amount to raise is not greater than this</li>\n</ol>\n</li>\n<li><p>Calculate the proportion of the overall raise amount to allocate to each eligible holding</p>\n<ol>\n<li>This takes into account the maximum percentage available to raise for each holding</li>\n</ol>\n</li>\n<li><p>Then applying this proportion to each position:</p>\n<ol>\n<li><p>Calculate the Raise Trades required to get <em><strong>at least</strong></em> the requested amount by multiplying the <em>Disinvest proportion</em> by the <em>Value of holding eligible for raise trade</em></p>\n<ol>\n<li>The result is <strong>rounded up</strong> to 2 decimal places. This ensures that calculated trades will always raise <em><strong>at least</strong></em> the required amount.</li>\n</ol>\n</li>\n<li><p>We then validate that each Raise Trade is above the minimum amount for the relevant asset</p>\n</li>\n<li><p>If any assets are found to be ineligible, they are removed, and we repeat this process from Step 5.</p>\n</li>\n</ol>\n</li>\n<li><p>The resulting set of orders will respect the account's current value proportions such that each position should have the same overall value weighting before and after the orders are completed.</p>\n</li>\n</ol>\n","_postman_id":"79e61634-05e0-4a5c-a634-a1b227766962"}],"id":"66888110-d53e-464e-93e7-c612bd048678","description":"<p>You can chain transaction events together to automate investor workflows (and reduce time out the market).</p>\n","_postman_id":"66888110-d53e-464e-93e7-c612bd048678"},{"name":"Recurring orders","item":[{"name":"Create an account with a recurring order allocation","item":[{"name":"Create an account with a recurring order allocation","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"96d7bdc3-8d7c-4cdb-801d-e334f1208224"}}],"id":"caca2ac9-8c50-43ca-9453-87d6440ca519","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Fred's car savings\",\n    \"status\": \"Active\",\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    },\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.5\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.5\n            }\n        ],\n        \"orderDay\": 1\n    }\n}"},"url":"{{apiRoute}}/account","description":"<p>Creates an investment account with a recurring orders expectation for a client.</p>\n<p>Returns an <code>accountId</code></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong></p>\n<p>The type of account – this should be set to <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string <strong>Required</strong></p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong></p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client needs to view and accept product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted product terms and is ready to start transacting</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is voided, cancelled or closed</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string</p>\n<p>The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier for a client</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong></p>\n<p>The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong></p>\n<p>The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third Party Pension</td>\n</tr>\n<tr>\n<td><code>SSAS</code></td>\n<td>Small Self Administered Scheme</td>\n</tr>\n<tr>\n<td><code>TPOFFBOND</code></td>\n<td>Offshore Bond</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>If an account is managed by a discretionary fund manager, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>If an account is managed by an adviser, this should be set to \"true\"</p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>If an account is managed by an adviser, this should be set to \"true\"</p>\n<hr />\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation</p>\n<hr />\n<p><code>recurringOrders.movementType</code> <strong>Required</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> float <strong>Required</strong></p>\n<p>The percentage allocation of the asset</p>\n<hr />\n<p><code>recurringOrders.OrderDay</code> integer <strong>Required</strong></p>\n<p>This should be set to <code>1</code></p>\n<hr />\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e315b3ab-c1ce-4c7e-a9a4-8a3b358f5253","name":"Create an account with a recurring orders allocation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"0\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Fred's car savings\",\n    \"status\": \"Active\",\n    \"currency\": \"GBP\",\n    \"clientId\": \"{{clientId}}\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\"\n    },\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.4\n            }\n        ],\n        \"orderDay\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/account"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 12 Sep 2022 08:21:31 GMT"},{"key":"x-amzn-RequestId","value":"b1118073-1308-472d-a37f-115c2e50d3cb"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YVnRmGf_joEFsTA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-c0zPu4sF2ypHFVCVsmpSFekRJk0\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-631eec0a-6856ce6a3b76f0477a24da31;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 d6030d5ab753695c0198f874d4276eb2.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P1"},{"key":"X-Amz-Cf-Id","value":"_Qws5NNAdTDRSfIGuaKaCzC_0AlS6-daMHOTsXkBMuhgcxNNNnd5mQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"025F494\"\n    }\n}"}],"_postman_id":"caca2ac9-8c50-43ca-9453-87d6440ca519"}],"id":"46ff0abd-a952-40b3-b301-953a22357186","description":"<p>This section shows you how to attach a recurring order allocation to an investment account</p>\n<p>Recurring orders can either be:</p>\n<p>* Added to the investment account when it is first created – <code>POST</code> request to the <code>/account</code> endpoint<br />* Added to the investment account at a later date – <code>PATCH</code> request to the <code>/account</code> endpoint</p>\n","_postman_id":"46ff0abd-a952-40b3-b301-953a22357186"},{"name":"Update an account with a recurring order allocation","item":[{"name":"Retrieve an account","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"71fb6209-224b-49a9-b2f5-28e6b52b60e2"}}],"id":"5b0c34e8-e99c-4331-8c99-a55a5d5fcec5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object – you can use this to retrieve the account <code>updateId</code></p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7585c238-dfdc-4abd-b267-8cfacffae688","name":"Retrieve the investment account","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5b0c34e8-e99c-4331-8c99-a55a5d5fcec5"},{"name":"Attach recurring order allocation to existing account","id":"7521acee-d404-4d2c-8973-1293b3bfac12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    },\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Attaches a recurring order allocation to the investment account</p>\n<p>Returns a successful array</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>recurringOrders</code> object</p>\n<p>Contains details of the recurringOrders allocation</p>\n<hr />\n<p><code>recurringOrders.movementType</code> <strong>Required</strong></p>\n<p>The movement of cash or assets – this should be set to <code>Invest</code></p>\n<hr />\n<p><code>recurringOrders.investmentType</code> <strong>Required</strong></p>\n<p>The type of investment strategy – this should be set to <code>Bespoke</code></p>\n<hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong></p>\n<p>Contains details of the asset allocation</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> float <strong>Required</strong></p>\n<p>The percentage allocation of the asset</p>\n<hr />\n<p><code>recurringOrders.OrderDay</code> integer <strong>Required</strong></p>\n<p>This should be set to <code>1</code></p>\n<hr />\n<p><code>updateId</code> alphanumerical string <strong>Required</strong></p>\n<p>The unique identifier assigned to the record when it was last updated</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7521acee-d404-4d2c-8973-1293b3bfac12"}],"id":"420a9c09-81f2-4234-9425-6562af13590f","description":"<p>To add a recurring orders allocation to an existing account, you need to:</p>\n<ol>\n<li>Retrieve the account <code>updateId</code></li>\n<li>Update the account with the recurring orders allocation</li>\n</ol>\n","_postman_id":"420a9c09-81f2-4234-9425-6562af13590f"},{"name":"Auto-invest a payment to recurring order allocation","item":[{"name":"Create a payment in and auto-invest","id":"5d176cb1-a491-47e7-82be-5b449a0ec12d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n        \"firmId\": \"{{firmId}}\",\n        \"accountId\": \"{{accountId}}\",\n        \"transactions\": [\n          {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n          }\n        ]\n      }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates a payment in from a bank transfer and automatically creates an order expectation for the chosen assets.</p>\n<p>This returns a <code>linkid</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order  <br />Payment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best  <br />Deposit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5d176cb1-a491-47e7-82be-5b449a0ec12d"},{"name":"Attach recurring payment and recurring order allocation to existing account","id":"2a4b6f25-740c-4c42-aa4f-03cabf4697ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ],\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    },\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Sets up a recurring payment and recurring order on the payment in and order expectation.</p>\n<p>This returns a <code>linkid</code>.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>recurringPayments</code> object <strong>Required</strong><br />The object holding your client's regular payment.</p>\n<hr />\n<p><code>recurringPayments.paymentDay</code> integer <strong>Required</strong><br />A recurring day of the month, when the payment will be made by the client into their investment account.</p>\n<hr />\n<p><code>recurringPayments.amount</code> integer <strong>Required</strong><br />A recurring amount which will be requested as a bank transfer into the investment account.</p>\n<hr />\n<p><code>recurringPayments.movementType</code> string <strong>Required</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.method</code> string <strong>Required</strong><br />Whether cash is travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank transfer <br />Direct debit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringPayments.autoInvest</code> boolean <strong>Required</strong><br />Whether the incoming cash is automatically invested in assets.</p>\n<hr />\n<p><code>recurringOrders</code> object <strong>Required</strong><br />The object holding your client's asset allocations. This is attached to their account.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.investmentType</code> string <strong>Required</strong><br />The type of investment initiated on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bespoke</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong>\nHolds the asset allocation details for the <code>assetId</code> and <code>percentage</code>.</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> alphanumerical string <strong>Required</strong>\nThe unique identifier for the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> decimal string <strong>Required</strong>\nThe proportion of the asset in the asset allocation</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required</strong>\nThe day of the month the orders are created.</p>\n<p><code>updateId</code> alphanumerical string <strong>Required</strong><br />The client's unique identifier assigned for updates made on the account</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a4b6f25-740c-4c42-aa4f-03cabf4697ad"}],"id":"0a47f60b-73db-4e14-a5ab-dcb6c30d869b","description":"<p>This section shows you how to:</p>\n<ol>\n<li>Create a single payment with auto-invest to the recurring orders allocation</li>\n<li>Create a recurring payment into an investment account with auto-invest to the recurring orders allocation</li>\n</ol>\n","_postman_id":"0a47f60b-73db-4e14-a5ab-dcb6c30d869b"},{"name":"Realign the investment account","item":[{"name":"Retrieve an account","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"clientupdateId\", data.data.updateId)"],"type":"text/javascript","id":"5af2e38f-1179-403f-bb73-dfad71ca242b"}}],"id":"fc39a46f-9098-4ebb-a8f6-6750a202e337","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Returns the account object – you can use this to retrieve the account <code>updateId</code></p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"66fdb054-e068-4ba1-bfda-cf45d4a66302","name":"Retrieve the investment account","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"fc39a46f-9098-4ebb-a8f6-6750a202e337"},{"name":"Realign a portfolio","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"newAccountRebalanceEventId\", data.data.id);","pm.test('Should successfully send an account rebalance event', function() {","    let json = pm.response.json()","    pm.expect(json).to.have.property('data')","    pm.expect(json.data).to.have.property('id')","})"],"type":"text/javascript","id":"56dcf81b-3ce3-4ace-8c56-70640a2067dc"}}],"id":"386e348c-0024-46e4-9bc6-d8c1fc473913","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"eventType\": \"Portfolio Realign\",\n    \"accountId\": \"{{accountId}}\"\n}"},"url":"{{apiRoute}}/event/","description":"<p>Realigns recurring orders on a specific account</p>\n<p>Returns an <code>eventId</code></p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>eventType</code> string <strong>Required</strong></p>\n<p>The type of event occurring on the account – this should be set to <code>Portfolio Realign</code></p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n","urlObject":{"path":["event",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"386e348c-0024-46e4-9bc6-d8c1fc473913"}],"id":"75542cc4-5de1-4d84-a992-54362a2ea1f7","description":"<p>This section will show you how to realign an investment account with an attached recurring orders allocation</p>\n<p>When a <code>Portfolio Realign</code> is instructed, it calculates the relevant buys and sells to bring the investment account holdings in line with the attached recurring orders allocation.</p>\n<p><strong>An example</strong></p>\n<p>Recurring orders allocation:</p>\n<p>*   50% Asset A\n*   30% Asset B\n*   20% Asset C</p>\n<p>Actual holdings:</p>\n<p>*   60% Asset A\n*   15% Asset B\n*   25% Asset C</p>\n<p>Portfolio realign would create the following orders:</p>\n<p>*   Sell 10% Asset A\n*   Sell 5% Asset C\n*   Buy 15% Asset B</p>\n","_postman_id":"75542cc4-5de1-4d84-a992-54362a2ea1f7"},{"name":"Remove a recurring order allocation","item":[{"name":"Remove a recurring order","id":"d2d22675-c70d-4533-8cf3-b02d46c9d7be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [],\n        \"orderDay\": 1\n    },\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Removes an existing recurring order.</p>\n<p>This returns a <code>linkid</code>.  Please see <strong>Sell and withdraw</strong> for details around the process of selling down assets.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>recurringOrders</code> object <strong>Required</strong><br />The object holding your client's asset allocations. This is attached to their account.</p>\n<hr />\n<p><code>recurringOrders.mvoementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.investmentType</code> string <strong>Required</strong><br />The type of investment initiated on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bespoke</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong>\nHolds the asset allocation details for the <code>assetId</code> and <code>percentage</code>.</p>\n<hr />\n<p><code>updateId</code> alphanumerical string <strong>Required</strong><br />The client's unique identifier assigned for updates made on the account</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d2d22675-c70d-4533-8cf3-b02d46c9d7be"}],"id":"26529aa7-f6e5-47e8-9d59-b9df01d240a9","_postman_id":"26529aa7-f6e5-47e8-9d59-b9df01d240a9","description":""}],"id":"c0dab423-61e1-4a12-a52b-e6a888bf7ef6","description":"<p>This section will show you how to create recurring orders</p>\n<p>Recurring orders can be used for various investment strategies, including:</p>\n<p>* Thematic investing<br />* Investing in a single asset<br />* Advisory models</p>\n<p>In these investment strategies, the investor decision maker is the client.</p>\n<p>This functionality allows you to attach an asset or a blend of assets to an investment account. Any payments into the investment account can be auto-invested into the recurring order allocation, and holdings in the account can be realigned in line with the asset allocation on an ad-hoc basis.</p>\n<p><strong>Understanding recurring orders</strong></p>\n<p>The recurringOrders allocation is set on the account object. You can include as many assets as you like. The total percentage of assets cannot be more than 1. Any remainder will be allocated to cash. For example:</p>\n<p>* 40% Asset A<br />* 40% Asset B<br />* 20% Cash</p>\n<p><strong>An example flow</strong></p>\n<p>The end-to-end user flow for an investment strategy using recurring orders could work as follows:</p>\n<p>* Create a client<br />* Client selects the desired investment strategy and the wrapper type<br />* Create an investment account and assign the investment strategy<br />* Create a payment with auto-invest</p>\n","_postman_id":"c0dab423-61e1-4a12-a52b-e6a888bf7ef6"},{"name":"Bespoke DFM","item":[{"name":"Retrieve a DFM firm user","id":"e697cadd-77cd-4b7c-aacb-4a2a545512ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/user/{{firmId}}/{{userId}}","description":"<p>This request retrieves an individual platform user with discretionary (DFM) permissions using the <code>userId</code>.</p>\n<p>Returns the body of the <code>user</code> otherwise known as the decision maker.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>userId</code> string <strong>Required</strong><br />The unique identifier for the user (decision maker)</p>\n<hr />\n","urlObject":{"path":["user","{{firmId}}","{{userId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"a7c028de-39b6-4103-8cea-94c4169b16a4","name":"Retrieve a DFM firm user","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/user/{{firmId}}/029B855"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"533"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 21 Sep 2022 10:25:05 GMT"},{"key":"x-amzn-RequestId","value":"84e8b60f-a6bd-4ba9-a485-b47a6bd29f9a"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"533"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Yzj0MEV0DoEFtdA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"215-I0OMpdn/flHegRjwCyqpwCalaF0\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-632ae681-169050f6453bbb4141919222;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 4278118a12a0d89e17a517194fb2e732.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"QTPuKgtmQOYCBkgT8R5OU8drCbyn_4KnDe4s_XtuQHuuJPAkkgX1Lg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"029B855\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": [\n            \"2\"\n        ],\n        \"userType\": \"User\",\n        \"firstName\": \"Velma\",\n        \"surname\": \"Zoinks\",\n        \"email\": \"vzoinks@dfm.com\",\n        \"investmentDecision\": {\n            \"firmLei\": \"12932932493211234567\",\n            \"firmCountry\": \"GB\",\n            \"personId\": \"AB197283D\",\n            \"personIdType\": \"NINO\",\n            \"personCountry\": \"GB\"\n        },\n        \"nodeName\": [\n            \"Seccl Invest - Adviser\"\n        ],\n        \"_surname\": \"ZOINKS\",\n        \"_firstName\": \"VELMA\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-21T09:57:15.202Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"632adffb4d1a002086b995c5\"\n    }\n}"}],"_postman_id":"e697cadd-77cd-4b7c-aacb-4a2a545512ca"},{"name":"Create an account with a decision maker","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"accountId\", data.data.id)"],"type":"text/javascript","id":"7afd81c6-146e-4018-838f-45a20acf55c5"}}],"id":"1245a3c2-885a-4f27-a251-02f06ebb1899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"5\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Wilma\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"advisorCharge\": 0.01,\n    \"discretionaryManagementCharge\": 0.01,\n    \"currency\": \"GBP\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": true,\n        \"advised\": false,\n        \"trust\": false,\n        \"decisionMakerId\": \"{{decisionMakerId}}\"\n    }\n}"},"url":"{{apiRoute}}/account/{{firmId}}","description":"<p>Creates a GIA for a client with a decision maker linked to it.</p>\n<p>Returns the unique identifier <code>id</code> for the GIA.</p>\n<p>To see how to create other types of accounts, see documentation under \"Investment Accounts\".</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>accountType</code> string <strong>Required</strong><br />The type of account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Wrapper</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>name</code> string<br />The name of the investment account</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for a client</p>\n<hr />\n<p><code>status</code> string<br />The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the product terms</td>\n</tr>\n<tr>\n<td><code>Suspended</code></td>\n<td>The account is suspended – all transactions are blocked</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>adviserCharge</code> decimal string<br />The fee amount charged by an adviser for managing the investment account</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> decimal string<br />The fee amount charged by a discretionary fund manager for managing the investment account</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong><br />The details of the chosen investment account</p>\n<hr />\n<p><code>wrapperDetail.decisionMakerId</code> string <strong>Required</strong><br />The unique identifier for the discretionary fund manager record already on the system</p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> string <strong>Required</strong><br />The type of tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>GIA</td>\n<td>General Investment Account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>Indicates whether the account is managed on a discretionary basis. This should be set to <code>true</code> for Bespoke DFMs.</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>Indicates whether the account is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.trust</code> boolean</p>\n<p>Indicates whether the account is managed on an advised basis</p>\n","urlObject":{"path":["account","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"6310715f-ac38-4fce-8bee-a725ed0a89dd","name":"Create an account with a decision maker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"5\",\n    \"name\": \"Wilma\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"00J933H\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\",\n        \"discretionary\": true,\n        \"advised\": false,\n        \"trust\": false,\n        \"decisionMakerId\": \"029B61D\"\n    },\n    \"discretionaryManagementCharge\": 0.01\n}"},"url":"{{apiRoute}}/account/{{firmId}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"115"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 21 Sep 2022 10:27:29 GMT"},{"key":"x-amzn-RequestId","value":"9463a57a-758d-4bda-b75b-4a096eb65202"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"115"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"YzkKyEpCDoEF8mg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"73-6k7GPkmCCD/PQxxEdGOycRXx2hM\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-632ae711-05637b016a1a1b96055c66f0;Sampled=0"},{"key":"X-Cache","value":"Error from cloudfront"},{"key":"Via","value":"1.1 4278118a12a0d89e17a517194fb2e732.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"Hj_xW1v05hpsn3d6h90cAZuvGu3L-cotm6o22gcglLdfoTDqYRzECQ=="}],"cookie":[],"responseTime":null,"body":"{\"data\":\n    {\"id\":\"025H3JH\"}}"}],"_postman_id":"1245a3c2-885a-4f27-a251-02f06ebb1899"},{"name":"Retrieve the account","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"4c2c8ea0-3d42-4639-8915-f5cfe61bfebd"}}],"id":"36c534bb-ab22-4b52-bc2a-53f61f72ff42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Retrieves an account using <code>firmId</code> and <code>accountId</code></p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the client's account</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"36c534bb-ab22-4b52-bc2a-53f61f72ff42"},{"name":"Setup a recurring order on an existing account","id":"7ab9a30f-279a-4c2b-8c52-0268976363e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    },\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>Sets up a recurring order on the payment in and order expectation</p>\n<p>This returns a <code>linkId</code>.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the client's account</p>\n<h4 id=\"request-body\"><strong>Request body</strong></h4>\n<p><code>recurringOrders</code> object <strong>Required</strong><br />The object holding your client's asset allocations. This is attached to their account.</p>\n<hr />\n<p><code>recurringOrders.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.investmentType</code> string <strong>Required</strong><br />The type of investment initiated on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bespoke</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>recurringOrders.details</code> array <strong>Required</strong><br />Holds the asset allocation details for the <code>assetId</code> and <code>percentage</code>.</p>\n<hr />\n<p><code>recurringOrders.details.assetId</code> alphanumerical string <strong>Required</strong><br />The unique identifier for the asset</p>\n<hr />\n<p><code>recurringOrders.details.percentage</code> decimal string <strong>Required</strong><br />The proportion of the asset in the asset allocation</p>\n<hr />\n<p><code>recurringOrders.orderDay</code> integer <strong>Required</strong><br />This should be set to <code>1</code></p>\n<hr />\n<p><code>updateId</code> alphanumerical string <strong>Required</strong><br />The client's unique identifier assigned for updates made on the account. You can obtain this id by first retrieving the account before updating.</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7ab9a30f-279a-4c2b-8c52-0268976363e1"}],"id":"d26ae1da-6d10-4d93-afd5-45272c5fdc62","description":"<p>As a Discretionary Fund Manager, you may want to manage your client’s investments separately using a bespoke allocation and not using the Model Portfolio Service. This may be because they are a <strong>high-net-worth investor</strong> with specific investment goals and needs.</p>\n<p>Using the Seccl API, DFMs have the ability to create a bespoke allocation whilst reporting as the decision maker on behalf of the client. An <code>LEI number</code> assigned to the DFM will be reported to the regulators every time a trade is created on the client’s account.</p>\n<p>To create a DFM user, you will need to provide the following:</p>\n<ul>\n<li><p>A decision maker with discretionary permissions</p>\n</li>\n<li><p>A Legal Entity Identifier (LEI) number for the firm</p>\n</li>\n</ul>\n<p>Accounts managed by DFM users have been mandated by the client to make investment decisions on their behalf. Therefore all orders placed on the account will have the <code>investmentDecision</code> attached.</p>\n<p>You can create a DFM user by using the request named <code>Create a DFM platform user</code> in these API docs.</p>\n","_postman_id":"d26ae1da-6d10-4d93-afd5-45272c5fdc62"},{"name":"Model portfolio service","item":[{"name":"Discretionary model portfolios","item":[{"name":"The discretionary model object","item":[],"id":"b6cdcb62-45fb-4be1-946f-bc75c14b55bc","description":"<p>The discretionary model object is used to store and manage information for a DFM model.</p>\n<p>It's important the decision maker's details are kept up to date as this will impact regulatory reporting – you can view updates made to the model in the <code>updateHistory</code> array.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"firmId\": \"SECCI\",\n    \"name\": \"Cautious \",\n    \"riskRating\": 4,\n    \"productType\": [\n        \"ISA\",\n        \"JISA\"\n    ],\n    \"modelCharge\": 0.1,\n    \"vatable\": false,\n    \"suspendRebalances\": false,\n    \"availableToNodeId\": [\n        \"9\"\n    ],\n    \"allocations\": [\n        {\n            \"assetId\": \"27111\",\n            \"percentage\": 0.47\n        },\n        {\n            \"assetId\": \"27427\",\n            \"percentage\": 0.5\n        }\n    ],\n    \"investmentDecision\": {\n        \"firmLei\": \"12345678901234567801\",\n        \"firmCountry\": \"GB\",\n        \"personId\": \"AB768574D\",\n        \"personIdType\": \"NINO\",\n        \"personCountry\": \"GB\"\n    },\n    \"assetMix\": [\n        {\n            \"instrumentType\": \"Equity\",\n            \"instrumentRateType\": 0.3\n        },\n        {\n            \"instrumentType\": \"Gilts\",\n            \"instrumentRateType\": 0.4\n        },\n        {\n            \"instrumentType\": \"Corporate bonds\",\n            \"instrumentRateType\": 0.27\n        },\n        {\n            \"instrumentType\": \"Other\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Cash\",\n            \"instrumentRateType\": 0.03\n        }\n],\n        \"status\": \"Active\",\n        \"availableToNodeName\": [\n            \"DFM 1\"\n        ],\n        \"cashAllocation\": 0.03,\n        \"_name\": \"CAUTIOUS \",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-22T11:32:46.848Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"632c47dec35d3b8e06d0cfe0\",\n        \"nodeId\": [\n            \"9\"\n        ]\n    }\n}\n\n</code></pre>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>firmId</code> alphanumerical string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>name</code> string <strong>Required</strong><br />A free-text name for the model</p>\n<hr />\n<p><code>modelType</code> string \nSet to discretionary. Models without this field are created as discretionary by default.</p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>productType</code> string <strong>Required</strong><br />The type of products the model can be used with, e.g wrappers \"ISA\", \"GIA\", \"SIPP\". Please see <strong>Investment accounts</strong> for all supported wrappers</p>\n<hr />\n<p><code>riskRating</code> integer<br />A numerical value used to assign a level of risk to the model from 1-10, which can be found in Key Investor Information Documents.</p>\n<hr />\n<p><code>modelCharge</code> decimal string <strong>Required</strong><br />The DFM charge applied to the model.</p>\n<hr />\n<p><code>vatable</code> boolean<br />Records whether VAT should be paid.<br />Please note: VAT is not added to the charge.</p>\n<hr />\n<p><code>suspendRebalances</code> string<br />Three-letter <strong>ISO code for the currency</strong> paid in or out of the account</p>\n<hr />\n<p><code>availableToNodeId</code> string <strong>Required</strong><br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n<p><code>allocations</code> array <strong>Required</strong><br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.assetId</code> decimal string <strong>Required</strong><br />The unique identifier for the chosen asset. The model must have at least one asset in order to create a model.</p>\n<hr />\n<p><code>allocations.percentage</code> decimal string <strong>Required</strong><br />The proportion of the asset assigned to the model. The total asset allocation (including cash) must be equal to 1.00.</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong>\nThe status of the model</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The model has been created by a valid decision maker</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision</code> array <strong>Required</strong><br />An array capturing all the national identifier information for the DFM - both the firm and the firm user. All fields are mandatory.</p>\n<hr />\n<p><code>investmentDecision.firmLei</code> numerical string <strong>Required</strong><br />A 20-digit numerical identifier assigned to a DFM</p>\n<hr />\n<p><code>investmentDecision.firmCountry</code> string <strong>Required</strong><br />A two-letter country code denoting the firm's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision.personId</code> alphanumerical string <strong>Required</strong><br />The National Identifier for the firm user/decision maker. For GB nationals this is in the format XX123456X.\nFor a full list of supported national identifiers, please see <strong>Client onboarding &gt; List nationalities</strong></p>\n<hr />\n<p><code>investmentDecision.personIdType</code> string <strong>Required</strong><br />The type of National Identifier provided for the firm user/decision maker. For GB nationals this is NINO (National Insurance Number)</p>\n<hr />\n<p><code>investmentDecision.personCountry</code> string <strong>Required</strong><br />A two-letter country code denoting the firm user/decision maker's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>assetMix</code> array <strong>Required</strong><br />The type of asset and corresponding asset allocations. The total asset allocation (including cash) must be equal to 1.00</p>\n<hr />\n<p><code>assetMix.instrumentType</code> string <strong>Required</strong><br />The type of asset in the model. This can be \"Equities\", \"Gilts\", \"Corporate Bonds\", \"Cash\" or \"Other\"</p>\n<hr />\n<p><code>assetMix.instrumentRateType</code> string <strong>Required</strong><br />The proportion of the type of asset in the model</p>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong><br />The unique update identifier for the model. This is needed for any <code>PATCH</code> requests (updates) made on the model</p>\n","_postman_id":"b6cdcb62-45fb-4be1-946f-bc75c14b55bc"},{"name":"Manage a discretionary model","item":[{"name":"Create discretionary model","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"modelId\", data.data.id)"],"type":"text/javascript","id":"d5446f8b-ca46-4d53-b708-d0e6401dd668"}}],"id":"6ca87ca3-dfc7-4a54-b5f1-90b1498dec98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"name\": \"High-growth model \",\n    \"riskRating\": 2,\n    \"modelType\": \"Discretionary\",\n    \"productType\": [\n        \"ISA\",\n        \"GIA\",\n        \"JISA\",\n        \"PENSION\"\n    ],\n    \"aim\": \"Invest ethically\",\n    \"modelCharge\": 0.002,\n    \"vatable\": true,\n    \"suspendRebalances\": true,\n    \"availableToNodeId\": [\n        \"0\"\n    ],\n    \"allocations\": [\n        {\n            \"assetId\": \"275F1\",\n            \"percentage\": 0.68\n        },\n        {\n            \"assetId\": \"2756G\",\n            \"percentage\": 0.3\n        }\n    ],\n    \"investmentDecision\": {\n        \"firmLei\": \"82787287HFJEE9393892\",\n        \"firmCountry\": \"GB\",\n        \"personId\": \"PC893898C\",\n        \"personIdType\": \"NINO\",\n        \"personCountry\": \"GB\"\n    },\n    \"assetMix\": [\n        {\n            \"instrumentType\": \"Equity\",\n            \"instrumentRateType\": 0.98\n        },\n        {\n            \"instrumentType\": \"Gilts\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Corporate bonds\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Other\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Cash\",\n            \"instrumentRateType\": 0.02\n        }\n    ]\n}"},"url":"{{apiRoute}}/model","description":"<p>Creates a discretionary model. Returns a <code>modelId</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> alphanumerical string <strong>required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>name</code> string <strong>required</strong><br />The name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>modelType</code> string <strong>required</strong><br />Must be set to <code>Discretionary</code></p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>riskRating</code> string <strong>Required</strong><br />The risk rating of the model on a scale of 1-10</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>productType</code> array <strong>Required</strong><br />The type of products the model can be used with, e.g wrappers such as \"ISA\", \"GIA\", \"PENSION\". Please see investment accounts for all supported wrappers</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>modelCharge</code> decimal string <strong>Required</strong><br />The charge percentage of the model</p>\n<hr />\n<p><code>vatable</code> boolean<br />Whether VAT can be applied to the model</p>\n<hr />\n<p><code>suspendRebalances</code> boolean <strong>Required</strong><br />Whether this model should have rebalances suspended</p>\n<hr />\n<p><code>availableToNodeId</code> string <strong>Required</strong><br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n<p><code>allocations</code> array <strong>Required</strong><br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.assetId</code> string <strong>Required</strong><br />The unique identifier for the asset in the model allocation</p>\n<hr />\n<p><code>allocations.percentage</code> decimal <strong>Required</strong><br />The proportion of the asset in the model, where asset allocations total 1 (100%)</p>\n<hr />\n<p><code>cashAllocation</code> decimal string<br />The cash allocation for the model. This is automatically generated where asset allocations do not add up to 1 (100%) but can be specified.</p>\n<hr />\n<p><code>investmentDecision</code> array <strong>Required</strong></p>\n<p>An array capturing all the national identifier information for the DFM - both the firm and the firm user. All fields are mandatory.</p>\n<hr />\n<p><code>investmentDecision.firmLei</code> numerical string <strong>Required</strong></p>\n<p>A 20-digit numerical identifier assigned to a DFM</p>\n<hr />\n<p><code>investmentDecision.firmCountry</code> string <strong>Required</strong></p>\n<p>A two-letter country code denoting the firm's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision.personId</code> alphanumerical string <strong>Required</strong></p>\n<p>The National Identifier for the firm user/decision maker. For GB nationals this is in the format XX123456X</p>\n<hr />\n<p><code>investmentDecision.personIdType</code> string <strong>Required</strong></p>\n<p>The type of National Identifier provided for the firm user/decision maker. For GB nationals this is NINO (National Insurance Number)</p>\n<hr />\n<p><code>investmentDecision.personCountry</code> string <strong>Required</strong></p>\n<p>A two-letter country code denoting the firm user/decision maker's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>assetMix</code> array <strong>Required</strong><br />The proportion held of each asset class and cash in the model. This is required for producing growth rates for product illustrations where the wrapper is using a model portfolio investment strategy.</p>\n<hr />\n<p><code>assetMix.instrumentType</code> string <strong>Required</strong><br />The type of instrument/asset. The system accounts for <code>Equity</code>, <code>Gilts</code>, <code>Corporate bonds</code>, <code>Cash</code> and <code>Other</code> asset classes.</p>\n<hr />\n<p><code>assetMix.instrumentRateType</code> string <strong>Required</strong><br />The proportion of each asset class in the model, where asset allocations total 1 (100%). Please note: the cash allocation is generated as the remaining proportion of assets not accounted for. For example, a model made up of 70% equities and 28% bonds will have a 2% cash allocation.</p>\n","urlObject":{"path":["model"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6ca87ca3-dfc7-4a54-b5f1-90b1498dec98"},{"name":"Update discretionary model","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"152f1c45-516b-4f3a-a56a-432aa84bd27b"}}],"id":"c0d2ebb7-1e1f-4ab5-a395-b8bc914ac138","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n      \"updateId\": \"{{updateId}}\",\n      \"allocations\": [\n        {\n          \"assetId\": \"26MPM\",\n          \"percentage\": 0.5\n        },\n        {\n          \"assetId\": \"27HNC\",\n          \"percentage\": 0.4\n        }\n      ],\n      \"cashAllocation\": 0.1\n  }"},"url":"{{apiRoute}}/model/{{firmId}}/{{modelId}}","description":"<p>Updates a discretionary model.</p>\n<p>Returns the discretionary models object.</p>\n<p><strong>Please note the following:</strong></p>\n<ul>\n<li>Assets must have a status of 'Active' to be included in the model.</li>\n<li>You cannot change the product types for a model. In order to do this, you must create a new model and add in your chosen wrapper types in the <code>productType</code> field.</li>\n<li>Once you have created a model, you cannot change the <code>modelType</code></li>\n</ul>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string\nThe unique identifier for the firm</p>\n<hr />\n<p><code>modelId</code> string\nThe unique identifier for the discretionary model</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>name</code> string <strong>required</strong>\nThe name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>suspendRebalances</code> boolean <strong>Required</strong>\nWhether this model should have rebalances suspended</p>\n<hr />\n<p><code>allocations</code> array <strong>Required</strong> \nAn array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.cashAllocation</code> decimal string <strong>Required</strong>\nThe required cash allocation</p>\n<hr />\n<p><code>vatable</code> boolean \nWhether VAT can be applied to the model | </p>\n<hr />\n<p><code>commentary</code> string \nA summary or information about the model</p>\n<hr />\n<p><code>aim</code> string \nThe aim of the model</p>\n<hr />\n<p><code>riskRating</code> string <strong>Required</strong> \nThe risk rating of the model on a scale of 1-10 </p>\n<hr />\n<p><code>modelCharge</code> decimal string <strong>Required</strong>\nThe charge percentage of the model</p>\n<hr />\n<p><code>url</code> string\nThe url to the Key Features document for the model</p>\n<hr />\n<p><code>lei</code> numerical string <strong>Required</strong> \nThe Legal Entity Identifier of the firm who made the investment decision of the assets in the model</p>\n<hr />\n","urlObject":{"path":["model","{{firmId}}","{{modelId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0d2ebb7-1e1f-4ab5-a395-b8bc914ac138"}],"id":"8c591850-be63-4279-83cf-b51341f9d66e","description":"<p>This section will cover how to create and update a discretionary model.</p>\n<p>DFM's are required to provide decision maker details. This is captured under the <code>investmentDecision</code> array when creating a model.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"investmentDecision\": {\n        \"firmLei\": \"12345678901234567801\",\n        \"firmCountry\": \"GB\",\n        \"personId\": \"AB768574D\",\n        \"personIdType\": \"NINO\",\n        \"personCountry\": \"GB\"\n}\n\n</code></pre>\n<p>This includes national identifier information for the individual making transactions on behalf of the client and the firm. As a result, when creating models, you must always use the <code>GET</code> List nationalities request for a comprehensive list of accepted nationalities.</p>\n","_postman_id":"8c591850-be63-4279-83cf-b51341f9d66e"},{"name":"Invest in a discretionary model","item":[{"name":"Create a payment in and automatically invest","id":"7184f2bb-84a5-44c8-b44b-ed0427d141a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n        \"firmId\": \"{{firmId}}\",\n        \"accountId\": \"{{accountId}}\",\n        \"transactions\": [\n          {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n          }\n        ]\n      }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates a payment in from a bank transfer and automatically creates an order expectation for the chosen discretionary <code>modelId</code> attached to the account.</p>\n<p>This returns a <code>linkid</code>. You can view the transactions under this group using the <strong>List grouped transactions</strong> request.</p>\n<p>There are a few rules and restrictions to these transactions</p>\n<ul>\n<li>Any amount left over from a sell and buy will be added to available cash</li>\n<li>Each transaction is related to the same account<br />  There are a few rules and restrictions to these transactions:</li>\n<li>Any amount left over from a sell and buy will be added to available cash</li>\n<li>Each transaction is related to the same account</li>\n</ul>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order  <br />Payment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best  <br />Deposit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the model linked to the account</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7184f2bb-84a5-44c8-b44b-ed0427d141a2"},{"name":"List transactions created by a group","id":"0810795e-c8b6-427d-81a0-985e5cd6ed6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","description":"<p>Retrieves a list of underlying transactions created by a group. </p>\n<h4 id=\"request-parameters\"><strong>Request parameters</strong></h4>\n<p><code>firmId</code> The unique identifier for the firm</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}],"variable":[]}},"response":[],"_postman_id":"0810795e-c8b6-427d-81a0-985e5cd6ed6a"}],"id":"90014e75-937c-4dc4-96ca-85780575943d","description":"<p>This section shows you how your user can pay in and invest in a model.</p>\n","_postman_id":"90014e75-937c-4dc4-96ca-85780575943d"},{"name":"Rebalance a discretionary model","item":[{"name":"Instruct a rebalance","id":"bc065ce7-7283-4d9d-9847-9e8e95ef8c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"eventType\": \"Rebalance\",\n    \"assetAllocationId\": \"{{modelId}}\",\n    \"confirmedDetails\": {\n        \"confirmedCashAllocation\": 0.223,\n        \"confirmedAllocations\": [\n            {\n                \"assetId\": \"26MQ9\",\n                \"percentage\": 0.333,\n                \"currency\": \"GBP\",\n                \"buyPrice\": 12.75,\n                \"sellPrice\": 12.74\n            },\n            {\n                \"assetId\": \"27HNC\",\n                \"percentage\": 0.444,\n                \"currency\": \"GBP\",\n                \"buyPrice\": 5.33,\n                \"sellPrice\": 5.30\n            }\n        ]\n    }\n}"},"url":"{{apiRoute}}/event/","description":"<p>Rebalances the model. This is a bulk action which rebalances all accounts using the model. This feature is only available for discretionary models.</p>\n<p>Returns an 'eventId'.</p>\n<p><strong>Validation</strong><br />When using the <code>/event</code> endpoint to initiate a model-level rebalance, the system does not validate the request at the time of submission. Instead, a bulk action is created, and validation occurs when attempting to generate a rebalance for each individual account associated with the model.</p>\n<p>If an account already has a rebalance in progress, a firm-level notification is generated which will contain the below <code>message</code> and details of any accounts which have failed validation in the <code>fieldErrors</code> array.</p>\n<p><code>message</code> - string - Cannot create a new rebalance event whilst an account is processing an incomplete rebalance</p>\n<p>You can find further information on viewing and managing exceptions in the <strong>Platform Management / Notifications</strong> section.</p>\n<p>Rebalances are still created for valid accounts that do not currently have a rebalance in progress.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>eventType</code> string <strong>Required</strong><br />The type of event taking place. This should be set to \"Rebalance\"</p>\n<hr />\n<p><code>assetAllocationId</code> alphanumerical string <strong>Required</strong><br />The model to be rebalanced. This can be found using the <em>Retrieve model</em> <code>GET</code> request.</p>\n<hr />\n<p><code>confirmedDetails</code> array <strong>Required</strong><br />Confirmed details of the rebalance. Please see below for more information:</p>\n<hr />\n<p><code>confirmedDetails.confirmedCashAllocation</code> decimal string<br />The confirmed cash allocation</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations</code> array <strong>Required</strong><br />The confirmed asset allocations. See below for details:</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.assetId</code> alphanumerical string <strong>Required</strong><br />The unique identifier of the instrument to be traded. These can be retrieved using the List assets <code>GET</code> request.</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.percentage</code> decimal string <strong>Required</strong><br />The proportion out of 1.00 (100%) to be allocated to this asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.currency</code> string (acronym) <strong>Required</strong><br />The currency of the instrument to be traded</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.buyPrice</code> decimal string <strong>Required</strong><br />The confirmed buy price of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.sellPrice</code> decimal string <strong>Required</strong><br />The confirmed sell price of the asset</p>\n","urlObject":{"path":["event",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"bc065ce7-7283-4d9d-9847-9e8e95ef8c12"},{"name":"Instruct a rebalance at investment account level","id":"720f8339-cd1c-4aa3-91e7-ee91d39ecf48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"{{accountId}}\"\n}"},"url":"{{apiRoute}}/event/","description":"<p>Rebalances an investment account using the discretionary model.</p>\n<p>Returns a <code>linkId</code> for the background transactions on the account.</p>\n<h4 id=\"validation\">Validation</h4>\n<p>When using the <code>/event</code> endpoint to initiate an investment account-level rebalance, validation is performed to ensure that no rebalance is already in progress for the account.</p>\n<p>A rebalance is in progress if:</p>\n<ul>\n<li><p>An account has a rebalance event that is calculating but not yet released</p>\n</li>\n<li><p>An account has uncompleted orders linked to a rebalance event</p>\n</li>\n</ul>\n<p>If a rebalance is in progress, the request will be rejected, and an error response will be returned specifying the reason for the rejection.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>eventType</code> string <strong>Required</strong><br />The type of event occurring on the account. This must always be \"Rebalance\"</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s investment account</p>\n<hr />\n","urlObject":{"path":["event",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c24162aa-a813-430f-91a3-6b3ad935a92c","name":"Instruct a rebalance at investment account level - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"024D465\"\n}"},"url":"{{apiRoute}}/event/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 20 Sep 2022 15:39:25 GMT"},{"key":"x-amzn-RequestId","value":"d0ae58b6-a972-4573-857b-13cd7afb3e9b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"24"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Yw-7DG69joEF34w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"18-sRor5BJZLkg/dgo9UdH/3ArWQyk\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6329deac-28f2c95d199581f34783a8eb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cb9d66c261e91793be744f629d6e309e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"43vxfF7U5lzuAj4rRN0FkPFEl0UICGfKVEojV56SuNMSqem4ywBL6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00PL9L\"\n    }\n}"},{"id":"dd0bdf7b-8d46-46dc-bef0-3c8f212b2bc5","name":"Instruct a rebalance at investment account level - error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"{{accountId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 21 Jan 2025 12:16:24 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"110"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"1d5dcdd9-46ae-48b3-90df-3a680d027063"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"110"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"EvNzJH0njoEEERw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"6e-ljtHC0CgeH5dXS0855mEukJeTgI\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-678f9013-2f09e7e33a9d3e2e7e31b5f0;Parent=0fd80fab89b70d32;Sampled=0;Lineage=1:4640d0b0:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"name\": \"DataValidationError\",\n        \"message\": \"Cannot create a new rebalance event whilst an account is processing an incomplete rebalance\",\n        \"errorMessage\": \"Cannot create a new rebalance event whilst an account is processing an incomplete rebalance\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                 \"errorMessage\": \"AccountId: 0000045 has an incomplete rebalance processing\",\n                 \"fieldName\": \"eventId\",\n                  \"value\": \"00PL9L\",\n                  \"type\": \"Usage\"\n            }           \n        ]\n    }\n}"}],"_postman_id":"720f8339-cd1c-4aa3-91e7-ee91d39ecf48"},{"name":"Retrieve rebalance event","id":"2ce71e96-fb1b-43c6-9fbd-0a059e086405","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/event/{{firmId}}/{{eventId}}","description":"<p>Retrieves the rebalance event with the desired asset allocations created on the model.</p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<p><code>firmId</code> string<br />Unique identifier for the firm</p>\n<hr />\n<p><code>eventId</code> string<br />Unique identifier for the rebalance event</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>id</code> string<br />Unique identifier for the rebalance event (<code>eventId</code>)</p>\n<hr />\n<p><code>firmId</code> string<br />Unique identifier for the firm</p>\n<hr />\n<p><code>eventType</code> string<br />The type of event taking place - this should be \"Rebalance\"</p>\n<hr />\n<p><code>assetAllocationId</code> alphanumerical string<br />Unique identifier for the model which has been rebalanced</p>\n<hr />\n<p><code>investmentDecision</code> array<br />An array capturing all the national identifier information for the DFM - both the firm and the firm user. All fields are mandatory.</p>\n<hr />\n<p><code>investmentDecision.firmLei</code> numerical string<br />A 20-digit numerical identifier assigned to a DFM</p>\n<hr />\n<p><code>investmentDecision.firmCountry</code> string<br />A two-letter country code denoting the firm's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision.personId</code> alphanumerical string<br />The National Identifier for the firm user/decision maker. For GB nationals this is in the format XX123456X.<br />For a full list of supported national identifiers, please see <strong>Client onboarding &gt; List nationalities</strong></p>\n<hr />\n<p><code>investmentDecision.personIdType</code> string<br />The type of National Identifier provided for the firm user/decision maker. For GB nationals this is NINO (National Insurance Number)</p>\n<hr />\n<p><code>investmentDecision.personCountry</code> string<br />A two-letter country code denoting the firm user/decision maker's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>eventDate</code> date<br />The date and time when the rebalance was instructed</p>\n<hr />\n<p><code>status</code> date<br />The status of the rebalance. Once instructed, status is <code>Released</code></p>\n<hr />\n<p><code>confirmedDetails</code> array<br />Confirmed details of the rebalance. Please see below for more information:</p>\n<hr />\n<p><code>confirmedDetails.confirmedCashAllocation</code> decimal string<br />The confirmed cash allocation</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations</code> array<br />The confirmed asset allocations. See below for details:</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.assetId</code> alphanumerical string<br />The unique identifier of the instrument to be traded. These can be retrieved using the List assets <code>GET</code> request.</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.percentage</code> decimal string<br />The proportion out of 1.00 (100%) to be allocated to this asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.currency</code> string (acronym)<br />The currency of the instrument to be traded</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.buyPrice</code> decimal string<br />The confirmed buy price of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.sellPrice</code> decimal string<br />The confirmed sell price of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.assetName</code> string<br />The name of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.isin</code> string<br />The unique identifier for the instrument</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.quoteUnit</code> number</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.minimumTransferUnit</code> number</p>\n","urlObject":{"path":["event","{{firmId}}","{{eventId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2ce71e96-fb1b-43c6-9fbd-0a059e086405"}],"id":"038ff598-b832-4e1b-bc13-15fabaf714bc","description":"<p>This section will show you how to instruct a model rebalance.</p>\n","_postman_id":"038ff598-b832-4e1b-bc13-15fabaf714bc"}],"id":"0ddac23d-55e5-45f7-b4bd-0735b082888b","description":"<p>This functionality is strictly for Discretionary Fund Managers (DFMs). This is because our Model Portfolio Service requires a registered Decision Maker with the necessary FCA-approved permissions to create and manage investments on behalf of the client.</p>\n<p>When trading Exchange-Traded instruments (ETIs), DFMs are required to declare both the client and DFM's nationality, domicile and also confirm the relevant national identifiers including the firm Legal Entity Identifier (LEI).</p>\n<p>This section will cover how to:</p>\n<ul>\n<li>Create and update a model</li>\n<li>Retrieve models</li>\n<li>Invest in a model</li>\n<li>Rebalance a model</li>\n</ul>\n<p>If you do not have discretionary permissions but would like the ability to rebalance your client's portfolio, please see <strong>Realign your client's portfolio</strong> under <strong>Recurring orders.</strong></p>\n","_postman_id":"0ddac23d-55e5-45f7-b4bd-0735b082888b"},{"name":"Advisory model portfolios","item":[{"name":"The advisory model object","item":[],"id":"641f81d0-5d30-43c2-899d-930c6bf62f70","description":"<p>The advisory model object is used to store and manage information for an advisory model.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"firmId\": \"SECCI\",\n    \"name\": \"Cautious \",\n    \"modelType\": \"Advisory\",\n    \"riskRating\": 4,\n    \"productType\": [\n        \"ISA\",\n        \"JISA\"\n    ],\n    \"suspendRebalances\": false,\n    \"availableToNodeId\": [\n        \"9\"\n    ],\n    \"allocations\": [\n        {\n            \"assetId\": \"27111\",\n            \"percentage\": 0.47\n        },\n        {\n            \"assetId\": \"27427\",\n            \"percentage\": 0.5\n        }\n    ],\n    \"assetMix\": [\n        {\n            \"instrumentType\": \"Equity\",\n            \"instrumentRateType\": 0.3\n        },\n        {\n            \"instrumentType\": \"Gilts\",\n            \"instrumentRateType\": 0.4\n        },\n        {\n            \"instrumentType\": \"Corporate bonds\",\n            \"instrumentRateType\": 0.27\n        },\n        {\n            \"instrumentType\": \"Other\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Cash\",\n            \"instrumentRateType\": 0.03\n        }\n],\n        \"status\": \"Active\",\n        \"availableToNodeName\": [\n            \"Firm 1\"\n        ],\n        \"cashAllocation\": 0.03,\n        \"_name\": \"CAUTIOUS \",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-09-22T11:32:46.848Z\",\n            \"userFirmId\": \"SECCI\",\n            \"userId\": \"029B3GJ\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"632c47dec35d3b8e06d0cfe0\",\n        \"nodeId\": [\n            \"9\"\n        ]\n    }\n}\n\n</code></pre>\n<h4 id=\"attributes\"><strong>Attributes</strong></h4>\n<hr />\n<p><code>firmId</code> alphanumerical string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>name</code> string <strong>Required</strong><br />A free-text name for the model</p>\n<hr />\n<p><code>modelType</code> string <strong>Required</strong><br />Model type must be set to <code>Advisory</code></p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>productType</code> string <strong>Required</strong><br />The type of products the model can be used with, e.g wrappers \"ISA\", \"GIA\", \"SIPP\". Please see <strong>Investment accounts</strong> for all supported wrappers</p>\n<hr />\n<p><code>riskRating</code> integer<br />A numerical value used to assign a level of risk to the model from 1-10, which can be found in Key Investor Information Documents.</p>\n<hr />\n<p><code>suspendRebalances</code> string<br />Determines whether or not accounts assigned to this model can be rebalanced</p>\n<hr />\n<p><code>availableToNodeId</code> string <strong>Required</strong><br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n<p><code>allocations</code> array <strong>Required</strong><br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.assetId</code> decimal string <strong>Required</strong><br />The unique identifier for the chosen asset. The model must have at least one asset in order to create a model.</p>\n<hr />\n<p><code>allocations.percentage</code> decimal string <strong>Required</strong><br />The proportion of the asset assigned to the model. The total asset allocation (including cash) must be equal to 1.00.</p>\n<hr />\n<p><code>status</code> string <strong>Required</strong><br />The status of the model - currently only <code>Active</code> is supported.</p>\n<hr />\n<p><code>assetMix</code> array <strong>Required</strong><br />The type of asset and corresponding asset allocations. The total asset allocation (including cash) must be equal to 1.00</p>\n<hr />\n<p><code>assetMix.instrumentType</code> string <strong>Required</strong><br />The type of asset in the model. This can be \"Equities\", \"Gilts\", \"Corporate Bonds\", \"Cash\" or \"Other\"</p>\n<hr />\n<p><code>assetMix.instrumentRateType</code> string <strong>Required</strong><br />The proportion of the type of asset in the model</p>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong><br />The unique update identifier for the model. This is needed for any <code>PATCH</code> requests (updates) made on the model</p>\n","_postman_id":"641f81d0-5d30-43c2-899d-930c6bf62f70"},{"name":"Manage an advisory model","item":[{"name":"Create advisory model","event":[{"listen":"test","script":{"id":"d5446f8b-ca46-4d53-b708-d0e6401dd668","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"modelId\", data.data.id)"],"type":"text/javascript"}}],"id":"eb40e8bb-7554-4b23-9505-a7319773b62b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"name\": \"High-growth model\",\n    \"modelType\": \"Advisory\",\n    \"riskRating\": 2,\n    \"productType\": [\n        \"ISA\",\n        \"GIA\",\n        \"JISA\",\n        \"PENSION\"\n    ],\n    \"aim\": \"Invest ethically\",\n    \"suspendRebalances\": false,\n    \"availableToNodeId\": [\n        \"0\"\n    ],\n    \"allocations\": [\n        {\n            \"assetId\": \"275F1\",\n            \"percentage\": 0.68\n        },\n        {\n            \"assetId\": \"2756G\",\n            \"percentage\": 0.3\n        }\n    ],\n    \"assetMix\": [\n        {\n            \"instrumentType\": \"Equity\",\n            \"instrumentRateType\": 0.98\n        },\n        {\n            \"instrumentType\": \"Gilts\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Corporate bonds\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Other\",\n            \"instrumentRateType\": 0\n        },\n        {\n            \"instrumentType\": \"Cash\",\n            \"instrumentRateType\": 0.02\n        }\n    ]\n}"},"url":"{{apiRoute}}/model/advisory","description":"<p>Creates an advisory model. Returns a <code>modelId</code></p>\n<p>You can also clone an existing model by retrieving the model and duplicating the request body parameters into this POST request.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> alphanumerical string <strong>required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>modelType</code> string <strong>Required</strong><br />Model type must be set to <code>Advisory</code></p>\n<hr />\n<p><code>name</code> string <strong>required</strong><br />The name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>riskRating</code> string <strong>Required</strong><br />The risk rating of the model on a scale of 1-10</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>productType</code> array <strong>Required</strong><br />The type of products the model can be used with, e.g wrappers such as \"ISA\", \"GIA\", \"PENSION\". Please see investment accounts for all supported wrappers</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>suspendRebalances</code> boolean <strong>Required</strong><br />Whether this model should have rebalances suspended</p>\n<hr />\n<p><code>availableToNodeId</code> string <strong>Required</strong><br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n<p><code>allocations</code> array <strong>Required</strong><br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.assetId</code> string <strong>Required</strong><br />The unique identifier for the asset in the model allocation</p>\n<hr />\n<p><code>allocations.percentage</code> decimal <strong>Required</strong><br />The proportion of the asset in the model, where asset allocations total 1 (100%)</p>\n<hr />\n<p><code>cashAllocation</code> decimal string<br />The cash allocation for the model. This is automatically generated where asset allocations do not add up to 1 (100%) but can be specified.</p>\n<hr />\n<p><code>assetMix</code> array <strong>Required</strong><br />The proportion held of each asset class and cash in the model. This is required for producing growth rates for product illustrations where the wrapper is using a model portfolio investment strategy.</p>\n<hr />\n<p><code>assetMix.instrumentType</code> string <strong>Required</strong><br />The type of instrument/asset. The system accounts for <code>Equity</code>, <code>Gilts</code>, <code>Corporate bonds</code>, <code>Cash</code> and <code>Other</code> asset classes.</p>\n<hr />\n<p><code>assetMix.instrumentRateType</code> string <strong>Required</strong><br />The proportion of each asset class in the model, where asset allocations total 1 (100%). Please note: the cash allocation is generated as the remaining proportion of assets not accounted for. For example, a model made up of 70% equities and 28% bonds will have a 2% cash allocation.</p>\n","urlObject":{"path":["model","advisory"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"eb40e8bb-7554-4b23-9505-a7319773b62b"},{"name":"Update advisory model","id":"5e63639e-5ee1-4d01-8c10-249adf39304a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n      \"updateId\": \"{{updateId}}\",\n      \"name\": \"High-growth model - version 20230317\"\n  }"},"url":"{{apiRoute}}/model/advisory/{{firmId}}/{{modelId}}","description":"<p>Updates an advisory model.</p>\n<p>Returns an advisory model.</p>\n<p><strong>Please note the following:</strong></p>\n<ul>\n<li>You cannot change the asset allocation for an advisory model</li>\n<li>You cannot change the product types for a model. In order to do this, you must create a new model and add in your chosen wrapper types in the <code>productType</code> field.</li>\n<li>Once you have created a model, you cannot change the <code>modelType</code></li>\n</ul>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string\nThe unique identifier for the firm</p>\n<hr />\n<p><code>modelId</code> string\nThe unique identifier for the advisory model</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>name</code> string <strong>required</strong>\nThe name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>suspendRebalances</code> boolean <strong>Required</strong>\nWhether this model should have rebalances suspended</p>\n<hr />\n<p><code>commentary</code> string \nA summary or information about the model</p>\n<hr />\n<p><code>aim</code> string \nThe aim of the model</p>\n<hr />\n<p><code>riskRating</code> string\nThe risk rating of the model on a scale of 1-10 </p>\n<hr />\n<p><code>url</code> string\nThe url to the Key Features document for the model</p>\n<hr />\n","urlObject":{"path":["model","advisory","{{firmId}}","{{modelId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e63639e-5ee1-4d01-8c10-249adf39304a"}],"id":"3f794c45-f675-494c-9910-68571c7b4f8c","description":"<p>This section will cover how to create, clone and update a model.</p>\n","_postman_id":"3f794c45-f675-494c-9910-68571c7b4f8c"},{"name":"Invest in an advisory model","item":[{"name":"Create a payment in and automatically invest into model","id":"d3342925-81dc-4580-8dbc-2fa841505cbf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n        \"firmId\": \"{{firmId}}\",\n        \"accountId\": \"{{accountId}}\",\n        \"transactions\": [\n          {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n          }\n        ]\n      }"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>Creates a payment in from a bank transfer and automatically creates an order expectation for the chosen advisory <code>modelId</code> attached to the account.</p>\n<p>This returns a <code>linkid</code>. You can view the transactions under this group using the <strong>List grouped transactions</strong> request.</p>\n<p>There are a few rules and restrictions to these transactions</p>\n<ul>\n<li>Any amount left over from a sell and buy will be added to available cash</li>\n<li>Each transaction is related to the same account<br />  There are a few rules and restrictions to these transactions:</li>\n<li>Any amount left over from a sell and buy will be added to available cash</li>\n<li>Each transaction is related to the same account</li>\n</ul>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong><br />Universal object used for buys, sells, transfers and withdrawals</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>Unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order  <br />Payment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best  <br />Deposit</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>In  <br />Out</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>transactions.amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong><br />The payment method facilitating the amount paid in</p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the recurringOrders allocation or the model linked to the account</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3342925-81dc-4580-8dbc-2fa841505cbf"},{"name":"List transactions created by a group","id":"4252c4a8-d3ba-4b1f-9a2a-1e4f6c873029","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/?linkId={{transactionGroupId}}","description":"<p>Retrieves a list of underlying transactions created by a group. </p>\n<h4 id=\"request-parameters\"><strong>Request parameters</strong></h4>\n<p><code>firmId</code> The unique identifier for the firm</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{transactionGroupId}}"}],"variable":[]}},"response":[],"_postman_id":"4252c4a8-d3ba-4b1f-9a2a-1e4f6c873029"}],"id":"b23d52d6-831a-4e2f-a550-2d1abacfd803","description":"<p>This section shows you how your user can pay in and invest in a model.</p>\n","_postman_id":"b23d52d6-831a-4e2f-a550-2d1abacfd803"},{"name":"Rebalance a portfolio","item":[{"name":"Instruct a rebalance at investment account level","id":"461ac6c3-be14-4423-a98e-961b969a1f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"{{accountId}}\"\n}"},"url":"{{apiRoute}}/event/","description":"<p>Rebalances an investment account using the advisory model.</p>\n<p>Returns a <code>linkId</code> for the background transactions on the account.</p>\n<h4 id=\"validation\">Validation</h4>\n<p>When using the <code>/event</code> endpoint to initiate an investment account-level rebalance, validation is performed to ensure that no reblanace is already in progress for the account.</p>\n<p>A rebalance is in progress if:</p>\n<ul>\n<li><p>An account has a rebalance event that is calculating but not yet released</p>\n</li>\n<li><p>An account has uncompleted orders linked to a rebalance event</p>\n</li>\n</ul>\n<p>If a rebalance is in progress, the request will be rejected, and an error response will be returned specifying the reason for the rejection.</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>eventType</code> string <strong>Required</strong><br />The type of event occurring on the account. This must always be \"Rebalance\"</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s investment account</p>\n<hr />\n","urlObject":{"path":["event",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3ce2f882-1087-47aa-a7e2-21d5b3c69417","name":"Instruct a rebalance at investment account level - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"024D465\"\n}"},"url":"{{apiRoute}}/event/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 20 Sep 2022 15:39:25 GMT"},{"key":"x-amzn-RequestId","value":"d0ae58b6-a972-4573-857b-13cd7afb3e9b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"24"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Yw-7DG69joEF34w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"18-sRor5BJZLkg/dgo9UdH/3ArWQyk\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6329deac-28f2c95d199581f34783a8eb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cb9d66c261e91793be744f629d6e309e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"43vxfF7U5lzuAj4rRN0FkPFEl0UICGfKVEojV56SuNMSqem4ywBL6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00PL9L\"\n    }\n}"},{"id":"fc3e9d22-6ba2-4b44-ac8b-e6dd55bfe5d0","name":"Instruct a rebalance at investment account level - error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"{{firmId}}\",\n  \"eventType\": \"Rebalance\",\n  \"accountId\": \"024D465\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event/"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"24"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 20 Sep 2022 15:39:25 GMT"},{"key":"x-amzn-RequestId","value":"d0ae58b6-a972-4573-857b-13cd7afb3e9b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"24"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"Yw-7DG69joEF34w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"18-sRor5BJZLkg/dgo9UdH/3ArWQyk\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6329deac-28f2c95d199581f34783a8eb;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 cb9d66c261e91793be744f629d6e309e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"43vxfF7U5lzuAj4rRN0FkPFEl0UICGfKVEojV56SuNMSqem4ywBL6g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"name\": \"DataValidationError\",\n        \"message\": \"Cannot create a new rebalance event whilst an account is processing an incomplete rebalance\",\n        \"errorMessage\": \"Cannot create a new rebalance event whilst an account is processing an incomplete rebalance\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                 \"errorMessage\": \"AccountId: 024D465 has an incomplete rebalance processing\",\n                  \"fieldName\": \"eventId\",\n                  \"value\": \"00PL9L\",\n                  \"type\": \"Usage\"\n            }           \n        ]\n    }\n}"}],"_postman_id":"461ac6c3-be14-4423-a98e-961b969a1f9d"},{"name":"Retrieve rebalance event","id":"fcd0e065-b64b-4bde-a405-53d41ae1a17a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/event/{{firmId}}/{{eventId}}","description":"<p>Retrieves the rebalance event with the desired asset allocations created on the model.</p>\n<h4 id=\"url-parameters\"><strong>URL Parameters</strong></h4>\n<p><code>firmId</code> string\nUnique identifier for the firm</p>\n<hr />\n<p><code>eventId</code> string\nUnique identifier for the rebalance event</p>\n<hr />\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>id</code> string\nUnique identifier for the rebalance event (<code>eventId</code>)</p>\n<hr />\n<p><code>firmId</code> string\nUnique identifier for the firm</p>\n<hr />\n<p><code>eventType</code> string \nThe type of event taking place - this should be \"Rebalance\"</p>\n<hr />\n<p><code>assetAllocationId</code> alphanumerical string \nUnique identifier for the model which has been rebalanced</p>\n<hr />\n<p><code>investmentDecision</code> array \nAn array capturing all the national identifier information for the DFM - both the firm and the firm user. All fields are mandatory.</p>\n<hr />\n<p><code>investmentDecision.firmLei</code> numerical string \nA 20-digit numerical identifier assigned to a DFM</p>\n<hr />\n<p><code>investmentDecision.firmCountry</code> string \nA two-letter country code denoting the firm's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>investmentDecision.personId</code> alphanumerical string \nThe National Identifier for the firm user/decision maker. For GB nationals this is in the format XX123456X.\nFor a full list of supported national identifiers, please see <strong>Client onboarding &gt; List nationalities</strong></p>\n<hr />\n<p><code>investmentDecision.personIdType</code> string\nThe type of National Identifier provided for the firm user/decision maker. For GB nationals this is NINO (National Insurance Number)</p>\n<hr />\n<p><code>investmentDecision.personCountry</code> string \nA two-letter country code denoting the firm user/decision maker's location</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>United Kingdom = GB</td>\n</tr>\n<tr>\n<td>For a full list of supported nationalities, please see <strong>Client onboarding &gt; List nationalities</strong></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>eventDate</code> date \nThe date and time when the rebalance was instructed</p>\n<hr />\n<p><code>status</code> date \nThe status of the rebalance. Once instructed, status is <code>Released</code></p>\n<hr />\n<p><code>confirmedDetails</code> array \nConfirmed details of the rebalance. Please see below for more information:</p>\n<hr />\n<p><code>confirmedDetails.confirmedCashAllocation</code> decimal string\nThe confirmed cash allocation</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations</code> array \nThe confirmed asset allocations. See below for details:</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.assetId</code> alphanumerical string \nThe unique identifier of the instrument to be traded. These can be retrieved using the List assets <code>GET</code> request.</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.percentage</code> decimal string \nThe proportion out of 1.00 (100%) to be allocated to this asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.currency</code> string (acronym) \nThe currency of the instrument to be traded </p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.buyPrice</code> decimal string \nThe confirmed buy price of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.sellPrice</code> decimal string \nThe confirmed sell price of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.assetName</code> string\nThe name of the asset</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.isin</code> string\nThe unique identifier for the instrument</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.quoteUnit</code> number</p>\n<hr />\n<p><code>confirmedDetails.confirmedAllocations.minimumTransferUnit</code> number</p>\n","urlObject":{"path":["event","{{firmId}}","{{eventId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"fcd0e065-b64b-4bde-a405-53d41ae1a17a"}],"id":"481ed9ca-987f-43b8-bd72-9c5f1b0953cd","description":"<p>This section will show you how to instruct a model rebalance.</p>\n<p>Note that, for advisory models, rebalancing can only be done at the account/portfolio level. Bulk rebalancing (i.e. rebalance all accounts attached to the model at the same time) is not possible.</p>\n","_postman_id":"481ed9ca-987f-43b8-bd72-9c5f1b0953cd"}],"id":"c51a5936-9936-4722-afd5-27de20a2a565","description":"<p>This functionality enables a firm without discretionary permissions to create and manage model portfolios for their clients.</p>\n<p>Discretionary Fund Managers (DFMs) should refer to <strong>Discretionary model portfolios</strong> as this requires additional decision maker information.</p>\n<p>Please note the following limitations with advisory models:</p>\n<ol>\n<li><strong>Assets cannot be changed</strong> after a model has been created (a new version must be created with the new asset(s) and clients switched to the new model as required)</li>\n<li><strong>Bulk rebalancing is not possible</strong> with advisory models. Rebalancing can only be done on individual accounts where <code>accountId</code> is specified in the Rebalance <code>event</code>.</li>\n</ol>\n<p>This section will cover how to:</p>\n<ul>\n<li>Create a model</li>\n<li>Retrieve models</li>\n<li>Invest in a model</li>\n<li>Rebalance a portfolio</li>\n</ul>\n","_postman_id":"c51a5936-9936-4722-afd5-27de20a2a565"},{"name":"List models","item":[{"name":"Retrieve model","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"modelUpdateId\", data.data.updateId)"],"type":"text/javascript","id":"68b00144-6265-4eea-8c83-eff23f3a85a0"}}],"id":"c642643b-c181-442b-864d-c8eb0305b76d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/model/{{firmId}}/{{modelId}}","description":"<p>Retrieves a specific model.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>modelId</code> string<br />The unique identifier for the model</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> alphanumerical string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>name</code> string<br />The name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>modelType</code> string<br />Either <code>Discretionary</code> or <code>Advisory</code></p>\n<hr />\n<p><code>suspendRebalances</code> boolean<br />Whether this model should have rebalances suspended</p>\n<hr />\n<p><code>allocations</code> array<br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.cashAllocation</code> decimal string<br />The required cash allocation</p>\n<hr />\n<p><code>allocations.productType</code> array<br />The type of products the model can be used with, e.g wrappers such as \"ISA\", \"GIA\", \"SIPP\". Please see investment accounts for all supported wrappers</p>\n<hr />\n<p><code>vatable</code> boolean<br />Whether VAT can be applied to the model |</p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>riskRating</code> string<br />The risk rating of the model on a scale of 1-10</p>\n<hr />\n<p><code>modelCharge</code> decimal string<br />The charge percentage of the model. This is only used for discretionary models.</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>lei</code> numerical string<br />The Legal Entity Identifier of the firm who made the investment decision of the assets in the model. This is only used for discretionary models.</p>\n<hr />\n<p><code>availableToNodeId</code> string<br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n","urlObject":{"path":["model","{{firmId}}","{{modelId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c642643b-c181-442b-864d-c8eb0305b76d"},{"name":"List models","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"6d227036-d48f-44e3-9274-a2a7e1995688"}}],"id":"18bc00c9-c5e0-4743-a642-4ec42b43ef3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/model/{{firmId}}","description":"<p>Retrieves all models for the firm.</p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<hr />\n<p><code>firmId</code> The unique identifier for the firm</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> alphanumerical string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>name</code> string<br />The name of the model e.g Adventurous ESG</p>\n<hr />\n<p><code>modelType</code> string<br />Set to either <code>Discretionary</code> or <code>Advisory</code> to filter by model type</p>\n<hr />\n<p><code>suspendRebalances</code> boolean<br />Whether this model should have rebalances suspended</p>\n<hr />\n<p><code>allocations</code> array<br />An array of data showing assets and the required allocation percentage</p>\n<hr />\n<p><code>allocations.cashAllocation</code> decimal string<br />The required cash allocation</p>\n<hr />\n<p><code>allocations.productType</code> array<br />The type of products the model can be used with, e.g wrappers such as \"ISA\", \"GIA\", \"SIPP\". Please see investment accounts for all supported wrappers</p>\n<hr />\n<p><code>vatable</code> boolean<br />Whether VAT can be applied to the model |</p>\n<hr />\n<p><code>commentary</code> string<br />A summary or information about the model</p>\n<hr />\n<p><code>aim</code> string<br />The aim of the model</p>\n<hr />\n<p><code>riskRating</code> string<br />The risk rating of the model on a scale of 1-10</p>\n<hr />\n<p><code>modelCharge</code> decimal string<br />The charge percentage of the model. This is only used for discretionary models.</p>\n<hr />\n<p><code>url</code> string<br />The url to the Key Features document for the model</p>\n<hr />\n<p><code>lei</code> numerical string<br />The Legal Entity Identifier of the firm who made the investment decision of the assets in the model. This is only used for discretionary models.</p>\n<hr />\n<p><code>availableToNodeId</code> string<br />This limits which users have access to view, edit and assign the model.</p>\n<hr />\n","urlObject":{"path":["model","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"18bc00c9-c5e0-4743-a642-4ec42b43ef3a"}],"id":"76597b91-ccdd-4eac-b1b3-6c807f8dd4ce","description":"<p>This section will show you how to retrieve your firm's models. This action is useful for seeing an overview of all models available and making any updates to the models.</p>\n","_postman_id":"76597b91-ccdd-4eac-b1b3-6c807f8dd4ce"}],"id":"114e3758-dc29-43a1-9018-683c2a1371f4","description":"<p>This section will help you create a model portfolio service for clients who would benefit from active management but who do not require a full bespoke service. These can be targeted at different investment objectives such as growth, balanced, or income.</p>\n<p>As the investment firm, you may construct and<br />manage these portfolios itself or outsource the investment activity to a 3rd party discretionary manager.</p>\n<p>These solutions fall within the following types of structure:</p>\n<p>• <strong>Discretionary</strong> – the client gives discretion for a firm to manage a portfolio on their behalf on a<br />professional basis. Clients may wish to use this type of service if they are too busy or not experienced enough to look after their own investments and prefer to use the investment experience of a firm providing these services.</p>\n<p>• <strong>Advisory</strong> (non-discretionary) – clients rely on the firm for professional and independent advice on investment<br />decisions, but the client takes the final decision to deal.</p>\n<p>We currently do not offer an execution-only solution.</p>\n","_postman_id":"114e3758-dc29-43a1-9018-683c2a1371f4"},{"name":"Retrieve orders","item":[{"name":"Retrieve pending orders","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.globals.set(`orderTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"098010b6-e332-4235-8d8b-ed26f225bb5c"}}],"id":"e78f3cc1-2490-4710-90be-75cea9a98068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}&transactionType=Order&status=Pending","description":"<p>Retrieves all pending orders. This can be done on several levels using query parameters in conjunction with <code>status:</code></p>\n<ul>\n<li>For the entire firm</li>\n<li>For a specific client/account</li>\n<li>For specific transactions</li>\n</ul>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The alphanumerical identifier for your group of transactions.</p>\n","type":"text/plain"},"key":"linkId","value":"{{linkId}}"},{"description":{"content":"<p>The type of transaction. Use this to retrieve orders.</p>\n","type":"text/plain"},"key":"transactionType","value":"Order"},{"description":{"content":"<p>The status of the order. To retrieve pending orders, set this to Pending. </p>\n","type":"text/plain"},"key":"status","value":"Pending"}],"variable":[]}},"response":[],"_postman_id":"e78f3cc1-2490-4710-90be-75cea9a98068"},{"name":"Retrieve order","id":"1c771afd-0a7f-4b8d-a9b4-cbf1bb6397b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/{{orderId}}","description":"<p>Retrieves a specific order using an <code>orderId</code></p>\n<h4 id=\"request-parameters\">Request Parameters</h4>\n<p><code>firmId</code> alphanumerical string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>orderId</code> alphanumerical string <strong>Required</strong><br />Unique identifier for the firm</p>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<p><code>firmId</code> alphanumerical string <strong>Required</strong><br />Unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />Unique identifier for the client’s account</p>\n<hr />\n<p><code>transactionType</code> string <strong>Required</strong><br />The type of transaction taking place</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Order</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactionSubType</code> string <strong>Required</strong><br />The action performed on the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>At best</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>movementType</code> string <strong>Required</strong><br />Whether cash or assets are travelling in or out of an account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Invest  <br />Buy  <br />Raise  <br />Sell</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account</p>\n<hr />\n<p><code>amount</code> decimal string <strong>Required</strong><br />The amount in pounds paid in or out of the account</p>\n<hr />\n<p><code>assetId</code> string <strong>Required</strong><br />Unique identifier for a type of asset</p>\n<hr />\n<p><code>autoDisinvestmentMethod</code></p>\n<p>The auto disinvestment method that was used to generate this transaction if it was created by a Portfolio Transaction Group with <code>autoDisinvest</code> or if the account has <code>autoDisinvest</code> configured by default</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{orderId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c771afd-0a7f-4b8d-a9b4-cbf1bb6397b9"}],"id":"177ffb76-bde9-42d3-8e82-5d217f53e8ae","_postman_id":"177ffb76-bde9-42d3-8e82-5d217f53e8ae","description":""}],"id":"4db3e7c7-2c5e-48ec-8a28-1633bb1b9529","description":"<p>Investment strategies determine how assets are allocated in a client's portfolio. This usually takes into consideration:</p>\n<ul>\n<li>The client's net-worth</li>\n<li>The length of their investment</li>\n<li>The specific investment goals e.g purchasing a home</li>\n<li>Their attitude to risk</li>\n<li>The nature of your business and FCA permissions you have (DFM/Adviser/D2C)</li>\n</ul>\n<p>All investment strategies are stored as transactions in the API. These transactions are presented as single orders, recurring orders and models in the code.</p>\n<p><strong>A note on regulation</strong></p>\n<p>Seccl carries out daily transaction reporting to the FCA that records the details of the investor decision maker that submitted the order in any exchange traded assets. The investor decision maker is determined by the specific investment strategy.</p>\n<p>For example, where a client is investing in discretionary managed model portfolios, the investor decision maker is the Discretionary Fund Manager (DFM). As such, we need to report the details of the DFM, and not the investor.</p>\n<p>The able below outlines the possible investment strategies and what functionality you should use.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Investment strategy</strong></th>\n<th><strong>Seccl functionality</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Discretionary managed model portfolios</td>\n<td>Discretionary model portfolios</td>\n</tr>\n<tr>\n<td>Bespoke discretionary managed model portfolios</td>\n<td>Discretionary model portfolios</td>\n</tr>\n<tr>\n<td>Advisory models</td>\n<td>Advisory model portfolios</td>\n</tr>\n<tr>\n<td>Individual orders</td>\n<td>Single orders</td>\n</tr>\n<tr>\n<td>Thematic investing</td>\n<td>Recurring orders</td>\n</tr>\n<tr>\n<td>Investing in a single asset</td>\n<td>Recurring orders</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>This section shows you how to:</strong></p>\n<ul>\n<li>Attach, create and update an investment strategy</li>\n<li>Pay in and auto-invest</li>\n<li>Retrieve pending and completed orders</li>\n</ul>\n","_postman_id":"4db3e7c7-2c5e-48ec-8a28-1633bb1b9529"},{"name":"Payment methods","item":[{"name":"The payment object","item":[],"id":"32d544a9-356d-4a22-8405-ab4b8803edb0","description":"<p>The <code>Payment</code> <code>portfoliotransaction</code> object describes payment transactions.</p>\n<p>We sometimes call Payment transactions \"expectations\", because we expect them to happen once the instruction is created through the API. For example, a Payment expectation is created, once we receive the cash, we can allocate the actual money to the expectation.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactionType</code> enum value<br />The type of transaction taking place. This will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactionSubType</code> enum value<br />The sub-type of the transaction taking place. These can be one of:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Deposit</code></td>\n<td>Payment expectation</td>\n</tr>\n<tr>\n<td><code>Employer</code></td>\n<td>Employer payment expectation (for pension contributions only)</td>\n</tr>\n<tr>\n<td><code>Employee</code></td>\n<td>Employee payment expectation (for pension contributions only)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>movementType</code> string<br />Whether the cash is travelling in or out of the investment account. This should be set to <code>In</code></p>\n<hr />\n<p><code>currency</code> string<br />Three-letter ISO code for the currency paid in or out of the account. This should be set to <code>GBP</code></p>\n<hr />\n<p><code>amount</code> float<br />The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>method</code> enum value<br />The payment method facilitating the amount paid in.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Bank Transfer</code></td>\n<td>Payment expectation</td>\n</tr>\n<tr>\n<td><code>Seccl GoCardless</code></td>\n<td>Payment is collected via GoCardless direct debit</td>\n</tr>\n<tr>\n<td><code>Bulk Bank Transfer</code></td>\n<td>Child expectation for bulk payment</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactionDate</code> string</p>\n<p>The date the payment transaction was instructed</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>Money received and allocated to a client account</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Expectation created and awaiting receipt of money</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Expectation deleted, this cannot be allocated</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>statusChange</code> array</p>\n<p>Contains a list of changes to the transaction's <code>status</code> field</p>\n<hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the portfolio transaction group</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client account</p>\n<hr />\n<p><code>createdDate</code> string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>completedDate</code> string</p>\n<p>The date the transaction switched to <code>Completed</code></p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>A unique identifier of this transactions' current state. You will need this if you want to update a transaction later.</p>\n<hr />\n","_postman_id":"32d544a9-356d-4a22-8405-ab4b8803edb0"},{"name":"Bank transfer","item":[{"name":"Retrieve portfolio transaction object(s)","id":"9c5f0523-3759-4bd0-b990-fa2f085ac584","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c5f0523-3759-4bd0-b990-fa2f085ac584"},{"name":"Create a bank transfer expectation","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"transactionGroupId\", data.data.id)"],"type":"text/javascript","id":"c1651ef7-36b4-4de0-8290-e4194b6454fa"}}],"id":"f7056d29-00cf-4d14-a1ad-5a81d5697641","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This flow creates a bank transfer expectation. It can also be used to auto-allocate payments via open banking.</p>\n<p>The response returns a <code>linkId</code> which can be queried to retrieve all <code>portfoliotransaction</code> 's in the group.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<p>Contains details of the transactions within the portfolio transaction group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> enum value <strong>Required</strong></p>\n<p>This will be <code>Deposit</code>, or if the contribution is to a pension wrapper, it will be <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>transactions.method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected – this should be set to <code>Bank Transfer</code></p>\n<hr />\n<p><code>transactions.movementType</code> enum value <strong>Required</strong></p>\n<p>This indicates the movement of the cash or assets – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code - this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>This indicates whether the money should be auto-invested into the <code>recurringOrders</code> or model attached to the account</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e0a286d3-f36c-4470-b4a6-f6a282ec6d4e","name":"Create a bank transfer expectation - keep it as cash in the account","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 15 Aug 2022 10:00:20 GMT"},{"key":"x-amzn-RequestId","value":"1f64f1be-4ce0-4bf8-bd91-1fee73b0155a"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W5jgMG18DoEF8zg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-3mO5UrKD4gEJs5PuQGXw45ehS8s\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fa1934-044e2a43236246a66585cc65;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 90927d233f1a615dc244e8b198aa1f04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"ktzryMqEOiBLQoNZctx4fSmdPfm6sSQE85zrUnd3XHQpzbxcYDnhEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"},{"id":"ee983f2e-d404-4c51-b072-7c031424fb95","name":"Bank transfer invest to model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\", \n            \"autoInvest\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"},{"id":"cfae4ad1-4e98-4471-b2b3-b5c5b1fec100","name":"Bank transfer invest to recurring orders allocation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"},{"id":"e2b51c4f-1b0c-48d3-9d36-00c643324d55","name":"Bank transfer invest to multiple assets","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 0.48,\n            \"currency\": \"GBP\",\n            \"assetId\": \"279M6\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 0.5,\n            \"currency\": \"GBP\",\n            \"assetId\": \"275NR\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"},{"id":"1f09ac49-cf3b-4970-bd1b-bc3b0dbe9a2b","name":"Bank transfer invest to single asset","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Bank Transfer\"\n        }, \n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 1,\n            \"currency\": \"GBP\",\n            \"assetId\": \"279M6\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"}],"_postman_id":"f7056d29-00cf-4d14-a1ad-5a81d5697641"},{"name":"Staging mock - complete a payment","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"paymentId\", data.data.id)"],"type":"text/javascript","id":"0e0ef704-1577-4643-bccd-318f226ff4b5"}}],"id":"3b4e328d-bcda-46af-9d21-0304fd0a3bef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"type\" : \"Action\",\n\t\"firmId\" : \"{{firmId}}\",\n\t\"transactionAction\" : \"Complete\",\n    \"actionReason\": \"Mock cash received\"\n}"},"url":"{{apiRoute}}/portfoliotransactionaction/{{firmId}}/{{paymentId}}","description":"<p>This endpoint lets you simulate a production environment by completing a payment. Completing a payment will allocate cash to the client account.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>The type of event being used - this should be set to \"Action\"</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The firm Id</p>\n<hr />\n<p><code>transactionAction</code> string <strong>Required</strong></p>\n<p>The type of action being used - this should be set to \"Complete\"</p>\n<hr />\n<p><code>actionReason</code> string <strong>Required</strong></p>\n<p>An audit trail note for you to record why you made the action.</p>\n","urlObject":{"path":["portfoliotransactionaction","{{firmId}}","{{paymentId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3b4e328d-bcda-46af-9d21-0304fd0a3bef"},{"name":"Create account with a recurring payment","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"5ce84dd7-d3bc-4a6e-b2d9-a7916cc74aec"}}],"id":"5e9cf94e-15f4-486c-9dcb-cdae8b945489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"My first investment account\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>You can also set up recurring monthly expectations to generate on client accounts. Just like with one-time expectations, the <code>Method</code> still determines how the cash gets to Seccl, but a new expectation will exist to match with the receipt. You can set this up at the same time as creating the client account (this flow) or you can always add it to the account another time (the next flow).</p>\n<p>This flow allows you to create an investment account with a recurring payment built in. The investor will need to set up a standing order for the relevant payment date and include the correct payment reference.</p>\n<p>When you create a recurring payment on an investment account, the payment expectation is generated at 8 am in the morning with a status of <code>Pending</code>. The <code>Pending</code> expectation remains until the money is allocated or it is manually deleted by Seccl on request.</p>\n<p>A single investment account can have multiple recurring payments within the <code>recurringPayment</code> array.</p>\n<p>This returns the unique identifier of the created investment account.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong></p>\n<p>The node identifier that the client is attached</p>\n<hr />\n<p><code>accountType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string <strong>Required</strong></p>\n<p>The name of the account. This is an editable free text field</p>\n<hr />\n<p><code>status</code> enum value <strong>Required</strong></p>\n<p>The status of the account - this should be set as <code>Active</code>. It indicates that the investor has viewed and accepted the product terms and declaration</p>\n<hr />\n<p><code>adviserCharge</code> float</p>\n<p>The ongoing adviser charge taken against the account as a percentage</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The ongoing discretionary management charge taken against the account as a percentage</p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique client identifier</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong></p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum value <strong>Required</strong></p>\n<p>The type of wrapper of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>This indicates that the investment strategy is managed on a discretionary basis</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>This indicates that the investment account is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> string</p>\n<p>This is the model identifier that is attached to the account</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>In</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be contributed on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the expectation is generated. This can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to contribute. This should be set as <code>Bank Transfer</code></p>\n<hr />\n<p><code>recurringPayment.paymentType</code> enum value</p>\n<p>This is relevant for pension contributions only and will be either <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the model linked to the account</p>\n<hr />\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"8deb113f-76d5-4e3b-a136-d4e29cad00bf","name":"Recurring payment invest to recurring orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ],\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"48477a69-e9d2-4d67-a3d3-922450e7ba94","name":"Recurring payment invest to recurring orders Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\",\n        \"discretionary\": true,\n        \"assetAllocation\": \"{{assetAllocationId}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"investToModel\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"1f270a66-eefd-4d67-9c70-ed71c55d77a3","name":"Create account with a recurring payment","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"Fred's Saving Pot\",\n    \"clientId\": \"024B197\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"ISA\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 17 Aug 2022 17:08:36 GMT"},{"key":"x-amzn-RequestId","value":"268b051e-2bb5-444c-8169-afca32dd8eab"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XBIG2HFUjoEF2zA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-xHG/Lo8PSTmCks7jIdsM0tvDRMo\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fd2092-73644bc07fbfa2183d0a7fec;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 a1f249a9bf642aa76e446956825f42a6.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR3-C2"},{"key":"X-Amz-Cf-Id","value":"RqmXoDuBaGzI4Ie5kN_5Iob3upXXSb7BQEf-jQxnzeEJnajmW3B1gQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0258B7J\"\n    }\n}"}],"_postman_id":"5e9cf94e-15f4-486c-9dcb-cdae8b945489"},{"name":"Update account with a recurring payment","id":"4d7d5302-02bc-42b7-ba20-e641d7674d09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ],\n    \"updateId\": \"{{accountUpdateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>This flow updates an existing investment account and creates a regular bank transfer expectation. The investor will need to set up a standing order for the relevant payment date and include the correct payment reference.</p>\n<p>When you create a recurring payment on an investment account, the payment expectation is generated at 8 am in the morning with a status of <code>Pending</code>. The <code>Pending</code> expectation remains until the money is allocated or it is manually deleted by Seccl on request.</p>\n<p>A single investment account can have multiple recurring payments within the <code>recurringPayment</code> array.</p>\n<p>This returns an empty <code>data</code> array if successful.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>A value of the same attribute name on the <code>account</code> object, this helps us make sure you're using the latest version of the object</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>In</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be contributed on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date of the month that the expectation is generated. This can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to contribute. This should be set as <code>Bank Transfer</code></p>\n<hr />\n<p><code>recurringPayment.paymentType</code> enum value</p>\n<p>This is relevant for pension contributions only and will be either <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the <code>model</code> allocation</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b6d3ec3b-4989-4556-9590-314b55adcaca","name":"Create a regular bank transfer","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Bank Transfer\",\n            \"autoInvest\": true\n        }\n    ],\n    \"updateId\": \"{{accountUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 18 Jul 2022 16:36:25 GMT"},{"key":"x-amzn-RequestId","value":"4b9eccf5-d7d2-45bb-b05c-86d93c13840b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"VeLRaFj9DoEFcAg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62d58c08-3ab66eb93773556f34168b8d;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 525c3d808e131f8c3f58ce1e7ea2678e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR62-C5"},{"key":"X-Amz-Cf-Id","value":"zzIkIaPQZd66p15t93Ywfgfdj_xckVi1pIh_xfKf2bdCBSkEWFDPaA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"4d7d5302-02bc-42b7-ba20-e641d7674d09"}],"id":"02383fd0-1659-4d71-87ed-27536e1f8906","description":"<p>To allow an investor to use bank transfer as their payment method, you need to create a <code>portfoliotransaction</code> object.</p>\n<p>We have the functionality to instantly allocate payments to the investment account. Seccl matches money received via bank transfer dependent on three factors:</p>\n<ol>\n<li>A corresponding payment expectation that matches the amount received</li>\n<li>The payment reference in the form of <code>{{firmId}}-{{accountId}}</code></li>\n<li>Bank details on the transaction that match those held on the client record</li>\n</ol>\n<p>Where an exception occurs due to one or more of the above being incorrect, the payment falls to unidentified receipts, and manual input is required from your operations team.</p>\n<p><strong>Please note: payment transactions do not settle in the staging environment. To simulate real life events, you need manually settle the payment expectation using the</strong> <strong><code>PUT</code></strong> <strong>request here described in this section \"Staging mock - complete a payment\".</strong></p>\n<p>We will start with showing you how to retrieve existing transaction objects, before moving on to show you how to create new ones.</p>\n","_postman_id":"02383fd0-1659-4d71-87ed-27536e1f8906"},{"name":"Direct Debits","item":[{"name":"Client requires mandate","item":[{"name":"Create a client to require mandate","event":[{"listen":"prerequest","script":{"id":"ed331900-b6e5-4197-9bb6-c4f60bd1242d","exec":["var moment = require('moment')","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"8dba3926-97e6-4792-9e88-cf1096f76ff8","exec":["let json = pm.response.json()","pm.environment.set('clientId', json.data.id)"],"type":"text/javascript","packages":{}}}],"id":"c9d71533-9bf6-41bf-99c1-9e53be40fa9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"TEST1\",\n  \"nodeId\": [\"0\"],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mr\",\n  \"firstName\": \"Billy\",\n  \"surname\": \"NoMates\",\n  \"gender\": \"Male\",\n  \"nationality\": \"GB\",\n  \"language\": \"en\",\n  \"addressDetail\": {\n    \"buildingNumber\": \"179\",\n    \"address1\": \"Low Street\",\n    \"address2\": \"New Edlington\",\n    \"address3\": \"Leicester\",\n    \"address4\": \"South Yorkshire\",\n    \"country\": \"GB\",\n    \"postCode\": \"DN13 4GG\"\n  },\n  \"email\": \"fkdsadsadsadasdhdfkdjsf@example.com\",\n  \"emailVerified\": true,\n  \"currency\": \"GBP\",\n  \"dateOfBirth\": \"1907-07-07\",\n  \"taxDomicile\": \"GB\",\n  \"bankDetails\": {\n    \"sortCode\": \"000000\",\n    \"accountNumber\": \"12346578\"\n  },\n  \"requiresDebitMandate\": true\n}"},"url":"{{apiRoute}}/client","description":"<p>This creates a client record with a <code>requiresDebitMandate</code> flag set to <code>true</code>. This returns a <code>clientId</code>.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> array <strong>Required</strong><br />Array containing unique identifier for the firm node's accounts</p>\n<p><code>[“0”, “1”]</code></p>\n<hr />\n<p><code>clientType</code> enum value <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Corporate  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> enum value <strong>Required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong><br />The legal surname of the client</p>\n<hr />\n<p><code>gender</code> enum <strong>Required</strong><br />The legal gender of the client</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail</code> array <strong>Required</strong></p>\n<hr />\n<p><code>addressDetail.flatNumber</code> string <strong>Required</strong><br />The building name or number of the client's address</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address3</code> string<br />The third line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.address4</code> string<br />The fourth line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The postcode of the client's legal home address</p>\n<hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address</p>\n<hr />\n<p><code>emailVerfied</code> boolean <strong>Required</strong><br />Confirms if the client’s email has been Verified</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account. This should be set to GBP.</p>\n<hr />\n<p><code>mobile</code> array<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location for the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number. This is only mandatory for British clients. It's not required for clients opening a GIA only. In the case of non-GB nationalities, please see [insert link to multiple nationalities]</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong><br />The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string<br />Before creating a client record, you must carry out necessary AML/KYC checks. Once the client is deemed eligible, this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean</p>\n<p>Whether or not the client has accepted the platform terms and conditions. This should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> object <strong>Required</strong><br />The client's bank details including sort code and account number</p>\n<hr />\n<p><code>bankDetails.sortCode</code> string <strong>Required</strong><br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> string <strong>Required</strong><br />The client's account number. This is an eight-digit number</p>\n<hr />\n<p><code>requiresDebitMandate</code> boolean <strong>Required</strong></p>\n<p>This indicates if the client requires a direct debit mandate. It can be used to trigger the direct debit mandate acceptance flow in your application</p>\n<hr />\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"901b3c11-e2cc-43fc-9a0a-67e73354fba6","name":"Create a client to require mandate","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"firmId\": \"TEST1\",\n  \"nodeId\": [\"0\"],\n  \"clientType\": \"Individual\",\n  \"title\": \"Mr\",\n  \"firstName\": \"Billy\",\n  \"surname\": \"NoMates\",\n  \"gender\": \"Male\",\n  \"nationality\": \"GB\",\n  \"language\": \"en\",\n  \"addressDetail\": {\n    \"buildingNumber\": \"179\",\n    \"address1\": \"Low Street\",\n    \"address2\": \"New Edlington\",\n    \"address3\": \"Leicester\",\n    \"address4\": \"South Yorkshire\",\n    \"country\": \"GB\",\n    \"postCode\": \"DN13 4GG\"\n  },\n  \"email\": \"fkdsadsadsadasdhdfkdjsf@example.com\",\n  \"emailVerified\": true,\n  \"currency\": \"GBP\",\n  \"dateOfBirth\": \"1907-07-07\",\n  \"taxDomicile\": \"GB\",\n  \"bankDetails\": {\n    \"sortCode\": \"000000\",\n    \"accountNumber\": \"12346578\"\n  },\n  \"requiresDebitMandate\": true\n}\n"},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 08:33:01 GMT"},{"key":"x-amzn-RequestId","value":"5351aead-ace3-4ca1-b44d-7cb81ad30662"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8pplHgZDoEFTaA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-uBQVKdNMlnoAXWN/Ux2baAP/jHI\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb563d-20fbff6a6e26d5821864d0f2;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 242a81711c4fc113f186d0cca0b5bb94.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"4AgSxT5NA5rMWEaSDqNZBObCONSPYxB-ivjAdkjFzZxfH0IS5PZFXA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0267392\"\n    }\n}"}],"_postman_id":"c9d71533-9bf6-41bf-99c1-9e53be40fa9f"},{"name":"Update a client to require mandate","event":[{"listen":"prerequest","script":{"id":"f5a45a74-5759-44d0-ad2f-40abdb44bfb6","exec":["var moment = require('moment')","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","packages":{}}},{"listen":"test","script":{"id":"a58a5dd8-5a48-464d-a922-65f4072b6c70","exec":["let json = pm.response.json()","pm.environment.set('clientId', json.data.id)"],"type":"text/javascript","packages":{}}}],"id":"ec133073-f389-44f7-aef8-428d8394a460","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"updateId\": \"6826028f5ba4d613a16d4a22\",\n  \"requiresDebitMandate\": true\n}\n"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>This updates the client record to include the <code>requiresMandate</code> flag.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The updated identifier to the record when it was last updated</p>\n<hr />\n<p><code>requiresMandate</code> boolean</p>\n<p>This indicates if the client requires a direct debit mandate. It can be used to trigger the direct debit mandate acceptance flow in your application</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"40d08db7-d616-4fbd-915b-34c26cc4c688","name":"Update a client to require mandate","originalRequest":{"method":"PATCH","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"updateId\": \"6826028f5ba4d613a16d4a22\",\n  \"requiresDebitMandate\": true\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 08:46:38 GMT"},{"key":"x-amzn-RequestId","value":"ae732546-c25c-43a9-a4aa-33d19323b1e2"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8rpMEn2joEFUjQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb596d-6938b1ec7e28d2b224fee65c;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ad6a59dd9fdc1afb57f7131fcd96bf20.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"DD4sEVqJ_gChq12La2rYA4Ava9zMhV1pocDLX7LuJ1KvvdD-Fp24cw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"ec133073-f389-44f7-aef8-428d8394a460"}],"id":"bc951382-345d-467e-b296-46268af94029","description":"<p>If your client requires a direct debit mandate, you can create a client record with a requiresDebitMandate flag.</p>\n<p><strong>Note: This is an optional step and can be used to trigger the mandate acceptance flow. It does not create the direct debit mandate.</strong></p>\n","_postman_id":"bc951382-345d-467e-b296-46268af94029"},{"name":"Client accepts mandate","item":[{"name":"Create a client with mandate accepted","event":[{"listen":"prerequest","script":{"id":"1bb6ae96-a9d7-49be-9491-cf0deceed659","exec":["var moment = require('moment')","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')","pm.environment.set('currentdate', moment().format((\"YYYY-MM-DD\")));"],"type":"text/javascript"}},{"listen":"test","script":{"id":"e0f4c628-21b6-4c65-b85e-193195c07aab","exec":["let json = pm.response.json()","pm.environment.set('clientId', json.data.id)"],"type":"text/javascript"}}],"id":"0dfb19c4-3b19-489d-9909-a4bd3a23647c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": [\n        \"1\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Miss\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flinstone\",\n    \"gender\": \"Male\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"201\",\n        \"address1\": \"Cobblestone Lane\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"BR1 6RK\"\n    },\n    \"language\": \"en\",\n    \"email\": \"wilma.flinstone@cobblerock.com\",\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"PC955833D\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"value\": \"PC892898D\",\n                    \"available\": true\n                }\n            ]\n        }\n    ],\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\",\n        \"debitPaymentMandate\": true,\n        \"debitPaymentMandateAgreementDate\": \"{{currentdate}}\"\n    }\n}"},"url":"{{apiRoute}}/client","description":"<p>This creates a client record where they have viewed and accepted the direct debit mandate, and returns a <code>clientId</code>.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong><br />The unique identifier for the firm node's account</p>\n<hr />\n<p><code>clientType</code> enum value <strong>Required</strong><br />The type of client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Individual  <br />Corporate  <br />Individual Minor</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>title</code> enum value <strong>required</strong><br />The legal title of the client</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Dr  <br />Professor  <br />Mrs  <br />Miss  <br />Mr  <br />Ms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>firstName</code> string <strong>Required</strong><br />The legal first name/s of the client</p>\n<hr />\n<p><code>surname</code> string <strong>Required</strong></p>\n<p>The legal surname of the client</p>\n<hr />\n<p><code>gender</code> enum <strong>Required</strong><br />The legal gender of the client</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong><br />Three-letter ISO code for the currency paid in or out of the account. This should be set to <code>GBP</code></p>\n<hr />\n<p><code>addressDetail</code> array <strong>Required</strong></p>\n<hr />\n<p><code>addressDetail.flatNumber</code> string <strong>Required</strong><br />The building name or number of the client's address.</p>\n<hr />\n<p><code>addressDetail.address1</code> string <strong>Required</strong><br />The first line of the client's legal home address.</p>\n<hr />\n<p><code>addressDetail.address2</code> string<br />The second line of the client's legal home address</p>\n<hr />\n<p><code>addressDetail.country</code> string <strong>Required</strong><br />The client's country of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>addressDetail.postCode</code> string <strong>Required</strong><br />The post code of the client's legal home address.</p>\n<hr />\n<p><code>language</code> string <strong>Required</strong><br />The client's preferred language of communication</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>English = en</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>email</code> string <strong>Required</strong><br />The client's email address</p>\n<hr />\n<p><code>mobile</code> array<br />Details capturing the client's mobile phone number</p>\n<hr />\n<p><code>mobile.number</code> number<br />The client's mobile phone number</p>\n<hr />\n<p><code>mobile.locale</code> string<br />The geographical location for the client's mobile phone number</p>\n<hr />\n<p><code>mobile.isMobile</code> boolean<br />Confirms the client's phone number is a mobile phone number</p>\n<hr />\n<p><code>nationality</code> string <strong>Required</strong><br />The client's nationality</p>\n<hr />\n<p><code>nationalInsuranceNumber</code> string<br />The client's National Insurance Number. This is only mandatory for British clients. It's not required for clients opening a GIA only. In the case of non-GB nationalities, please see [insert link to multiple nationalities]</p>\n<hr />\n<p><code>dateOfBirth</code> string <strong>Required</strong></p>\n<p>The client's birth date in the format YYYY-MM-DD</p>\n<hr />\n<p><code>taxDomicile</code> string <strong>Required</strong><br />The client's current place of residence</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Great Britain = GB</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>amlStatus</code> string <strong>Required</strong><br />Before creating a client record, you must carry out necessary AML/KYC checks. Once the client is deemed eligible, this should be set to <code>Approved</code></p>\n<hr />\n<p><code>termsAccepted</code> boolean <strong>Required</strong></p>\n<p>Whether or not the client has accepted the platform terms and conditions. This should be set to <code>true</code></p>\n<hr />\n<p><code>bankDetails</code> array<br />The client's bank details</p>\n<hr />\n<p><code>bankDetails.sortCode</code> number<br />The client's bank's sort code. This is a six-digit number</p>\n<hr />\n<p><code>bankDetails.debitPaymentMandate</code> boolean <strong>Required</strong></p>\n<p>This should be set to <code>true</code> only after the client has viewed and accepted the direct debit mandate in your application</p>\n<hr />\n<p><code>bankDetails.debitPaymentMandateDate</code> string <strong>Required</strong></p>\n<p>The date the client accepted the direct debit mandate</p>\n<hr />\n","urlObject":{"path":["client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"bcf77e74-f72d-4f67-a035-4ec15602f234","name":"Create a client with mandate accepted","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SECCI\",\n    \"nodeId\": [\n        \"1\"\n    ],\n    \"clientType\": \"Individual\",\n    \"title\": \"Miss\",\n    \"firstName\": \"Wilma\",\n    \"surname\": \"Flinstone\",\n    \"gender\": \"Male\",\n    \"currency\": \"GBP\",\n    \"addressDetail\": {\n        \"buildingNumber\": \"201\",\n        \"address1\": \"Cobblestone Lane\",\n        \"address2\": \"Bedrock\",\n        \"country\": \"GB\",\n        \"postCode\": \"BR1 6RK\"\n    },\n    \"language\": \"en\",\n    \"email\": \"wilma.flinstone@cobblerock.com\",\n    \"nationality\": \"GB\",\n    \"nationalInsuranceNo\": \"PC955833C\",\n    \"dateOfBirth\": \"1982-10-01\",\n    \"taxDomicile\": \"GB\",\n    \"amlStatus\": \"Approved\",\n    \"termsAccepted\": true,\n    \"nationalities\": [\n        {\n            \"code\": \"GB\",\n            \"identifiers\": [\n                {\n                    \"name\": \"National Insurance Number\",\n                    \"value\": \"PC892898C\",\n                    \"available\": true\n                }\n            ]\n        }\n    ],\n    \"bankDetails\": {\n        \"sortCode\": \"993049\",\n        \"accountNumber\": \"99238540\",\n        \"debitPaymentMandate\": true,\n        \"debitPaymentMandateAgreementDate\": \"{{today}}\"\n    }\n}"},"url":"{{apiRoute}}/client"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 08:56:41 GMT"},{"key":"x-amzn-RequestId","value":"249f72c3-e71b-44ce-9e54-1297f846a5e6"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8tHeHKajoEFyog="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"19-vKsZ7bdWAqekLwtHlAIIKWRG8UA\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb5bc9-1a0f0a2743d4b2606b9e1961;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 398a51ec785027c0cfb5003d3a46ab0a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"DI3jR4Mv2cU1-QODVloyfd7Lz_2L98ZudsNiKTkfZiTKKiRQEV7Wgg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02673HF\"\n    }\n}"}],"_postman_id":"0dfb19c4-3b19-489d-9909-a4bd3a23647c"},{"name":"Retrieve client","event":[{"listen":"test","script":{"id":"4c092fc9-55fa-4364-8b7a-4de40b9d5474","exec":["let json = pm.response.json()","pm.environment.set('updateId', json.data.updateId);",""],"type":"text/javascript"}}],"id":"b784c126-e0da-4dc8-a174-8e718ad5e448","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>This returns the client object of the specified <code>clientId.</code></p>\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"55fcc72d-2f56-435a-b92d-c3157cd76ba0","name":"Retrieve client","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/client/SECCI/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1394"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 08:48:43 GMT"},{"key":"x-amzn-RequestId","value":"bf804333-a80e-424f-9acb-080467b080de"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1394"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8r80H9fjoEFlvg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"572-zNZ7LEdc/rDXb2wvcQ09/ZP6XwM\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb59eb-75d704297c1065c2517a9e7e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ad6a59dd9fdc1afb57f7131fcd96bf20.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"V_GtOqziCOPWiHBNfVBbTD-W6jh49CoM8Yd_s3TgoTarAPis2HbAog=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"02673C8\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": [\n            \"1\"\n        ],\n        \"clientType\": \"Individual\",\n        \"title\": \"Mr\",\n        \"firstName\": \"Fred\",\n        \"surname\": \"Flinstone\",\n        \"gender\": \"Male\",\n        \"currency\": \"GBP\",\n        \"addressDetail\": {\n            \"buildingNumber\": \"201\",\n            \"address1\": \"Cobblestone Lane\",\n            \"address2\": \"Bedrock\",\n            \"country\": \"GB\",\n            \"postCode\": \"BR1 6RK\"\n        },\n        \"language\": \"en\",\n        \"email\": \"fred.flinstone@cobblerock.com\",\n        \"nationality\": \"GB\",\n        \"nationalInsuranceNo\": \"PC989833C\",\n        \"dateOfBirth\": \"1982-10-01T00:00:00.000Z\",\n        \"taxDomicile\": \"GB\",\n        \"termsAccepted\": true,\n        \"nationalities\": [\n            {\n                \"code\": \"GB\",\n                \"identifiers\": [\n                    {\n                        \"name\": \"National Insurance Number\",\n                        \"value\": \"PC892898C\",\n                        \"available\": true\n                    }\n                ]\n            }\n        ],\n        \"bankDetails\": {\n            \"sortCode\": \"993049\",\n            \"accountNumber\": \"99238540\"\n        },\n        \"emailVerified\": true,\n        \"mobileVerified\": false,\n        \"smsToken\": \"534464\",\n        \"smsTokenExpiry\": \"2022-08-16T08:57:36.316Z\",\n        \"status\": \"Active\",\n        \"nodeName\": [\n            \"Seccl child firm\"\n        ],\n        \"smsTokenVerified\": false,\n        \"commsStatus\": {\n            \"welcomeSent\": false\n        },\n        \"marketingConsent\": false,\n        \"termsAcceptedDate\": \"2022-08-16T08:47:36.346Z\",\n        \"amlData\": {\n            \"checkDate\": \"2022-08-16T08:47:36.346Z\",\n            \"checkNode\": [\n                \"1\"\n            ],\n            \"amlEvidenceSeen\": false,\n            \"checkResult\": \"BYPASSED\",\n            \"checks\": []\n        },\n        \"recordCreationDate\": \"2022-08-16T08:47:36.346Z\",\n        \"_surname\": \"FLINSTONE\",\n        \"_firstName\": \"FRED\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-08-16T08:47:36.359Z\",\n            \"userFirmId\": \"SCUST\",\n            \"userId\": \"029B3F4\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"62fb59a8883225bc7404a371\",\n        \"updateHistory\": [],\n        \"externalIds\": []\n    }\n}"}],"_postman_id":"b784c126-e0da-4dc8-a174-8e718ad5e448"},{"name":"Update a client to mandate accepted","event":[{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set('currentdate', moment().format((\"YYYY-MM-DD\")));","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"7fabe47b-23f7-43a7-a810-89b6db39b7eb"}},{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"5659966d-9480-48a7-871f-a7b699842513"}}],"id":"7e02ad2f-b454-4e60-8965-56617a781267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"bankDetails\": {\n        \"debitPaymentMandate\": true,\n        \"debitPaymentMandateAgreementDate\": \"{{currentdate}}\"\n    }\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}","description":"<p>This updates an existing client record to indicate that they have accepted the direct debit mandate, and returns a successful array</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier generated when the record was last updated</p>\n<hr />\n<p><code>bankDetails</code> array</p>\n<p>Contains details relating the client's bank</p>\n<hr />\n<p><code>bankDetails.debitPaymentMandate</code> boolean <strong>Required</strong></p>\n<p>This should be set to <code>true</code> only after the client has viewed and accepted the direct debit mandate in your application</p>\n<hr />\n<p><code>bankDetails.debitPaymentMandateDate</code> string <strong>Required</strong></p>\n<p>The date the client accepted the direct debit mandate</p>\n<hr />\n","urlObject":{"path":["client","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"a428493c-4f13-4623-a358-b1388d77d290","name":"Update a client to mandate accepted","originalRequest":{"method":"PATCH","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"bankDetails\": {\n        \"requiresMandate\": true\n    }\n}"},"url":"{{apiRoute}}/client/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 08:42:51 GMT"},{"key":"x-amzn-RequestId","value":"a125c0cc-baeb-4386-9d24-e70a115af7e6"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8rFwFFqjoEFUNQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb588b-3ad92c7637564d4578b646d1;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ad6a59dd9fdc1afb57f7131fcd96bf20.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"ciuylW14sdNs3dAp3UdBzHu8QY-adKdSLNOYebzytH_vcvBcMEqHxQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"7e02ad2f-b454-4e60-8965-56617a781267"},{"name":"Accept Client Direct Debit Mandate","id":"674d3caf-6a88-4a27-828a-976eaf300ca7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendDirectDebitMandate\",\n    \"updateReason\": \"The client has accepted the mandate\",\n    \"updateData\": {\n        \"debitPaymentMandate\": true,\n        \"debitPaymentMandateAgreementDate\": \"2024-02-27T17:54:03.214Z\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId1}}","urlObject":{"path":["client","{{pfolioFirmId}}","{{clientId1}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"674d3caf-6a88-4a27-828a-976eaf300ca7"},{"name":"Cancel Client Direct Debit Mandate","id":"398a2cd8-b4bd-4ad9-9c90-4633a71fa20b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateAction\": \"AmendDirectDebitMandate\",\n    \"updateReason\": \"The client has cancelled the mandate\",\n    \"updateData\": {\n        \"debitPaymentMandate\": false\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId1}}","urlObject":{"path":["client","{{pfolioFirmId}}","{{clientId1}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"398a2cd8-b4bd-4ad9-9c90-4633a71fa20b"}],"id":"ad8ffb39-5e5a-4a91-9ea5-27e25b0cc9a3","description":"<p>The direct debit payment provider should provide a template direct debit mandate that you can build into your application. The investor should review and accept the direct debit mandate as part of the user journey.</p>\n<p>Once this has been done, you can either send the request to create the client record to indicate that the direct debit mandate is accepted, or you can update the existing client record with the same information.</p>\n<p>This triggers the direct debit mandate acceptance document to generate.</p>\n","_postman_id":"ad8ffb39-5e5a-4a91-9ea5-27e25b0cc9a3"},{"name":"Retrieve mandate acceptance confirmation","item":[{"name":"Retrieve mandate confirmation message","event":[{"listen":"test","script":{"exec":["const resp = pm.response.json()","const messages = resp.data","pm.environment.set('ddMandateId', messages[0].payload.id) //access the first message in the array"],"type":"text/javascript","id":"c6c3cd51-ea57-4c78-8267-8a706da8f908"}}],"id":"281423cd-b263-4ceb-907b-98739665a47e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/message/{{firmId}}?messageType=ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION&clientId={{clientId}}","description":"<p>Here you can query the client's messaging hub to find all of their direct debit mandate confirmation messages. These are representations of the messages that clients will see.</p>\n<p>To further retrieve the mandate confirmation as a PDF, you will need the message's <code>payload.id</code></p>\n<h4 id=\"url-parameters\">URL parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The unique identifier for the firm</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The unique identifier for the client</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\">Response data</h4>\n<p>The response data is an array that contains all messages to the client of type <code>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION</code></p>\n","urlObject":{"path":["message","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"messageType","value":"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION"},{"key":"clientId","value":"{{clientId}}"}],"variable":[]}},"response":[{"id":"3a528e3c-53a9-4445-89a2-da4d5b539501","name":"Retrieve mandate confirmation message","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?messageType=ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION&clientId={{clientId}}","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"messageType","value":"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION"},{"key":"clientId","value":"{{clientId}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"611"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 09:07:41 GMT"},{"key":"x-amzn-RequestId","value":"f4c54153-fad2-4493-943a-84f4b941f38c"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"611"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8uupHO-DoEFWqg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"263-0QgaSoWhj0HUlYRQmS9eB7XKPqY\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb5e5d-15c3667a6b7de97e7e3e7653;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 398a51ec785027c0cfb5003d3a46ab0a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"lm6PDL9WJRKNM3J-GBnYHJMiDwndhZvst_u5JUwOQrUDJp9IStSyOQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"62fb5bcae01f3627bed0c4cc\",\n            \"firmId\": \"SECCI\",\n            \"clientId\": \"02673HF\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"16-08-2022-1660640202083\"\n            },\n            \"created\": \"2022-08-16T08:56:42.504Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-08-16T08:56:42.504Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62fb5bcae01f3627bed0c4cb\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 1\n    }\n}"}],"_postman_id":"281423cd-b263-4ceb-907b-98739665a47e"},{"name":"Generate mandate confirmation URL","event":[{"listen":"prerequest","script":{"exec":["var moment = require('moment')","pm.environment.set(\"adultClientAge\", moment().subtract(18, 'year').format('YYYY-MM-DD'))","pm.environment.set(\"adultClientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"adultClientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"44221435-8307-4080-9265-c71b48af6b31"}},{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"b7577e51-3a89-4ecc-a320-9ae7ef4aa87e"}}],"id":"e521b684-a0ff-40c9-b0e0-477e2b3a65b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"clientId\": \"{{clientId}}\",\n    \"id\": \"{{ddMandateId}}\",\n    \"firmId\": \"{{firmId}}\"\n}"},"url":"{{apiRoute}}/files/advancedirectdebitmandateconfirmation","description":"<p>This generates a URL to download a PDF version of a client's direct debit mandate confirmation.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong><br />The unique identifier for the client</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong><br />The unique identifier for the mandate confirmation message. It is the <code>payload.id</code> of the <code>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION</code> message, as found in the \"Retrieve mandate confirmation message\" request.</p>\n<hr />\n<h4 id=\"response-data\">Response data</h4>\n<p><code>id</code> string<br />The unique identifier for the mandate confirmation message</p>\n<hr />\n<p><code>url</code> string<br />A URL to download a PDF file</p>\n","urlObject":{"path":["files","advancedirectdebitmandateconfirmation"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"441b72d8-b010-4904-a767-0f3a901418fa","name":"Generate mandate confirmation URL","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"clientId\": \"02673HF\",\n    \"id\": \"16-08-2022-1660640202083\",\n    \"firmId\": \"SECCI\"\n}"},"url":"{{apiRoute}}/files/advancedirectdebitmandateconfirmation"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1417"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 16 Aug 2022 09:05:32 GMT"},{"key":"x-amzn-RequestId","value":"71beed88-d10a-408a-b290-ee3de69afe05"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1417"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W8uadHbxjoEF7iA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"589-ytmjuRDgwR80F5Ns62AeMwJt+0M\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fb5ddc-6af5bbc526a11d393bb8ee54;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 398a51ec785027c0cfb5003d3a46ab0a.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"ig4xGJ3xgQooFKmrCWCger9Kr8CMjl6xqkSP76GC1piFF6HY6u7jgw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"16-08-2022-1660640202083\",\n        \"url\": \"https://staging-firm-private-assets-seccl.s3.eu-west-1.amazonaws.com/SECCI/ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION/02673HF/16-08-2022-1660640202083.pdf?AWSAccessKeyId=ExampleKey&Expires=1660640792&Signature=ExampleSignature&X-Amzn-Trace-Id=ExampleTraceId&x-amz-security-token=ExampleToken\"\n    }\n}"}],"_postman_id":"e521b684-a0ff-40c9-b0e0-477e2b3a65b5"}],"id":"593981b1-8e9f-4eab-9e97-3e85d477b489","description":"<p>This will show you how to retrieve a client's mandate acceptance confirmation.</p>\n","_postman_id":"593981b1-8e9f-4eab-9e97-3e85d477b489"},{"name":"Instruct single direct debit","item":[{"name":"Create single direct debit instruction","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"ddTransactionGroupId\", data.data.id)"],"type":"text/javascript","id":"75fb7389-42a8-426f-8cef-d72d76285136"}}],"id":"d76a9630-c89e-4c6c-9735-d5c307b2b54f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This flow creates a deposit by direct debit expectation.</p>\n<p>The response returns a <code>linkId</code> which can be queried to retrieve all the transactions in the group.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactionType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Payment</code></p>\n<hr />\n<p><code>transactionSubType</code> enum value <strong>Required</strong></p>\n<p>This will be <code>Deposit</code>. If the contribution is to a Pension wrapper, it will be <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected. Choose from:</p>\n<ul>\n<li><code>Direct Debit</code> for Seccl provided Direct Debits</li>\n<li><code>GoCardless</code> for firms running their own instace of GoCardless off the Seccl platform</li>\n<li><code>Seccl GoCardless</code> for firms using Seccl's own integration of GoCardless</li>\n</ul>\n<p>Please contact us if you are unsure which <code>method</code> to use.</p>\n<hr />\n<p><code>movementType</code> enum value <strong>Required</strong></p>\n<p>This indicates the movement of the cash or assets. This should be set to <code>In</code></p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the <code>model</code> allocation</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"df88a02b-f96d-4dab-bd3e-84371abac499","name":"Single direct debit keep as cash","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 15 Aug 2022 10:00:20 GMT"},{"key":"x-amzn-RequestId","value":"1f64f1be-4ce0-4bf8-bd91-1fee73b0155a"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W5jgMG18DoEF8zg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-3mO5UrKD4gEJs5PuQGXw45ehS8s\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fa1934-044e2a43236246a66585cc65;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 90927d233f1a615dc244e8b198aa1f04.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"ktzryMqEOiBLQoNZctx4fSmdPfm6sSQE85zrUnd3XHQpzbxcYDnhEA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"},{"id":"f51897d2-0f4d-40a3-a2d1-cf9dde920846","name":"Single direct debit invest to model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\", \n            \"investToModel\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5794cacf-3fbc-4dc4-b945-4ba3a0cac362","name":"Single direct debit invest to recurring orders allocation","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\",\n            \"autoInvest\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a3eeb81c-9f13-4cae-9dfd-93bc0e586149","name":"Single direct debit invest to multiple assets","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 0.48,\n            \"currency\": \"GBP\",\n            \"assetId\": \"279M6\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 0.5,\n            \"currency\": \"GBP\",\n            \"assetId\": \"275NR\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"457a44d2-2681-42cc-b62e-72d4b19b8de7","name":"Single direct debit invest to asset","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"Direct Debit\"\n        }, \n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"percentage\": 1,\n            \"currency\": \"GBP\",\n            \"assetId\": \"279M6\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"d76a9630-c89e-4c6c-9735-d5c307b2b54f"},{"name":"Retrieve transaction group","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"dbb8d41a-3b41-4c4d-9884-d172cf90392b"}}],"id":"9534421d-43c3-47f6-b0ec-6a22df21fe50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{ddTransactionGroupId}}","description":"<p>This request retrieves transactions that are part of the transaction group identified by <code>linkId</code></p>\n<h4 id=\"url-parameters\"><strong>URL parameters</strong></h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Data type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>String</td>\n<td>The firm Id we have created for you</td>\n</tr>\n<tr>\n<td><code>linkId</code></td>\n<td>String</td>\n<td>The transaction group Id that was returned by the POST call to instruct the transactions</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\"><strong>Response data</strong></h4>\n<p>This returns an array of transaction objects in the given group <code>linkId</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{ddTransactionGroupId}}"}],"variable":[]}},"response":[],"_postman_id":"9534421d-43c3-47f6-b0ec-6a22df21fe50"}],"id":"26f983dc-b059-47a0-bbb8-e2815786a8ee","description":"<p>This will show you how to instruct a single direct debit from a client's bank account.</p>\n<p>The client must have accepted the direct debit mandate before any payment instructions are submitted. Otherwise, the system will fail to create the expectation and will raise an <code>Exception</code> with <code>fieldErrors.errorMessage: \"Direct debit mandate must be accepted before payments can be made\"</code> .</p>\n","_postman_id":"26f983dc-b059-47a0-bbb8-e2815786a8ee"},{"name":"Instruct recurring direct debit","item":[{"name":"Create account with a recurring direct debit","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"paymentId\", data.data.id)"],"type":"text/javascript","id":"2796b5a6-2d36-41d4-95f0-a7d79f06cbde"}}],"id":"353eac4c-b63e-4362-bf66-2ea484df5b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 25,\n            \"amount\": 150,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account","description":"<p>This flow will allow you to create an investment account with a recurring payment.</p>\n<p>The client will need to accept the direct debit mandate before the first payment is taken.</p>\n<p>A single investment account can have multiple recurring payments within the <code>recurringPayment</code> array.</p>\n<p>This returns the unique identifier of the created investment account.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong></p>\n<p>The node identifier that the client is attached</p>\n<hr />\n<p><code>accountType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string <strong>Required</strong></p>\n<p>The name of the account. This is an editable free text field</p>\n<hr />\n<p><code>status</code> enum value <strong>Required</strong></p>\n<p>The status of the account - this should be set as <code>Active</code>. It indicates that the investor has viewed and accepted the product terms and declaration</p>\n<hr />\n<p><code>adviserCharge</code> float</p>\n<p>The ongoing adviser charge taken against the account as a percentage</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The ongoing discretionary management charge taken against the account as a percentage</p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>The three letter ISO currency code.</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique client identifier.</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong></p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum value <strong>Required</strong></p>\n<p>The type of wrapper of the investment account.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>This indicates that the investment strategy is managed on a discretionary basis</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>This indicates that the investment account is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> string</p>\n<p>This is the model identifier that is attached to the account</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>In</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be contributed on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the expectation is generated. This can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected. Choose from:</p>\n<ul>\n<li><code>Direct Debit</code> for Seccl provided Direct Debits</li>\n<li><code>GoCardless</code> for firms running their own instace of GoCardless off the Seccl platform</li>\n<li><code>Seccl GoCardless</code> for firms using Seccl's own integration of GoCardless</li>\n</ul>\n<p>Please contact us if you are unsure which <code>method</code> to use.</p>\n<hr />\n<p><code>recurringPayment.paymentType?</code> enum value</p>\n<p>This is relevant for pension contributions only and will be either <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>recurringPayment.autoInvest?</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the model linked to the account</p>\n","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"5ea84e98-2742-4f32-9335-2b46058b7128","name":"Recurring payment invest to recurring orders","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"autoInvest\": true\n        }\n    ],\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"5c6e9b50-dbf4-401f-b25a-7bb84c072088","name":"Recurring payment invest to recurring orders Copy","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\",\n        \"discretionary\": true,\n        \"assetAllocation\": \"{{assetAllocationId}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"investToModel\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"93090b47-4af3-4d03-adcc-574145eb8d65","name":"Recurring employer payment invest to model","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountType\": \"Wrapper\",\n    \"name\": \"{{accountName}}\",\n    \"clientId\": \"{{clientId}}\",\n    \"currency\": \"GBP\",\n    \"status\": \"Active\",\n    \"nodeId\": \"0\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"{{wrapperType}}\",\n        \"discretionary\": true,\n        \"assetAllocation\": \"{{assetAllocationId}}\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"autoInvest\": true,\n            \"paymentType\": \"Employer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"353eac4c-b63e-4362-bf66-2ea484df5b6b"},{"name":"Update account with recurring direct debit","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"paymentId\", data.data.id)"],"type":"text/javascript","id":"738301f4-609f-442f-815a-94ae62d81c24"}}],"id":"0a8dbe41-dae9-4870-af3b-d6a0107f29a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 25,\n            \"amount\": 150,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>This will let you add a direct debit recurring payment instruction to an existing investment account.</p>\n<h3 id=\"parameters\">Parameters</h3>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The most recent <code>updateId</code> as found when retrieving a client account record - this makes sure you are making updates based on the most recent version of the account record</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>In</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be contributed on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the expectation is generated. This can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The way the payment will be collected. Choose from:</p>\n<ul>\n<li><code>Direct Debit</code> for Seccl provided Direct Debits</li>\n<li><code>GoCardless</code> for firms running their own instace of GoCardless off the Seccl platform</li>\n<li><code>Seccl GoCardless</code> for firms using Seccl's own integration of GoCardless</li>\n</ul>\n<p>Please contact us if you are unsure which <code>method</code> to use.</p>\n<hr />\n<p><code>recurringPayment.paymentType?</code> enum value</p>\n<p>This is relevant for pension contributions only and will be either <code>Employer</code> or <code>Employee</code></p>\n<hr />\n<p><code>recurringPayment.autoInvest</code> boolean</p>\n<p>This indicates if the payment should be auto-invested to the <code>recurringOrders</code> allocation or the <code>model</code> allocation</p>\n<hr />\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"5635d55e-8efa-4d5d-a909-c00f879ec30a","name":"Recurring payment invest to existing recurring orders","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"investToModel\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"27a9c915-dafc-492d-805c-4b996a4feb06","name":"Recurring payment invest to new recurring orders","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"updateId\",\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"autoInvest\": true\n        }\n    ],\n    \"recurringOrders\": {\n        \"movementType\": \"Invest\",\n        \"investmentType\": \"Bespoke\",\n        \"details\": [\n            {\n                \"assetId\": \"27426\",\n                \"percentage\": 0.4\n            },\n            {\n                \"assetId\": \"284JP\",\n                \"percentage\": 0.6\n            }\n        ],\n        \"orderDay\": 1\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"4445ceb6-fe04-4c9e-9fac-e8dd40ca8f72","name":"Recurring employer payment invest to model","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"updateId\", \n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 70,\n            \"movementType\": \"In\",\n            \"method\": \"Direct Debit\",\n            \"autoInvest\": true, \n            \"paymentType\": \"Employer\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0a8dbe41-dae9-4870-af3b-d6a0107f29a7"}],"id":"8193bcdc-6f86-4ec5-b7bf-fcc6bad02c9c","description":"<p>Here, we will show you how to instruct a recurring direct debit from your client's bank account.</p>\n","_postman_id":"8193bcdc-6f86-4ec5-b7bf-fcc6bad02c9c"}],"id":"d9781944-8570-4651-a68d-a240220f91d8","description":"<p>A <a href=\"https://desktop.postman.com/?desktopVersion=9.27.0&amp;userId=10007743&amp;teamId=604381\">direct debit</a> is an automated payment method that allows merchants to collect payments directly from a customer's bank account. To facilitate direct debits on your platform, you will need to integrate with a third-party direct debit provider.</p>\n<p>There are two key parts to facilitating direct debits: setting up mandates with your customers' bank accounts, and collecting payments against your mandates.</p>\n<p>A direct debit instruction or direct debit mandate is an authorisation from your customer for you to collect future payments. The details of each authorisation are standardised:</p>\n<ol>\n<li>All future payments are authorised so you can collect any amount at any time from your customer</li>\n<li>Your customer must be notified of each payment before it is collected</li>\n<li>All payments are covered by the Direct Debit Guarantee, which protects customers from payments taken in error</li>\n</ol>\n<p>You can retrieve direct debit mandate acceptance confirmations and direct debit advance notices from the our API.</p>\n<p>To authorise a direct debit mandate, you can follow this flow:</p>\n<ul>\n<li>Investor indicates that they wish to contribute via direct debit</li>\n<li>Investor views and accepts the direct debit mandate shown in your application</li>\n<li>Investor receives a direct debit mandate confirmation document</li>\n</ul>\n<p>To instruct a direct debit payment, you can follow this flow:</p>\n<ul>\n<li>Investor confirms the amount and the payment date if it's a recurring payment</li>\n<li>Investor receives a direct debit advance notice document</li>\n<li>The payment is automatically collected and allocated to the investor's investment account</li>\n</ul>\n","_postman_id":"d9781944-8570-4651-a68d-a240220f91d8"},{"name":"Bulk payments","item":[{"name":"Create child expectations","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.envrionment.set(\"childExpectationGroupId\", data.data.id)"],"type":"text/javascript","id":"58f0f65c-50c0-48ca-8808-49deccda232c"}}],"id":"522f7b10-27ed-4d34-b486-e1af2de3f21a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 2500,\n            \"method\": \"Bulk Bank Transfer\",\n            \"providerRef\": \"AB00001234\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This flow creates one or many child expectations for a Bulk Bank Transfer.</p>\n<p>To make the most out of Bulk Bank Transfers, you should create many child expectations in this API call.</p>\n<p>It returns a <code>linkId,</code>which is required to retrieve the transactions within the group.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction – this should be set to the <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The sub-type of the transaction - this should be set to <code>Deposit</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>The movement of the assets and/or cash – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>The method of how the money is moved - this should be set to <code>Bulk Bank Transfer</code></p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c1e5874b-9bdf-4dc7-96c9-b36cc65d902a","name":"Create a child expectation with auto-invest","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"Bulk Bank Transfer\", \n            \"providerRef\": \"TX9827913827XT\",\n            \"autoInvest\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 15 Aug 2022 11:27:14 GMT"},{"key":"x-amzn-RequestId","value":"6bcb568b-1ede-4b71-8c75-29ee865c353b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"W5wOzGbMjoEFjMA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-HTuhl+LD49O7BzGdhovMHD0q6WY\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fa2d91-346559a97ab6a3f8465e1f31;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 17d60a367e7e38c01f5a3242a9a3e784.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-P3"},{"key":"X-Amz-Cf-Id","value":"DuSVu1AYHhfAZe8lQYDdZGuBmrBICSMq60zlPU3ee3p74xw1W7Xciw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FK2G\"\n    }\n}"},{"id":"f926ef9a-e0fe-498a-82d0-1616c547445b","name":"Create a child expectation without auto-invest","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n\t\"transactions\": [\n\t\t{\n\t\t    \"firmId\": \"{{firmId}}\",\n\t\t    \"transactionType\": \"Payment\",\n\t\t    \"transactionSubType\": \"Deposit\",\n\t\t    \"movementType\": \"In\",\n\t\t    \"accountId\": \"{{accountId}}\",\n\t\t    \"currency\": \"GBP\",\n\t\t    \"amount\": 2500,\n\t\t    \"method\": \"Bulk Bank Transfer\",\n            \"providerRef\" : \"ABC123\"\n\t\t}\n\t]\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FK2G\"\n    }\n}"}],"_postman_id":"522f7b10-27ed-4d34-b486-e1af2de3f21a"}],"id":"f7f50359-5888-479a-8f5f-38cad09f6f0e","description":"<p>Bulk payments describe the process of funding many client investment accounts by sending one aggregated payment amount to Seccl. The flow works as follows:</p>\n<ol>\n<li>The platform creates individual child expectations against each investment account, including a unique <code>providerRef</code></li>\n<li>A bulk payment is transferred to Seccl's client money bank account<ol>\n<li>The <code>providerRef</code> of the child expectations matches the payment reference of the bulk payment</li>\n<li>The sum of the child expectations corresponds to the bulk payment amount</li>\n</ol>\n</li>\n<li>Seccl allocates the bulk payment against the child expectations</li>\n</ol>\n<p>This payment method can be applied to any of the following scenarios:</p>\n<ul>\n<li>Client money: If your firm has client money permissions, you can collect payments directly from end investors and send a single bulk payment to Seccl to allocate</li>\n<li>Third-party payment providers: This could be an e-money wallet provider or a debit card provider. The payment provider collects the money from the end investor and sends a single bulk payment to Seccl to allocate</li>\n<li>Incentive or redress payments: This could apply to an incentive initiative run by the platform, or a goodwill or redress payment funded by the platform. The platform sends a single bulk payment to Seccl to allocate</li>\n<li>Tax rebates from HMRC</li>\n</ul>\n","_postman_id":"f7f50359-5888-479a-8f5f-38cad09f6f0e"},{"name":"Validation on paymentMethods","item":[{"name":"validate paymentMethods","event":[{"listen":"test","script":{"id":"a2d2631f-24b0-4658-a957-b469188421a8","exec":["var data = pm.response.json()","console.log(data)"],"type":"text/javascript"}}],"id":"cdf1265a-65e8-49e2-909c-fe5ebff003ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"0355D6J\",\n    \"paymentMethods\": [\"Bank Transfer\", \"Direct Debit\"]\n}"},"url":"{{apiRoute}}/account/validatePaymentMethod","description":"<p>This endpoint will validate payment methods on an account.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong><br />The unique identifier for the account</p>\n<hr />\n<p><code>paymentMethods</code> array of enum value <strong>Required</strong><br />The type of payment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum values</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Bank Transfer  <br />Direct Debit</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"responses\">Responses</h4>\n<hr />\n<h5 id=\"success\">Success</h5>\n<p>This is a successful request where the payment type is available for the account.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"data\": {}\n}\n\n</code></pre>\n<h5 id=\"invalid-payment-method-for-account-responses\">Invalid payment method for account responses</h5>\n<p>Listed below are the current error messages, you may receive 1 or many errors relating to the request.</p>\n<p>This response is for an account which does not support the Direct Debit payment type.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"paymentMethods\",\n                \"errorMessage\": \"This account type does not support Direct Debits\",\n                \"type\": \"validAccountPaymentMethods\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n<p>This response is for an account where the client does not have a valid Direct Debit mandate.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"paymentMethods\",\n                \"errorMessage\": \"There is no valid Direct Debit mandate in place\",\n                \"type\": \"validAccountDirectDebitMandate\"\n            }\n        ]\n    }\n}\n\n</code></pre>\n","urlObject":{"path":["account","validatePaymentMethod"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f08f0727-0bed-45b1-8d2f-449ef517c091","name":"validate paymentMethods - success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"0355D6J\",\n    \"paymentMethods\": [\"Bank Transfer\", \"Direct Debit\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/validatePaymentMethod"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 01 Dec 2023 11:33:49 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"36dd1d14-ec73-4bfa-b95b-8bf9f0c3f792"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"PQuooEVbjoEEukw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6569c49d-3b9844de4838cb04736b6a41;Sampled=0;lineage=80d77620:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"f24a36e8-77ab-430d-88af-fcaf0216dff2","name":"validate paymentMethods - account does not support direct debits and no valid mandate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"0355D6G\",\n    \"paymentMethods\": [\"Bank Transfer\", \"Direct Debit\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/validatePaymentMethod"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 01 Dec 2023 11:20:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"393"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"e8877aa9-ec02-46c2-a68e-566c7d7fd05c"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"393"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"PQsoPE0HjoEEF2g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"189-BREwF90Fg8yYqSuDJobbT+9P+yg\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6569c167-5a1f62571e0f80901ac1cbe2;Sampled=0;lineage=80d77620:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"The request has failed validation\",\n        \"statusCode\": 400,\n        \"fieldErrors\": [\n            {\n                \"fieldName\": \"paymentMethods\",\n                \"errorMessage\": \"This account type does not support Direct Debits\",\n                \"type\": \"validAccountPaymentMethods\"\n            },\n            {\n                \"fieldName\": \"paymentMethods\",\n                \"errorMessage\": \"There is no valid Direct Debit mandate in place\",\n                \"type\": \"validAccountDirectDebitMandate\"\n            }\n        ]\n    }\n}"}],"_postman_id":"cdf1265a-65e8-49e2-909c-fe5ebff003ac"}],"id":"77d5eaea-0534-4a8d-a397-9bfa90cab3e8","description":"<p>This section allows you to validate payment methods on account.</p>\n<p>Check the enum values for valid payment method types which are supported for these requests.</p>\n","_postman_id":"77d5eaea-0534-4a8d-a397-9bfa90cab3e8"},{"name":"Delete deposit expectation","item":[{"name":"Request Deletion","event":[{"listen":"test","script":{"id":"f0b9d133-5e46-4b2d-9a4c-20c40e46459f","exec":["const response = pm.response.json()"],"type":"text/javascript","packages":{}}}],"id":"af421658-43c5-4109-9fe2-544afb031918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"transactionAction\": \"Request Deletion\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/requestdeletion/{{firmId}}/{{transactionId}}","urlObject":{"path":["portfoliotransaction","action","requestdeletion","{{firmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"a224ca47-28ed-4fa9-a39c-71555a779682","name":"Request Deletion","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"transactionAction\": \"Request Deletion\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/requestdeletion/{{firmId}}/{{transactionId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 09 Dec 2024 15:59:06 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-675713ca-024ac85b7c2b5557267196ca"},{"key":"x-amzn-RequestId","value":"dac33c7d-49bf-48bb-85c4-4e8e79198551"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"CiAHwHoxjoEEuJg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2d6a842ce062743cb59760fe19c49a42.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P3"},{"key":"X-Amz-Cf-Id","value":"FUZ2ILFs58F1OPu-K2r684jfMNeMKjaJ0ka_l0KcItGiHoNbiL7RMA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"af421658-43c5-4109-9fe2-544afb031918"},{"name":"Retrieve portfolio transaction object(s)","id":"de8db95f-4064-4e66-be13-182b4cbf0469","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}","description":"<p>This endpoint lets you query a wide range of fields to retrieve portfolio transaction objects.</p>\n<hr />\n<p><strong>Get a single transaction</strong></p>\n<p>If you just want a single transaction object, and you know the <code>id</code>, you can use this endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}</code></p>\n<hr />\n<p><strong>Use parameters to get many transactions</strong></p>\n<p>If you don't know the <code>id</code>, or you want to get many transactions, you can use query parameters on this endpoint to narrow down your search.</p>\n<p><code>{{apiRoute}}/portfoliotransaction/{{firmId}}/?{{queryParamName}}={{queryParamValue}}</code></p>\n<p>You can most of the transaction object attributes, separated by \"&amp;\" if using multiple parameters, as parameters in the endpoint call.</p>\n<p>For example, if I wanted to see all Payment Deposit transactions on a client's account, I could use the following endpoint:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?accountId=00BXGDHX&amp;transactionType=Payment&amp;transactionSubType=Deposit</code></p>\n<p>Or, if I want to get all Pending Payment Deposit expectations:</p>\n<p><code>GET {{apiRoute}}/portfoliotransaction/{{firmId}}/?transactionType=Payment&amp;transactionSubType=Deposit&amp;status=Pending</code></p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"48b0b65b-e538-4899-bf32-8c884a9a74ab","name":"Retrieve portfolio transaction deleted example","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/{{transactionId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1028"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 09 Dec 2024 17:57:51 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67572f9f-080c353176e6e22f63a8f889;Parent=6bcab318e76d5048;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"33e3a358-c7e7-44c8-9e87-6eab2f43f93b"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1028"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"CiRg_ETJjoEEsiQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"404-PNs2kjIiYG0spoZ0CwlWhycq8PM\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 507b5edb20d0e1a0b73c8687f53defa8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"FRA6-C1"},{"key":"X-Amz-Cf-Id","value":"QhIUN96Qa48ZtMgXfzPaQm9Hmb8-bmwldRwhzgDbUzeVaBbpxq9Y3g=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000JQG2S\",\n        \"transactionType\": \"Payment\",\n        \"transactionSubType\": \"Deposit\",\n        \"movementType\": \"In\",\n        \"transactionDate\": \"2024-12-09T00:00:00.000Z\",\n        \"accountId\": \"031CB1C\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"amount\": 1000,\n        \"currency\": \"GBP\",\n        \"method\": \"Bank Transfer\",\n        \"accountName\": \"GIA test\",\n        \"accountType\": \"Wrapper\",\n        \"status\": \"Deleted\",\n        \"linkId\": \"0000JQG2Q\",\n        \"statusChanges\": [\n            {\n                \"status\": \"Pending\",\n                \"statusDate\": \"2024-12-09T16:12:16.140Z\",\n                \"description\": \"Payment request created\"\n            },\n            {\n                \"statusDate\": \"2024-12-09T16:13:54.516Z\",\n                \"status\": \"Deleted\",\n                \"description\": \"Deletion requested by firm\"\n            }\n        ],\n        \"checkingResults\": [\n            {\n                \"rule\": \"Check transaction\",\n                \"passed\": true\n            }\n        ],\n        \"createdDate\": \"2024-12-09T16:12:16.180Z\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-12-09T16:13:54.520Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 3,\n            \"application\": \"PortfolioProcessor\"\n        },\n        \"updateId\": \"67571742e3c0f71fc06891a3\",\n        \"deletionRequest\": {\n            \"requestedOn\": \"2024-12-09T16:13:46.233Z\",\n            \"requestedBy\": {\n                \"userId\": \"029B3HD\",\n                \"userFirmId\": \"SECCL\",\n                \"userType\": \"Machine\",\n                \"userName\": \"Integration\"\n            }\n        }\n    }\n}"}],"_postman_id":"de8db95f-4064-4e66-be13-182b4cbf0469"}],"id":"610d992a-51f8-45e2-9ab5-88bad74f3810","description":"<p>The delete payment deposit expectation API request can be used to delete a payment expectation. It is only possible to delete payment expectations which are at status <code>Pending</code> and for the payment methods of <code>Bank Transfer</code> and <code>Truelayer</code></p>\n<p>The key use cases for this API request are:</p>\n<ul>\n<li><p>The amount the client wishes to contribute to their account has changed</p>\n</li>\n<li><p>The client will no longer be proceding with the deposit</p>\n</li>\n<li><p>A mistake was made when creating the expectation</p>\n</li>\n<li><p>Cleaner view of transactions on the account by deleting unused expectations</p>\n</li>\n<li><p>A historic expectation is preventing a client from contributing within their permitted subscription allowance, such as for an ISA or JISA contribution</p>\n</li>\n</ul>\n<p>This deletion will also delete any orders linked to the pending payment expectation.</p>\n<p>Firms receive feedback about the status of their request either via Transactions Webhook (success on deleting) or via Exceptions Webhook (not successfully deleted).</p>\n","_postman_id":"610d992a-51f8-45e2-9ab5-88bad74f3810"}],"id":"7f941b12-2a0d-4fad-b9df-9b74cd0960db","description":"<p>Payment methods are ways for investors to deposit money to their investment accounts. You can create single and regular payments.</p>\n<p>Payment instructions can be created as part of a <code>portfoliotransactiongroup</code> with any other <code>transactionType</code>, such as a fee or order. It can also include things like <code>autoInvest</code> or <code>investToModel</code> flags, which invests the money according to the account's asset allocation.</p>\n<p>You can process the following payment methods via this API. These might need integrations with third-party payment providers.</p>\n<ul>\n<li><strong>Bank Transfer:</strong> An end investor sends the money directly to our client money bank account and we allocate to the investment account</li>\n<li><strong>Bulk Bank Transfer:</strong> A single bulk payment is sent directly to our client money bank account that we allocate to multiple investment accounts</li>\n<li><strong>Debit card:</strong> A debit card provider collects the money from investors and sends a bulk payment to our client money bank account for us to allocate</li>\n<li><strong>Open banking:</strong> An automated payment is made to our client money bank account, initiated by the investor via their mobile banking app or online banking portal</li>\n<li><strong>Direct debit:</strong> An investor instructs their bank to authorise a direct debit provider to collect payments from their account and send a bulk payment to our client money bank account for us to allocate</li>\n</ul>\n<p>We'll show you how to set up each of these payment methods in this section.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/portfoliotransactiongroup\n/portfoliotransaction\n/account\n\n</code></pre>","_postman_id":"7f941b12-2a0d-4fad-b9df-9b74cd0960db"},{"name":"Balances and valuations","item":[{"name":"Portfolio","item":[{"name":"Retrieve the portfolio summary","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"b4e87caf-d9bc-462f-a773-f26053b2ad68"}}],"id":"53aaf74f-1f1d-434c-8f1f-ce3acbbc3247","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}","description":"<p>This command returns a summary of the positions and investment accounts within the portfolio, as well as information on the portfolio as a whole.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>firstName</code> string</p>\n<p>The first name of the client</p>\n<hr />\n<p><code>surname</code> string</p>\n<p>The surname of the client</p>\n<hr />\n<p><code>language</code> enum value</p>\n<p>The language set at the client record</p>\n<hr />\n<p><code>currency</code> enum value</p>\n<p>The three-letter ISO (International Organisation for Standardisation) currency code</p>\n<hr />\n<p><code>nodeId</code> array</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the node that the client record is attached</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the client record</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted platform terms and passed KYC (Know Your Customer checks)</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client record has been created, but they haven't accepted terms, set up a password or passed KYC checks</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>A skeletal client record is created from an illustration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN (International Securities Identification Number) of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The number of units in the holding</p>\n<hr />\n<p><code>positions.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>positions.transferBookValue</code> float</p>\n<p>The number of units multiplied by the price on the day the transfer settled. This will be the same as the <code>positions.bookValue</code> if there's been no in-specie transfer</p>\n<hr />\n<p><code>positions.nonTransferBookValue</code> float</p>\n<p>The book cost since the transfer settled</p>\n<hr />\n<p><code>positions.openingValue</code> float</p>\n<p>The value of the position at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the position was first held, this will show as zero.</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The value of the position as at close of business on the toDate parameter provided. If no toDate parameter is provided then today’s date will be used.</p>\n<hr />\n<p><code>positions.growth</code> float</p>\n<p>The growth amount taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>positions.adjustedGrowth</code> float</p>\n<p>The growth amount achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>positions.growthPercent</code> float</p>\n<p>The percentage growth taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>positions.adjustedGrowthPercent</code> float</p>\n<p>The percentage growth achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.allocation</code> float</p>\n<p>The percentage allocation of the holding within the investment account</p>\n<hr />\n<p><code>accounts</code> array</p>\n<p>Contains details on the individual investment accounts of the client portfolio</p>\n<hr />\n<p><code>accounts.id</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accounts.clientId</code> string</p>\n<p>The ID of a single client linked to this account</p>\n<hr />\n<p><code>accounts.clients</code> array</p>\n<p>Any linked joint account holders linked to this account</p>\n<hr />\n<p><code>accounts.clients.id</code> string</p>\n<p>The unique identifier of this client</p>\n<hr />\n<p><code>accounts.clients.isLeadClient</code> boolean</p>\n<p>Denotes which of the joint GIA account holders is the lead client. </p>\n<hr />\n<p><code>accounts.name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>accounts.accountType</code> string</p>\n<p>The type of account</p>\n<hr />\n<p><code>accounts.currency</code> string</p>\n<p>The three-letter ISO code of the investment account</p>\n<hr />\n<p><code>accounts.wrapperType</code> string</p>\n<p>The wrapper type of the investment account</p>\n<hr />\n<p><code>accounts.nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>accounts.status</code> enum value</p>\n<p>The status of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.recurringPayment</code> array</p>\n<p>Contains details of recurring payments created against the investment account</p>\n<hr />\n<p><code>accounts.wrapperDetail</code> array</p>\n<p>Contains details of the investment account wrapper type</p>\n<hr />\n<p><code>accounts.wrapperDetail.wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accounts.wrapperDetail.discretionary</code> boolean</p>\n<p>Indicate whether the investment strategy of the account is discretionary managed (buy and sell decisions made by an investment manager)</p>\n<hr />\n<p><code>accounts.wrapperDetail.advised</code> boolean</p>\n<p>Indicates whether the management of the investment account is advised</p>\n<hr />\n<p><code>accounts.wrapperDetail.trust</code> boolean</p>\n<p>Indicates whether the management of the investment account is by a trust</p>\n<hr />\n<p><code>accounts.wrapperDetail.clientProductId</code> string</p>\n<p>The unique identifier of the client product that relates to the tax wrapper</p>\n<hr />\n<p><code>accounts.currentValue</code> float</p>\n<p>The value of the account as at close of business on the toDate parameter provided. If no toDate parameter is provided then today’s date will be used.</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The value of the account at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>accounts.openingStockValue</code> float</p>\n<p>The value of the total stock holdings in the account as at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>accounts.openingCashValue</code> float</p>\n<p>The value of the total cash in the account as at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>accounts.bookValue</code> float</p>\n<p>The total book value of holdings in the account</p>\n<hr />\n<p><code>accounts.transferBookValue</code> float</p>\n<p>The total transfer book value for holdings in the account. This will show the same as the book value if no in-specie transfers have taken place</p>\n<hr />\n<p><code>accounts.growth</code> float</p>\n<p>The growth amount taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>accounts.adjustedGrowth</code></p>\n<p>The growth amount only achieved on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>accounts.closingCashValue</code> float</p>\n<p>The value of cash in the account as at close of business on the toDate parameter provided. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>accounts.closingStockValue</code> float</p>\n<p>The value of stock holdings in the account as at close of business on the toDate parameter provided. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>accounts.growthPercent</code> float</p>\n<p>The percentage growth taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>accounts.adjustedGrowthPercent</code> float</p>\n<p>The percentage growth achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>accounts.transferValue</code> float</p>\n<p>The total transfer value of holdings in the account</p>\n<hr />\n<p><code>accounts.allocation</code> float</p>\n<p>The allocation of the investment account within the whole client portfolio</p>\n<hr />\n<p><code>accounts.openingValue</code> float</p>\n<p>The value of the account at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The sum of the <code>positions.bookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>nonTransferBookValue</code> float</p>\n<p>The sum of the <code>positions.nonTransferBookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The value of the portfolio at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The value of the portfolio as at close of business on the toDate parameter provided. If no toDate parameter is provided then today’s date will be used.</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash across all acounts in this portfolio. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>closingCashValue</code> float</p>\n<p>The amount of cash in the portfolio</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The growth amount achieved taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>adjustedGrowth</code> float</p>\n<p>The growth amount only achieved on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>growthPercent</code> float</p>\n<p>The percentage growth taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>adjustedGrowthPercent</code> float</p>\n<p>The percentage growth achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The sum of the <code>transferValue</code> within the <code>positions</code> array</p>\n<hr />\n<p><code>products</code> array</p>\n<p>Contains details of tax wrappers held within the client portfolio</p>\n<hr />\n<p><code>products.wrapperType</code> enum value</p>\n<p>The relevant tax wrapper</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>JISA</td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td>ISA</td>\n<td>Individual Savings Account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>products.remainingSubscriptionAmount</code> float</p>\n<p>The remaining subscription amount of the client – this is done at the portfolio level, not the individual sub-account level</p>\n<hr />\n<p><code>realisedProfitLoss</code> float</p>\n<p>The sum of the difference between the value of assets at the time of disposal and their book cost for all disposals in the date range selected</p>\n<hr />\n<p><code>realisedProfitLoss</code>float</p>\n<p>The sum of the difference between the value of assets at the time of disposal and their book cost for all disposals in the date range selected</p>\n<hr />\n<p><code>unrealisedProfitLoss</code> float</p>\n<p>The being the difference between the value of assets that are still held in a portfolio as of the end date of the date range and their book costs.</p>\n<hr />\n<p><code>closingGiaStockValue</code> float</p>\n<p>The value of <strong>GIA</strong> stock holdings in the <strong>portfolio</strong> as at close of business on the toDate parameter provided. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>disclaimers</code> array</p>\n<p>Array of disclaimers that signal errors or warnings about data inaccuracies or features we do not support</p>\n<hr />\n<p><code>disclaimers.type</code> string</p>\n<p>Type of disclaimer. This constant can be used for mapping purposes</p>\n<hr />\n<p><code>disclaimers.text</code> string</p>\n<p>Text shown when the disclaimer is present</p>\n<hr />\n<p><code>disclaimers.fields</code> array</p>\n<p>Array containing fields affected by the disclaimer present</p>\n<hr />\n<p><code>disclaimers.entity</code> object</p>\n<p>object containing details about entity causing the disclaimer</p>\n<hr />\n<p><code>disclaimers.entity.type</code> string</p>\n<p>The type of entity causing the disclaimer. I.e. position, transaction etc</p>\n<hr />\n<p><code>disclaimers.entity.ids</code> array</p>\n<p>Ids of the entities causing the disclaimer</p>\n","urlObject":{"path":["portfolio","summary","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"fromDate","value":"YYYY-MM-DD"},{"disabled":true,"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"4ae45f71-d704-4418-9027-2963243b893a","name":"Retrieve the portfolio summary","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/summary/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"4467"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 18 Aug 2022 15:45:54 GMT"},{"key":"x-amzn-RequestId","value":"a90a25c8-8978-48e2-b3dd-bac6b4a3ad23"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"4467"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XEO72EsYjoEF4Hw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1173-CCrXZwRDOydQwqkdwapTLiHbe48\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fe5eb2-5e9c2d761bf69e5313a97eb4;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1acbf665fe00b4d436f38e8eeb0ab540.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"Td5Io9N6ZrRN3AwevECZvtTqcPqSzkncqzxFB-RpHIecStJLfh6Oxw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"fromDate\": \"2024-04-06T00:00:00.000Z\",\n        \"toDate\": \"2024-12-01T00:00:00.000Z\",\n        \"firmId\": \"SECCI\",\n        \"id\": \"0336F74\",\n        \"name\": \"Fred Flintstone\",\n        \"firstName\": \"Fred\",\n        \"surname\": \"Flintstone\",\n        \"language\": \"en\",\n        \"currency\": \"GBP\",\n        \"nodeId\": [\n            \"35\"\n        ],\n        \"nodeName\": [\n            \"My Advice Firm Ltd\"\n        ],\n        \"status\": \"Active\",\n        \"clientType\": \"Individual\",\n        \"completeTransactions\": [],\n        \"accounts\": [\n            {\n                \"id\": \"02J5F79\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"35\",\n                \"nodeName\": \"My Advice Firm Ltd\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"advised\": true,\n                    \"trust\": false,\n                    \"clientProductId\": \"66e9491015a1836250a59fd6\"\n                },\n                \"currentValue\": 29185.7,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 36897.55,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 36897.55,\n                \"growth\": -7814.3,\n                \"adjustedGrowth\": -7814.3,\n                \"closingCashValue\": 1617.55,\n                \"uninvestedCash\": 1617.55,\n                \"closingStockValue\": 27568.15,\n                \"growthPercent\": -1.2952,\n                \"adjustedGrowthPercent\": -1.2952,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": null,\n                    \"unrealisedProfitLoss\": null\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"ASSET_UNSUPPORTED_TYPE\",\n                        \"text\": \"We do not currently support this asset type. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"02J5F79|S|GB00B545NX97\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0076\n            },\n            {\n                \"id\": \"02J5F87\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"ISA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"ISA\",\n                \"nodeId\": \"35\",\n                \"assetAllocationId\": \"0492B\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"ISA\",\n                    \"discretionary\": true,\n                    \"advised\": true,\n                    \"trust\": false,\n                    \"clientProductId\": \"66e94e7015a1836250b7c90f\",\n                    \"assetAllocationId\": \"0492B\",\n                    \"assetAllocationName\": \"Adventurous Model\"\n                },\n                \"currentValue\": 0,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 0,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 0,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"03182J2\",\n                \"clients\": [\n                    \"id\": \"0336F74\",\n                    \"isLeadClient\": true\n                }, {\n                    \"id\": \"0336F65\"\n                }\n                ],\n                \"name\": \"Joint GIA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1879.89,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 2109.89,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2109.89,\n                \"growth\": -120.11,\n                \"adjustedGrowth\": -120.11,\n                \"closingCashValue\": 1679.89,\n                \"uninvestedCash\": 1679.89,\n                \"closingStockValue\": 200,\n                \"growthPercent\": -0.071,\n                \"adjustedGrowthPercent\": -0.071,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 110,\n                    \"unrealisedProfitLoss\": -230\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0005\n            },\n            {\n                \"id\": \"03182JF\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 2 Buys and sells with final sale\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1399.93,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 1399.93,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 1399.93,\n                \"growth\": 1054.93,\n                \"adjustedGrowth\": 1054.93,\n                \"closingCashValue\": 1399.93,\n                \"uninvestedCash\": 1399.93,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 3.6151,\n                \"adjustedGrowthPercent\": 3.6151,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 1055,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0004\n            },\n            {\n                \"id\": \"0318324\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 3 Accumulation dividend and partial stock transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 158.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -341.02,\n                \"adjustedGrowth\": -341.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -1.3308,\n                \"adjustedGrowthPercent\": -1.3308,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"031832C\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 4 Stock split\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": -0.0001,\n                \"adjustedGrowthPercent\": -0.0001,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832C|S|GB0003101523\",\n                                \"031832C|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001\n            },\n            {\n                \"id\": \"031832D\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 5 Merger\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1000341,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 1000000,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 1000000,\n                \"growth\": 341,\n                \"adjustedGrowth\": 341,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 1000341,\n                \"growthPercent\": 0.0007,\n                \"adjustedGrowthPercent\": 0.0007,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 341\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832D|S|GB0003101523\",\n                                \"031832D|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.2606\n            },\n            {\n                \"id\": \"031832F\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 6 De-merger\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 2800195.96,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 2799854.96,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2799854.96,\n                \"growth\": 195.96,\n                \"adjustedGrowth\": 195.96,\n                \"closingCashValue\": 1799854.96,\n                \"uninvestedCash\": 1799854.96,\n                \"closingStockValue\": 1000341,\n                \"growthPercent\": 0.0001,\n                \"adjustedGrowthPercent\": 0.0001,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 341\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832F|S|GB0003101523\",\n                                \"031832F|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.7296\n            },\n            {\n                \"id\": \"0318331\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 7 Conversion\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": -0.0001,\n                \"adjustedGrowthPercent\": -0.0001,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"0318331|S|GB0003101523\",\n                                \"0318331|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001\n            },\n            {\n                \"id\": \"0318335\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 8 Reinvestment, Migration Stock Transfer and Bonus Issue\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 2858.83,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 3399.83,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 3399.83,\n                \"growth\": -141.17,\n                \"adjustedGrowth\": -141.17,\n                \"closingCashValue\": 2558.83,\n                \"uninvestedCash\": 2558.83,\n                \"closingStockValue\": 300,\n                \"growthPercent\": -0.0918,\n                \"adjustedGrowthPercent\": -0.0918,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -541\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0007\n            },\n            {\n                \"id\": \"0318343\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 9 Adjustment and Internal Stock Transfer In\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 159.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -340.02,\n                \"adjustedGrowth\": -340.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 101,\n                \"growthPercent\": -1.3269,\n                \"adjustedGrowthPercent\": -1.3269,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -340\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                        \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"0318343|S|GB0003101523\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"031834H\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 10 Internal Stock Transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 158.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -341.02,\n                \"adjustedGrowth\": -341.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -1.3308,\n                \"adjustedGrowthPercent\": -1.3308,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"031835H\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 11 Consolidation\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": -0.0001,\n                \"adjustedGrowthPercent\": -0.0001,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031835H|S|GB0003101523\",\n                                \"031835H|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001\n            },\n            {\n                \"id\": \"0318362\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 12 Redemption\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 108.99,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 279.49,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 279.49,\n                \"growth\": -391.01,\n                \"adjustedGrowth\": -391.01,\n                \"closingCashValue\": 58.99,\n                \"uninvestedCash\": 58.99,\n                \"closingStockValue\": 50,\n                \"growthPercent\": -1.5259,\n                \"adjustedGrowthPercent\": -1.5259,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": -220.5,\n                    \"unrealisedProfitLoss\": -170.5\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"031836B\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"GIA 13 Cash dividend and full stock transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 109.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 450.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 450.98,\n                \"growth\": -331.02,\n                \"adjustedGrowth\": -331.02,\n                \"closingCashValue\": 9.98,\n                \"uninvestedCash\": 9.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -1.4646,\n                \"adjustedGrowthPercent\": -1.4646,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"02J5F78\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"JISA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"JISA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"JISA\",\n                    \"clientProductId\": \"66e9477c15a1836250773e95\"\n                },\n                \"currentValue\": 0,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 0,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 0,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"allocation\": 0\n            },\n            {\n                \"id\": \"03182FB\",\n                \"clientId\": \"0336F74\",\n                \"name\": \"Pebble's Jisa\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"JISA\",\n                \"nodeId\": \"35\",\n                \"nodeName\": \"My Advice Firm Ltd\",\n                \"status\": \"Pending\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"JISA\",\n                    \"discretionary\": false,\n                    \"advised\": true,\n                    \"trust\": false,\n                    \"clientProductId\": \"673b2adf8fe9473e475a197f\"\n                },\n                \"currentValue\": 0,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 0,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 0,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"allocation\": 0\n            }\n        ],\n        \"positions\": [\n            {\n                \"positionType\": \"Cash\",\n                \"currency\": \"GBP\",\n                \"currentValue\": 1807534.01,\n                \"openingValue\": 0,\n                \"growth\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowth\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"allocation\": 0.471\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B545NX97\",\n                \"assetId\": \"27429\",\n                \"assetName\": \"Vanguard Investments UK Ltd LifeStrategy 100% Equity Inc\",\n                \"quantity\": 135.47,\n                \"bookValue\": 35280,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": null,\n                    \"unrealisedProfitLoss\": null\n                },\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 35280,\n                \"openingValue\": 0,\n                \"currentValue\": 27568.15,\n                \"growth\": -7711.85,\n                \"adjustedGrowth\": -7711.85,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -0.2186,\n                \"adjustedGrowthPercent\": -0.2186,\n                \"currentPrice\": 203.5,\n                \"currentPriceDate\": \"2019-11-14T00:00:00.000Z\",\n                \"minimumTransferUnit\": 0.000001,\n                \"allocation\": 0.0072\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB0003101523\",\n                \"assetId\": \"2848P\",\n                \"assetName\": \"Electronic Data Processing PLC\",\n                \"quantity\": 751,\n                \"bookValue\": 2373.5,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 944.5,\n                    \"unrealisedProfitLoss\": -1622.5\n                },\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2373.5,\n                \"openingValue\": 0,\n                \"currentValue\": 751,\n                \"growth\": -4002615,\n                \"adjustedGrowth\": -4002615,\n                \"currency\": \"GBP\",\n                \"growthPercent\": -1686.3767,\n                \"adjustedGrowthPercent\": -1686.3767,\n                \"currentPrice\": 1,\n                \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                \"minimumTransferUnit\": 0.000001,\n                \"allocation\": 0.0002\n            },\n            {\n                \"positionType\": \"Stock\",\n                \"isin\": \"GB00B39J2M42\",\n                \"assetId\": \"2848S\",\n                \"assetName\": \"United Utilities Group PLC\",\n                \"quantity\": 529783.86,\n                \"bookValue\": 2002205,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2002205,\n                \"openingValue\": 0,\n                \"currentValue\": 2002205,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"currency\": \"GBP\",\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"allocation\": 0.5217\n            }\n        ],\n        \"bookValue\": 3847392.51,\n        \"nonTransferBookValue\": 3847392.51,\n        \"transferBookValue\": 0,\n        \"openingValue\": 0,\n        \"currentValue\": 3838058.16,\n        \"uninvestedCash\": 1807534.01,\n        \"closingCashValue\": 1807534.01,\n        \"growth\": -8227.84,\n        \"growthPercent\": -0.0043,\n        \"adjustedGrowth\": -8227.84,\n        \"adjustedGrowthPercent\": -0.0043,\n        \"transferValue\": 0,\n        \"cgtData\": {\n            \"realisedProfitLoss\": null,\n            \"unrealisedProfitLoss\": null,\n            \"closingGiaStockValue\": 2030524.15\n        },\n        \"disclaimers\": [\n            {\n                \"type\": \"ASSET_UNSUPPORTED_TYPE\",\n                \"text\": \"We do not currently support this asset type. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"02J5F79\"\n                    ]\n                }\n            },\n            {\n                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"bookValue\",\n                    \"profitLoss\",\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"031832C\",\n                        \"031832D\",\n                        \"031832F\",\n                        \"0318331\",\n                        \"031835H\"\n                    ]\n                }\n            },\n            {\n                \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"bookValue\",\n                    \"profitLoss\",\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"0318343\"\n                    ]\n                }\n            }\n        ],\n        \"products\": [\n            {\n                \"wrapperType\": \"ISA\",\n                \"remainingSubscriptionAmount\": 20000\n            },\n            {\n                \"accountId\": \"02J5F78\",\n                \"wrapperType\": \"JISA\",\n                \"remainingSubscriptionAmount\": 9000\n            },\n            {\n                \"accountId\": \"03182FB\",\n                \"wrapperType\": \"JISA\",\n                \"remainingSubscriptionAmount\": 9000\n            }\n        ]\n    }\n}"}],"_postman_id":"53aaf74f-1f1d-434c-8f1f-ce3acbbc3247"},{"name":"Retrieve the portfolio report","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"f25f4623-f4a8-4d11-a17d-1f680f0089b4"}}],"id":"6e82e851-1a0e-4d36-acb9-5a324def2b82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/report/{{firmId}}/{{clientId}}","description":"<p>This command returns a summary of transactions that have taken place in the client portfolio. This includes:</p>\n<ul>\n<li>Payments</li>\n<li>Charges</li>\n<li>Income (dividends and cash interest)</li>\n<li>Transfers</li>\n<li>Internal cash movements</li>\n<li>Sell and invest orders</li>\n</ul>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the portfolio</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The full name of the client</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>payments</code> array</p>\n<p>Contains details of payments in and out of the portfolio</p>\n<hr />\n<p><code>payments.transactionsIn</code> array</p>\n<p>Contains details of payments in</p>\n<hr />\n<p><code>payments.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>payments.transactionsIn.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>payments.transactionsIn.amount</code> numerical string</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>payments.transactionsOut</code> array</p>\n<p>Contains details of payments out</p>\n<hr />\n<p><code>payments.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>payments.transactionsOut.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>payments.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>payments.totalIn</code> float</p>\n<p>The total amount of the payment in transactions</p>\n<hr />\n<p><code>payments.totalOut</code> float</p>\n<p>The total amount of the payment out transactions</p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken in the portfolio</p>\n<hr />\n<p><code>charges.transactions</code> array</p>\n<p>Contains details of charge transactions taken in the portfolio</p>\n<hr />\n<p><code>charges.transactions.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>charges.transactions.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>charges.transactions.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>charges.transactions.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>charges.transactions.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>charges.transactions.amount</code> float</p>\n<p>The value of the transaction - this will show as a negative value for charges</p>\n<hr />\n<p><code>charges.total</code> float</p>\n<p>The total value of the charge amounts deducted from the portfolio</p>\n<hr />\n<p><code>income</code> array</p>\n<p>Contains details of income on the portfolio, which includes dividends and interest</p>\n<hr />\n<p><code>income.transactions</code> array</p>\n<p>Contains details of income transactions</p>\n<hr />\n<p><code>income.transactions.transactionId</code></p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>income.transactions.transactionCode</code></p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>income.transactions.narrative</code></p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>income.transactions.postDate</code></p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>income.transactions.valueDate</code></p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>income.transactions.information</code> array</p>\n<p>Information that relates to dividend payments</p>\n<hr />\n<p><code>income.transactions.information.originalInstrumentName</code></p>\n<p>The original name of the instrument</p>\n<hr />\n<p><code>income.transactions.information.originalIsin</code></p>\n<p>The original ISIN of the instrument</p>\n<hr />\n<p><code>income.transactions.information.eventPayDate</code></p>\n<p>The date the dividend payment was paid out</p>\n<hr />\n<p><code>income.transaction.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>income.total</code> float</p>\n<p>The amount of income transactions</p>\n<hr />\n<p><code>transfers</code> array</p>\n<p>Contains details of transfers in the portfolio</p>\n<hr />\n<p><code>transfers.transactionsIn</code> array</p>\n<p>Contains details of transfers in transactions</p>\n<hr />\n<p><code>transfers.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut</code> array</p>\n<p>Contains details of transfers out transactions</p>\n<hr />\n<p><code>transfers.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>transfers.totalIn</code> float</p>\n<p>The total value of the transfer in transactions</p>\n<hr />\n<p><code>transfers.totalOut</code> float</p>\n<p>The total value of the transfer out transactions</p>\n<hr />\n<p><code>internalTransfers</code> array</p>\n<p>Contains details of internal cash transfers between investment accounts</p>\n<hr />\n<p><code>internalTransfers.transactionsIn</code> array</p>\n<p>Contains details of internal cash transfers in</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.transactionCode</code></p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.narrative</code></p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut</code> array</p>\n<p>Contains details of internal cash transfers out</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>internalTransfers.totalIn</code> float</p>\n<p>The total value of the transfer in transactions</p>\n<hr />\n<p><code>internalTransfers.totalOut</code> float</p>\n<p>The total value of the transfer out transactions</p>\n<hr />\n<p><code>performance</code> array</p>\n<p>Contains details of asset holdings in the portfolio</p>\n<hr />\n<p><code>performance.transactionsRealised</code> array</p>\n<p>Contains details of transactions realised in the portfolio</p>\n<hr />\n<p><code>performance.transactionsRealised.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.quantity</code> float</p>\n<p>The number of units transacted</p>\n<hr />\n<p><code>performance.transactionsRealised.value</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.profitLoss</code> float</p>\n<p>The value of the profit or loss since book cost</p>\n<hr />\n<p><code>performance.transactionsRealised.adjustedProfitLoss</code> float</p>\n<p>The value of the profit or loss since asset on platform</p>\n<hr />\n<p><code>performance.transactionsRealised.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>performance.transactionsRealised.transferBookValue</code> float</p>\n<p>The book cost since the in-specie transfer settled</p>\n<hr />\n<p><code>performance.transactionsRealised.nonTransferBookValue</code> float</p>\n<p>The book cost since the in-specie transfer settled</p>\n<hr />\n<p><code>performance.positionsRetained</code> array</p>\n<p>Contains a summary of positions retained within the portfolio</p>\n<hr />\n<p><code>performance.positionsRetained.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>performance.positionsRetained.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>performance.positionsRetained.quantity</code> float</p>\n<p>The number of units held in the asset</p>\n<hr />\n<p><code>performance.positionsRetained.bookValue</code> float</p>\n<p>The book cost of the holding</p>\n<hr />\n<p><code>performance.positionsRetained.transferBookValue</code> float</p>\n<p>The book cost of the holding since the transfer settled</p>\n<hr />\n<p><code>performance.positionsRetained.currentValue</code> float</p>\n<p>The current value of the holding - if no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>peformance.positionsRetained.growth</code> float</p>\n<p>The growth of the holding since on the platform</p>\n<hr />\n<p><code>performance.positionsRetained.adjustedGrowth</code> float</p>\n<p>The growth of the holding since the book cost</p>\n<hr />\n<p><code>performance.totalRealised</code> float</p>\n<p>The sum of the value of realised holdings</p>\n<hr />\n<p><code>performance.totalRetained</code> float</p>\n<p>The sum of the current value of retained holdings</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The opening value of the portfolio – if no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>closingValue</code> float</p>\n<p>The closing value of the portfolio – if no date parameters are provided, this will show as of today's date</p>\n<hr />\n","urlObject":{"path":["portfolio","report","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"fromDate","value":"YYYY-MM-DD"},{"disabled":true,"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"70050e4c-5a8a-429a-82bf-d3fa803692f9","name":"Retrieve the portfolio report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/report/SDEMO/024B197"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3214"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 18 Aug 2022 15:45:23 GMT"},{"key":"x-amzn-RequestId","value":"ce16f728-998a-451a-94d8-ba092f19a814"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"3214"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XEO3FEfjDoEFdjw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"c8e-ifps0YdPSipCcD3FSLPtbgSQecY\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fe5e93-569b89c26f64c552497fc4d5;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1acbf665fe00b4d436f38e8eeb0ab540.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"NOvVQjMkcL4mKJ1mtBeLkmHG9A3XAJN2NBlWng9S_GJ8s1_B8yRYgA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"024B197\",\n        \"name\": \"Ms Demo Caldon\",\n        \"firmId\": \"SDEMO\",\n        \"currency\": \"GBP\",\n        \"payments\": {\n            \"transactionsIn\": [\n                {\n                    \"transactionId\": \"00003NH94\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2022-03-11T17:43:08.284Z\",\n                    \"valueDate\": \"1970-01-20T01:30:20.588Z\",\n                    \"subscriptionAmount\": 45000,\n                    \"amount\": 45000\n                }\n            ],\n            \"transactionsOut\": [\n                {\n                    \"transactionId\": \"00003NH95\",\n                    \"transactionCode\": \"CPDD\",\n                    \"narrative\": \"Initial Withdrawal\",\n                    \"postDate\": \"2022-03-11T17:43:14.686Z\",\n                    \"valueDate\": \"1970-01-20T01:30:20.594Z\",\n                    \"amount\": -11250\n                }\n            ],\n            \"totalIn\": 45000,\n            \"totalOut\": -11250\n        },\n        \"charges\": {\n            \"transactions\": [],\n            \"total\": 0\n        },\n        \"income\": {\n            \"transactions\": [],\n            \"total\": 0\n        },\n        \"transfers\": {\n            \"transactionsIn\": [\n                {\n                    \"transactionId\": \"00003NH98\",\n                    \"transactionCode\": \"MGSI\",\n                    \"narrative\": \"Opening Position\",\n                    \"postDate\": \"2022-03-11T17:43:21.147Z\",\n                    \"valueDate\": \"2022-03-11T17:43:20.874Z\",\n                    \"quantity\": 10000,\n                    \"transferValue\": 24860,\n                    \"bookValue\": 17500,\n                    \"transferBookValue\": 17500,\n                    \"nonTransferBookValue\": 0,\n                    \"profitLoss\": 0,\n                    \"adjustedProfitLoss\": 0\n                },\n                {\n                    \"transactionId\": \"00003NH99\",\n                    \"transactionCode\": \"MGSI\",\n                    \"narrative\": \"Opening Position\",\n                    \"postDate\": \"2022-03-11T17:43:22.537Z\",\n                    \"valueDate\": \"2022-03-11T17:43:22.296Z\",\n                    \"quantity\": 500,\n                    \"transferValue\": 9405,\n                    \"bookValue\": 10000,\n                    \"transferBookValue\": 10000,\n                    \"nonTransferBookValue\": 0,\n                    \"profitLoss\": 0,\n                    \"adjustedProfitLoss\": 0\n                },\n                {\n                    \"transactionId\": \"00003NH9B\",\n                    \"transactionCode\": \"MGSI\",\n                    \"narrative\": \"Opening Position\",\n                    \"postDate\": \"2022-03-11T17:43:23.917Z\",\n                    \"valueDate\": \"2022-03-11T17:43:23.678Z\",\n                    \"quantity\": 1000,\n                    \"transferValue\": 8951,\n                    \"bookValue\": 7600,\n                    \"transferBookValue\": 7600,\n                    \"nonTransferBookValue\": 0,\n                    \"profitLoss\": 0,\n                    \"adjustedProfitLoss\": 0\n                },\n                {\n                    \"transactionId\": \"00003NH9C\",\n                    \"transactionCode\": \"MGSI\",\n                    \"narrative\": \"Opening Position\",\n                    \"postDate\": \"2022-03-11T17:43:25.486Z\",\n                    \"valueDate\": \"2022-03-11T17:43:25.166Z\",\n                    \"quantity\": 9000,\n                    \"transferValue\": 14220,\n                    \"bookValue\": 10000,\n                    \"transferBookValue\": 10000,\n                    \"nonTransferBookValue\": 0,\n                    \"profitLoss\": 0,\n                    \"adjustedProfitLoss\": 0\n                }\n            ],\n            \"transactionsOut\": [],\n            \"totalIn\": 57436,\n            \"totalOut\": 0\n        },\n        \"internalTransfers\": {\n            \"transactionsIn\": [],\n            \"transactionsOut\": [],\n            \"totalIn\": 0,\n            \"totalOut\": 0\n        },\n        \"performance\": {\n            \"transactionsRealised\": [],\n            \"positionsRetained\": [\n                {\n                    \"isin\": \"GB00B019KW72\",\n                    \"assetName\": \"J Sainsbury PLC\",\n                    \"quantity\": 10000,\n                    \"bookValue\": 17500,\n                    \"transferBookValue\": 17500,\n                    \"nonTransferBookValue\": 0,\n                    \"currentValue\": 24470,\n                    \"growth\": 6970,\n                    \"adjustedGrowth\": -390\n                },\n                {\n                    \"isin\": \"GB00B2PDGW16\",\n                    \"assetName\": \"WH Smith PLC\",\n                    \"quantity\": 500,\n                    \"bookValue\": 10000,\n                    \"transferBookValue\": 10000,\n                    \"nonTransferBookValue\": 0,\n                    \"currentValue\": 9410,\n                    \"growth\": -590,\n                    \"adjustedGrowth\": 5\n                },\n                {\n                    \"isin\": \"GB00BDR05C01\",\n                    \"assetName\": \"NATIONAL GRID PLC ORD 12 204/473P\",\n                    \"quantity\": 1000,\n                    \"bookValue\": 7600,\n                    \"transferBookValue\": 7600,\n                    \"nonTransferBookValue\": 0,\n                    \"currentValue\": 8252,\n                    \"growth\": 652,\n                    \"adjustedGrowth\": -699\n                },\n                {\n                    \"isin\": \"GB0031274896\",\n                    \"assetName\": \"Marks & Spencer Group PLC\",\n                    \"quantity\": 9000,\n                    \"bookValue\": 10000,\n                    \"transferBookValue\": 10000,\n                    \"nonTransferBookValue\": 0,\n                    \"currentValue\": 14760,\n                    \"growth\": 4760,\n                    \"adjustedGrowth\": 540\n                },\n                {\n                    \"isin\": \"GB00B4PQW151\",\n                    \"assetName\": \"Vanguard Investments UK Ltd LifeStrategy 80% Equity Acc\",\n                    \"quantity\": 47,\n                    \"bookValue\": 10000,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 10000,\n                    \"currentValue\": 9968.7,\n                    \"growth\": -31.3,\n                    \"adjustedGrowth\": -31.3\n                }\n            ],\n            \"totalRealised\": 0,\n            \"totalRetained\": 11760.7\n        },\n        \"openingValue\": 0,\n        \"closingValue\": 90610.7\n    }\n}"}],"_postman_id":"6e82e851-1a0e-4d36-acb9-5a324def2b82"},{"name":"List portfolio summaries","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"87c68f93-2c99-4575-9c8b-40c6b4f012c3"}}],"id":"f8be2896-537a-4a98-97c3-08cf0dd211b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/{{firmId}}?pageSize=100&page=1","description":"<p>This command returns the portfolio objects for all clients on the platform</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The full name of the client</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the client account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't yet viewed and accepted the platform terms</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>Skeletal record created for the client from an illustration. Client hasn't viewed or accepted the platform terms</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>nodeId</code> array</p>\n<p>The unique identifier of the node that the client is attached to</p>\n<hr />\n<p><code>nodeName</code> string</p>\n<p>The name of the node that the client is attached to</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current value of the portfolio. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>accounts</code> integer</p>\n<p>The number of investment accounts in the client's portfolio</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash across all accounts in this portfolio. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The portfolio's growth since book costs</p>\n<hr />\n<p><code>growthPercent</code> float</p>\n<p>The portfolio's growth since book costs as a percentage</p>\n<hr />\n<p><code>adjustedGrowth</code> float</p>\n<p>The portfolio's growth since assets on the platform</p>\n<hr />\n<p><code>adjustedGrowhtPercent</code> float</p>\n<p>The portfolio's growth since assets on the platform as a percentage</p>\n<hr />\n","urlObject":{"path":["portfolio","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"pageSize","value":"100"},{"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"68a4052f-1be5-4a26-bc78-80c54699faa8","name":"List portfolio summaries","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfolio/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11910"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 18 Aug 2022 15:44:33 GMT"},{"key":"x-amzn-RequestId","value":"5ec0bc50-235a-4a4a-82f4-c0eba612254e"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11910"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XEOvGGF0joEFrtA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2e86-kan1cGhtmqDOS3t1YPoefw0rV/4\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62fe5e60-057ddf756c0d1f6e766051d6;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 1acbf665fe00b4d436f38e8eeb0ab540.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"CecP_XqxW0L8he8Vg431eiRuvHeESqLB5zlsvUK89VFhfcLf0zij-Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"024B197\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Ms Demo Caldon\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 90610.7,\n            \"accounts\": 2,\n            \"uninvestedCash\": 23750,\n            \"growth\": 11760.7,\n            \"growthPercent\": 0.3446,\n            \"adjustedGrowth\": -575.3,\n            \"adjustedGrowthPercent\": -0.0168\n        },\n        {\n            \"id\": \"00DCDF3\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Winston Churchill\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"4\"\n            ],\n            \"nodeName\": [\n                \"Adam Admin\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 81140.84,\n            \"accounts\": 9,\n            \"uninvestedCash\": 23263.41,\n            \"growth\": 22491.84,\n            \"growthPercent\": 0.6892,\n            \"adjustedGrowth\": -308438.16,\n            \"adjustedGrowthPercent\": -2.396\n        },\n        {\n            \"id\": \"025BC57\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Nexus Client\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"024B196\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Caldon Demo\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 27377.01,\n            \"accounts\": 3,\n            \"uninvestedCash\": 24535.66,\n            \"growth\": -13122.99,\n            \"growthPercent\": -0.324,\n            \"adjustedGrowth\": -13122.99,\n            \"adjustedGrowthPercent\": -0.324\n        },\n        {\n            \"id\": \"025B437\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Cooper Demo\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DCDG2\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr John Denver\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"4\"\n            ],\n            \"nodeName\": [\n                \"Adam Admin\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 24513.75,\n            \"accounts\": 2,\n            \"uninvestedCash\": 750,\n            \"growth\": 4513.75,\n            \"growthPercent\": 0.7573,\n            \"adjustedGrowth\": 4513.75,\n            \"adjustedGrowthPercent\": 0.7573\n        },\n        {\n            \"id\": \"025J52D\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Duggee Dog\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DCDFJ\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Dr John Dolittle\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 1822.59,\n            \"accounts\": 2,\n            \"uninvestedCash\": 60,\n            \"growth\": 1722.59,\n            \"growthPercent\": 17.2259,\n            \"adjustedGrowth\": 1722.59,\n            \"adjustedGrowthPercent\": 17.2259\n        },\n        {\n            \"id\": \"00H517G\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James Holmes\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00J19B9\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss James Holmes\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"0211H66\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Dr James Holmes\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"021F671\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James Holmes\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 2,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"024682D\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James Holmes\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"0252FHH\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss James Holmes\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"nodeName\": [\n                \"Alpha Advice\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 3,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025DBHH\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James Holmes\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025DC9B\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  James Holmes\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025DJ81\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  James Holmes\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025G3HH\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James Holmes\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"023F8B8\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr John Jones\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"nodeName\": [\n                \"Alpha Advice\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"023F8B9\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr John Jones\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 2,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"021JC7D\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Mona Lisa\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"021JCC6\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Mona Lisa\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DCDG1\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss Jennifer Lopez\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"nodeName\": [\n                \"Peter Planner\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 29444.25,\n            \"accounts\": 1,\n            \"uninvestedCash\": 96.78,\n            \"growth\": 4944.25,\n            \"growthPercent\": 0.3525,\n            \"adjustedGrowth\": 4944.25,\n            \"adjustedGrowthPercent\": 0.3525\n        },\n        {\n            \"id\": \"024F24G\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss Selene Love\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00JJ6D5\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Dan Mar\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00HB4DH\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Dan Marsh\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 2371.56,\n            \"accounts\": 3,\n            \"uninvestedCash\": 1996.52,\n            \"growth\": 271.56,\n            \"growthPercent\": 0.7355,\n            \"adjustedGrowth\": 271.56,\n            \"adjustedGrowthPercent\": 0.7355\n        },\n        {\n            \"id\": \"00J8119\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Dan Marsh\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"nodeName\": [\n                \"Alpha Advice\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00H4J2C\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss Annabel Melvin\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00H4JHF\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss Annabel Melvin\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"024CG8C\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Dr Annabel Melvin\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"4\"\n            ],\n            \"nodeName\": [\n                \"Adam Admin\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025G1JF\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Annabel Melvin\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025G1JH\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Dr Annabel Melvin\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"025J3C8\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Miss Annabel Melvin\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 500,\n            \"accounts\": 2,\n            \"uninvestedCash\": 0,\n            \"growth\": -500,\n            \"growthPercent\": -0.5,\n            \"adjustedGrowth\": -500,\n            \"adjustedGrowthPercent\": -0.5\n        },\n        {\n            \"id\": \"02622F2\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Cooper Parry\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"4\"\n            ],\n            \"nodeName\": [\n                \"Adam Admin\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"0224HC9\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Caldon Pike\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DCDF2\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Joe Platform\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"nodeName\": [\n                \"Peter Planner\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 241278.37,\n            \"accounts\": 5,\n            \"uninvestedCash\": 1268.16,\n            \"growth\": 18878.37,\n            \"growthPercent\": 0.0914,\n            \"adjustedGrowth\": 18878.37,\n            \"adjustedGrowthPercent\": 0.0914\n        },\n        {\n            \"id\": \"00GB942\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Steve Platform\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DCDF6\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Professor Peter Plum\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 180013.75,\n            \"accounts\": 1,\n            \"uninvestedCash\": 3600.28,\n            \"growth\": 5013.75,\n            \"growthPercent\": 0.0287,\n            \"adjustedGrowth\": 5013.75,\n            \"adjustedGrowthPercent\": 0.0287\n        },\n        {\n            \"id\": \"024D76C\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr James SIPP \",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"nodeName\": [\n                \"Peter Planner\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 2,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"02219BJ\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr John Smith\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 2000,\n            \"accounts\": 2,\n            \"uninvestedCash\": 2000,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"0253279\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr Calum Test\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 3,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"026226B\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Cooper Test\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"4\"\n            ],\n            \"nodeName\": [\n                \"Adam Admin\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 1,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"024H1BJ\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mr calum Test\",\n            \"status\": \"Active\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"nodeName\": [\n                \"Seccl Demo\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 2,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"021JBJG\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"  Henry Theighth\",\n            \"status\": \"Registered\",\n            \"nodeId\": [\n                \"1\"\n            ],\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00DJC96\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mrs Elizabeth Windsor\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        },\n        {\n            \"id\": \"00G5621\",\n            \"firmId\": \"SDEMO\",\n            \"name\": \"Mrs Elizabeth Windsor\",\n            \"status\": \"Pending\",\n            \"nodeId\": [\n                \"5\"\n            ],\n            \"nodeName\": [\n                \"Alice Adviser\"\n            ],\n            \"currency\": \"GBP\",\n            \"currentValue\": 0,\n            \"accounts\": 0,\n            \"uninvestedCash\": 0,\n            \"growth\": 0,\n            \"growthPercent\": 0,\n            \"adjustedGrowth\": 0,\n            \"adjustedGrowthPercent\": 0\n        }\n    ],\n    \"meta\": {\n        \"count\": 46\n    }\n}"}],"_postman_id":"f8be2896-537a-4a98-97c3-08cf0dd211b1"}],"id":"d015d865-5e59-446c-8b1b-c9f00e717454","description":"<p>A client's \"portfolio\" refers to all cash and assets held in their investment accounts, which might consist of multiple tax wrappers and sub-accounts.</p>\n","_postman_id":"d015d865-5e59-446c-8b1b-c9f00e717454"},{"name":"Account","item":[{"name":"Retrieve the account summary","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript","id":"bfd44ea2-1367-4aa9-9855-5675c7ed033a"}}],"id":"0cfe8760-7f47-45b4-9b3b-53bdfc661b91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/{{firmId}}/{{accountId}}","description":"<p>This command returns the account summary object for the specified account</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>firmId</code></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached to</p>\n<hr />\n<p><code>name</code></p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code of the account. Currently only GBP is supported</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail</code></p>\n<p>Contains details of the investment account</p>\n<hr />\n<p><code>recurringPayment</code> boolean</p>\n<p>States whether or not there is a recurring payment on the account</p>\n<hr />\n<p><code>recurringOrders</code> array</p>\n<p>Contains details of any recurring order allocation on the account</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientId</code></p>\n<p>The unique identifier of the client account</p>\n<hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.id</code> string</p>\n<p>The unique identifier of the position.<br />For cash positions consisting of <code>accountId</code>|<code>C</code>|<code>position currency</code><br />For stock positions consisting of <code>accountId</code>|<code>S</code>|<code>isin</code></p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.amount</code> float</p>\n<p>For cash positions, the current balance of cash held in the account</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The current number of units in the holding. For previously held assets, they will be included in the response with a zero amount of units</p>\n<hr />\n<p><code>positions.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>positions.transferBookValue</code> float</p>\n<p>The number of units multiplied by the price on the day the transfer settled – this will be the same as the <code>positions.bookValue</code> if there's been no in-specie transfer</p>\n<hr />\n<p><code>positions.nonTransferBookValue</code> float</p>\n<p>The book cost since the transfer settled</p>\n<hr />\n<p><code>positions.openingValue</code> float</p>\n<p>The value of the position at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<p><code>positions.currentValue</code> float</p>\n<p>The value of the position as at close of business on the toDate parameter provided. If no toDate parameter is provided then today’s date will be used.</p>\n<hr />\n<p><code>positions.growth</code> float</p>\n<p>The growth amount taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>positions.adjustedGrowth</code> float</p>\n<p>The growth amount only achieved on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code of the position</p>\n<hr />\n<p><code>positions.growthPercent</code> float</p>\n<p>The percentage growth taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p><code>positions.adjustedGrowthPercent</code> float</p>\n<p>The percentage growth achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>positions.prices</code> array</p>\n<p>An array of the prices used to calculate opening and current values of the position. See 'Prices' in the platform management section for more detail on the prices object. Where no fromDate has been provided, only the prices applicable to the end date of the summary will be provided.</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system. This is the date of the price being used and may be prior to the current date or toDate used (for example when the toDate is a non-trading day)</p>\n<hr />\n<p><code>positions.updateId</code> string</p>\n<p>The unique identifier assigned to the position when it was last updated</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.allocation</code> float</p>\n<p>The percentage allocation of the position as a proportion of all the holdings in the account</p>\n<hr />\n<p><code>positions.ocfCalculated</code> float</p>\n<p>This indicates the ongoing charges figure and applies to ETFs, funds, and investment trusts</p>\n<hr />\n<p><code>positions.auditDetails</code> nested object</p>\n<p>Details of when the position was last updated</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The sum of the <code>positions.bookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>nonTransferBookValue</code> float</p>\n<p>The sum of the <code>positions.nonTransferBookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The value of the account at close of business on the fromDate parameter provided. If no fromDate parameter is provided or if the fromDate is before the inception of the account/portfolio, this will show as zero.</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current value of the account. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<p>Important! If a any date parameters is passed, this will no longer accurately represent the amount of available, non-ring-fenced cash.</p>\n<hr />\n<p><code>closingCashValue</code> float</p>\n<p>The amount of cash in the account</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The growth amount taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p>﻿<code>adjustedGrowth</code> float</p>\n<p>The growth amount only achieved on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p>﻿<code>growthPercent</code> float</p>\n<p>The percentage growth taking into account the provided original book cost of transferred assets</p>\n<hr />\n<p>﻿<code>adjustedGrowthPercent</code> float</p>\n<p>The percentage growth achieved only on this platform. (ie. does not consider the provided original book cost of transferred assets)</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The sum of the <code>transferValue</code> within the <code>positions</code> array</p>\n<hr />\n<p><code>realisedProfitLoss</code> float</p>\n<p>The sum of the difference between the value of assets at the time of disposal and their book cost for all disposals in the date range selected</p>\n<hr />\n<p><code>realisedProfitLoss</code>float</p>\n<p>The sum of the difference between the value of assets at the time of disposal and their book cost for all disposals in the date range selected</p>\n<hr />\n<p><code>unrealisedProfitLoss</code> float</p>\n<p>The being the difference between the value of assets that are still held in a portfolio as of the end date of the date range and their book costs.</p>\n<hr />\n<p><code>closingGiaStockValue</code> float</p>\n<p>The value of <strong>GIA</strong> stock holdings in the <strong>portfolio</strong> as at close of business on the toDate parameter provided. If no date parameters are provided, this refers to today's date</p>\n<hr />\n<p><code>disclaimers</code> array</p>\n<p>Array of disclaimers that signal errors or warnings about data inaccuracies or features we do not support</p>\n<hr />\n<p><code>disclaimers.type</code> string</p>\n<p>Type of disclaimer. This constant can be used for mapping purposes</p>\n<hr />\n<p><code>disclaimers.text</code> string</p>\n<p>Text shown when the disclaimer is present</p>\n<hr />\n<p><code>disclaimers.fields</code> array</p>\n<p>Array containing fields affected by the disclaimer present</p>\n<hr />\n<p><code>disclaimers.entity</code> object</p>\n<p>object containing details about entity causing the disclaimer</p>\n<hr />\n<p><code>disclaimers.entity.type</code> string</p>\n<p>The type of entity causing the disclaimer. I.e. position, transaction etc</p>\n<hr />\n<p><code>disclaimers.entity.ids</code> array</p>\n<p>Ids of the entities causing the disclaimer</p>\n","urlObject":{"path":["account","summary","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"3b16ea27-49b8-4cf6-8ac3-b2eb9ffee6b5","name":"Retrieve the account summary","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/SDEMO/00DC2D9"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"8140"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 19 Aug 2022 12:20:29 GMT"},{"key":"x-amzn-RequestId","value":"5c5a241b-f894-44db-bbf1-e65194b57767"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"8140"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XHDx-EmxDoEFiNQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1fcc-fs+7qEMfa7R16J3/vD9yYsnkcZs\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62ff800c-6dda4c0366c3811163d09407;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f3941b23aa4de2f405431a6cd8d6aafe.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN50-C2"},{"key":"X-Amz-Cf-Id","value":"0c22yOkGR0LmxSZtpGlx2B3TJeGdfGOjh9xgjuu8CvLzDAS0CFVp3g=="}],"cookie":[],"responseTime":null,"body":"{\n  \"data\": {\n    \"id\": \"031B7H5\",\n    \"firmId\": \"SECCI\",\n    \"nodeId\": \"0\",\n    \"name\": \"GIA 1 Buys and sells without final sale\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"wrapperType\": \"GIA\",\n    \"wrapperDetail\": {\n      \"wrapperType\": \"GIA\",\n      \"discretionary\": false,\n      \"clientProductId\": \"674638f9fdac15ff73082809\"\n    },\n    \"recurringPayment\": false,\n    \"status\": \"Active\",\n    \"clientId\": \"034C3HB\",\n    \"positions\": [\n      {\n        \"id\": \"031B7H5|C|GBP\",\n        \"accountId\": \"031B7H5\",\n        \"accountName\": \"GIA 1 Buys and sells without final sale\",\n        \"accountType\": \"Wrapper\",\n        \"amount\": 2100,\n        \"auditDetails\": {\n          \"application\": \"PortfolioProcessor\",\n          \"updateDate\": \"2024-11-26T21:12:45.542Z\",\n          \"userFirmId\": \"BACKGROUND\",\n          \"userId\": \"Background\",\n          \"version\": 5\n        },\n        \"currency\": \"GBP\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"positionType\": \"Cash\",\n        \"updateId\": \"674639cd86661217db61fc1b\",\n        \"currentValue\": 2100,\n        \"growth\": 0,\n        \"growthPercent\": 0,\n        \"adjustedGrowth\": 0,\n        \"adjustedGrowthPercent\": 0,\n        \"openingValue\": 0,\n        \"allocation\": 0.9767\n      },\n      {\n        \"id\": \"031B7H5|S|GB0003101523\",\n        \"accountId\": \"031B7H5\",\n        \"accountName\": \"GIA 1 Buys and sells without final sale\",\n        \"accountType\": \"Wrapper\",\n        \"assetId\": \"2848P\",\n        \"assetName\": \"Electronic Data Processing PLC\",\n        \"auditDetails\": {\n          \"application\": \"PortfolioProcessor\",\n          \"updateDate\": \"2024-11-26T21:12:45.459Z\",\n          \"userFirmId\": \"BACKGROUND\",\n          \"userId\": \"Background\",\n          \"version\": 4\n        },\n        \"currency\": \"GBP\",\n        \"firmId\": \"SECCI\",\n        \"isin\": \"GB0003101523\",\n        \"nodeId\": \"0\",\n        \"positionType\": \"Stock\",\n        \"quantity\": 50,\n        \"updateId\": \"674639cd86661217db61fc19\",\n        \"prices\": [\n          {\n            \"assetId\": \"2848P\",\n            \"insertDate\": \"2024-11-26T00:00:00.000Z\",\n            \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n            \"ask\": 1,\n            \"mid\": 1,\n            \"bid\": 1,\n            \"quoteUnit\": 1,\n            \"minimumTransferUnit\": 0.000001,\n            \"currency\": \"GBP\",\n            \"exchangeRates\": [],\n            \"instrumentType\": \"Equity\"\n          }\n        ],\n        \"assetInstrumentType\": \"Equity\",\n        \"assetCountryOfIssue\": \"GB\",\n        \"disclaimers\": [],\n        \"bookValue\": 75,\n        \"transferBookValue\": 0,\n        \"nonTransferBookValue\": 75,\n        \"growth\": -25,\n        \"transferValue\": 0,\n        \"currentPrice\": 1,\n        \"currentSellPrice\": 1,\n        \"instrumentType\": \"Equity\",\n        \"minimumTransferUnit\": 0.000001,\n        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n        \"currentValue\": 50,\n        \"adjustedGrowth\": -25,\n        \"cgtData\": {\n          \"realisedProfitLoss\": 175,\n          \"unrealisedProfitLoss\": -25\n        },\n        \"openingValue\": 0,\n        \"growthPercent\": -0.3333,\n        \"adjustedGrowthPercent\": -0.3333,\n        \"allocation\": 0.0233\n      }\n    ],\n    \"currentValue\": 2150,\n    \"openingValue\": 0,\n    \"openingStockValue\": 0,\n    \"openingCashValue\": 0,\n    \"bookValue\": 2175,\n    \"transferBookValue\": 0,\n    \"nonTransferBookValue\": 2175,\n    \"growth\": 150,\n    \"adjustedGrowth\": 150,\n    \"closingCashValue\": 2100,\n    \"uninvestedCash\": 2100,\n    \"closingStockValue\": 50,\n    \"growthPercent\": 0.075,\n    \"adjustedGrowthPercent\": 0.075,\n    \"transferValue\": 0,\n    \"cgtData\": {\n      \"realisedProfitLoss\": 175,\n      \"unrealisedProfitLoss\": -25\n    },\n    \"disclaimers\": []\n  }\n}"}],"_postman_id":"0cfe8760-7f47-45b4-9b3b-53bdfc661b91"},{"name":"Retrieve the live account summary (available balances)","event":[{"listen":"test","script":{"id":"bfd44ea2-1367-4aa9-9855-5675c7ed033a","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"updateId\", data.data.updateid)"],"type":"text/javascript"}}],"id":"3d6d30d9-0aa3-4028-8ce5-5f542d37c6f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/{{firmId}}/{{accountId}}","description":"<p>This command returns the Live Account Summary (LAS) object for the specified account. The LAS represents the account's available cash and stock balances, which are the completed balances less any in-flight transactions that are being ring-fenced.</p>\n<p>Use this endpoint to know how much available cash and stock you have, when calculating new transactions prior to requesting them.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>firmId</code></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique node identifier that the client record is attached to</p>\n<hr />\n<p><code>name</code></p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code of the account. Currently only GBP is supported</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail</code></p>\n<p>Contains details of the investment account</p>\n<hr />\n<p><code>recurringPayment</code> boolean</p>\n<p>States whether or not there is a recurring payment on the account</p>\n<hr />\n<p><code>recurringOrders</code> array</p>\n<p>Contains details of any recurring order allocation on the account</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms and declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientId</code></p>\n<p>The unique identifier of the client account</p>\n<hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.id</code> string</p>\n<p>The unique identifier of the position.<br />For cash positions consisting of <code>accountId</code>|<code>C</code>|<code>position currency</code><br />For stock positions consisting of <code>accountId</code>|<code>S</code>|<code>isin</code></p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.instrumentType</code> enum</p>\n<p>The type of instrument this position represents</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Equity</code></td>\n<td>An equity</td>\n</tr>\n<tr>\n<td><code>ETF</code></td>\n<td>An ETF</td>\n</tr>\n<tr>\n<td><code>Investment Trust</code></td>\n<td>An investment trust</td>\n</tr>\n<tr>\n<td><code>Fund</code></td>\n<td>A fund</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.accountId</code> string</p>\n<p>The ID of the account for this position</p>\n<hr />\n<p><code>positions.amount</code> float</p>\n<p>For cash positions, the amount of available cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The current number of available units in the holding, after any units have been removed for ring-fencing. For previously held assets, they will be included in the response with a zero amount of units</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The value of the available position as at the last known price for this asset.</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code of the position</p>\n<hr />\n<p><code>positions.prices</code> array</p>\n<p>An array of the prices used to calculate the value of the position. See 'Prices' in the platform management section for more detail on the prices object.</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset – this is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentSellPrice</code> float</p>\n<p>The current sell price of the asset.</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system. This is the date of the price being used and may be prior to the current date or toDate used (for example when the toDate is a non-trading day)</p>\n<hr />\n<p><code>positions.updateId</code> string</p>\n<p>The unique identifier assigned to the position when it was last updated</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.auditDetails</code> nested object</p>\n<p>Details of when the position was last updated</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current available value of the account.</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of available uninvested cash in the account. This will exclude ring fenced cash that is being used for other transactions.</p>\n<hr />\n","urlObject":{"path":["account","summary","live","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"6f76487e-ed75-4bda-b04e-cbb23702b910","name":"Live Account Summary example","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/summary/live/SECCI/0000619"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2313"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 08 Aug 2024 08:07:49 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66b47cd5-060ee4470db2f7171b326692"},{"key":"x-amzn-RequestId","value":"8c0e0a89-ae4e-4285-a642-5770bee1a15f"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2313"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"cLhxdFr1joEEpNw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"909-6WxvS4iw3LI9TW7eDku5waukdic\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 840e16b680c94fee8c48b15e01dda782.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"FRA60-P9"},{"key":"X-Amz-Cf-Id","value":"8QIm8raUiKk-1jflKxrYTpgAHPcp8UggL3xZpq0fbvU5r1S34v9nqA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"0000619\",\n        \"firmId\": \"SECCI\",\n        \"nodeId\": \"0\",\n        \"name\": \"LAS Api Docs\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"wrapperType\": \"GIA\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"clientProductId\": \"66b473b0f01864527b65166c\"\n        },\n        \"recurringPayment\": false,\n        \"status\": \"Active\",\n        \"clientId\": \"00006CJ\",\n        \"positions\": [\n            {\n                \"id\": \"0000619|C|GBP\",\n                \"accountId\": \"0000619\",\n                \"accountName\": \"LAS Api Docs\",\n                \"accountType\": \"Wrapper\",\n                \"amount\": 596,\n                \"auditDetails\": {\n                    \"application\": \"PortfolioProcessor\",\n                    \"updateDate\": \"2024-08-08T07:30:56.380Z\",\n                    \"userFirmId\": \"BACKGROUND\",\n                    \"userId\": \"Background\",\n                    \"version\": 2\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Cash\",\n                \"updateId\": \"66b4743055b08467d0ae7139\",\n                \"currentValue\": 596\n            },\n            {\n                \"id\": \"0000619|S|GB00B2PDGW16\",\n                \"accountId\": \"0000619\",\n                \"accountName\": \"LAS Api Docs\",\n                \"accountType\": \"Wrapper\",\n                \"assetId\": \"286D7\",\n                \"assetName\": \"WH Smith PLC\",\n                \"auditDetails\": {\n                    \"application\": \"PortfolioProcessor\",\n                    \"updateDate\": \"2024-08-08T07:30:56.316Z\",\n                    \"userFirmId\": \"BACKGROUND\",\n                    \"userId\": \"Background\",\n                    \"version\": 1\n                },\n                \"currency\": \"GBP\",\n                \"firmId\": \"SECCI\",\n                \"isin\": \"GB00B2PDGW16\",\n                \"nodeId\": \"0\",\n                \"positionType\": \"Stock\",\n                \"quantity\": 190,\n                \"updateId\": \"66b4743055b08467d0ae7137\",\n                \"prices\": [\n                    {\n                        \"id\": \"66b40af5f01864527b4774d2\",\n                        \"insertDate\": \"2024-08-07T00:00:00.000Z\",\n                        \"ask\": 10,\n                        \"auditDetails\": {\n                            \"application\": \"InstrumentProcessor\",\n                            \"updateDate\": \"2024-08-08T07:15:10.406Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 4\n                        },\n                        \"bid\": 10,\n                        \"firmId\": \"SECCL\",\n                        \"mid\": 10,\n                        \"priceDate\": \"2024-05-15T00:00:00.000Z\",\n                        \"updateId\": \"66b4707ee1bb04dbe09f2b7d\",\n                        \"assetId\": \"286D7\",\n                        \"quoteUnit\": 1,\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currency\": \"GBP\",\n                        \"exchangeRates\": [],\n                        \"instrumentType\": \"Equity\"\n                    }\n                ],\n                \"closingPrice\": {\n                    \"id\": \"66b40af5f01864527b4774d2\",\n                    \"insertDate\": \"2024-08-07T00:00:00.000Z\",\n                    \"ask\": 10,\n                    \"auditDetails\": {\n                        \"application\": \"InstrumentProcessor\",\n                        \"updateDate\": \"2024-08-08T07:15:10.406Z\",\n                        \"userFirmId\": \"BACKGROUND\",\n                        \"userId\": \"Background\",\n                        \"version\": 4\n                    },\n                    \"bid\": 10,\n                    \"firmId\": \"SECCL\",\n                    \"mid\": 10,\n                    \"priceDate\": \"2024-05-15T00:00:00.000Z\",\n                    \"updateId\": \"66b4707ee1bb04dbe09f2b7d\",\n                    \"assetId\": \"286D7\",\n                    \"quoteUnit\": 1,\n                    \"minimumTransferUnit\": 0.000001,\n                    \"currency\": \"GBP\",\n                    \"exchangeRates\": [],\n                    \"instrumentType\": \"Equity\"\n                },\n                \"currentPrice\": 10,\n                \"currentSellPrice\": 10,\n                \"instrumentType\": \"Equity\",\n                \"minimumTransferUnit\": 0.000001,\n                \"currentPriceDate\": \"2024-05-15T00:00:00.000Z\",\n                \"currentValue\": 1900\n            }\n        ],\n        \"currentValue\": 2496,\n        \"uninvestedCash\": 596\n    }\n}"}],"_postman_id":"3d6d30d9-0aa3-4028-8ce5-5f542d37c6f8"},{"name":"Retrieve the account report","id":"56dc6f99-10e4-4d96-815b-ff066ae3c899","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/report/{{firmId}}/{{accountId}}","description":"<p>This command returns a summary of transactions that have taken place in an investment account. This includes:</p>\n<ul>\n<li><p>Payments</p>\n</li>\n<li><p>Retained Interest</p>\n<ul>\n<li><p>Where the Interest payable to the account has been retained by the firm due to firm/account configuration</p>\n</li>\n<li><p>The value of the interest was never allocated to the account, but this supplies a record of interest payment that was retained</p>\n</li>\n<li><p>Retained interest is considered a charge by the regulator</p>\n</li>\n</ul>\n</li>\n<li><p>Charges</p>\n</li>\n<li><p>Income (dividends and cash interest)</p>\n</li>\n<li><p>Transfers</p>\n</li>\n<li><p>Internal cash movements</p>\n</li>\n<li><p>Sell and invest orders</p>\n</li>\n</ul>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>accountType</code> enum value</p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<hr />\n<p><code>payments</code> array</p>\n<p>Contains details of payments in and out of the portfolio</p>\n<hr />\n<p><code>payments.transactionsIn</code> array</p>\n<p>Contains details of payments in</p>\n<hr />\n<p><code>payments.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>payments.transactionsIn.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>payments.transactionsIn.amount</code> numerical string</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>payments.transactionsIn.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>payments.transactionsOut</code> array</p>\n<p>Contains details of payments out</p>\n<hr />\n<p><code>payments.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>payments.transactionsOut.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>payments.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>payments.transactionsOut.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>payments.totalIn</code> float</p>\n<p>The total amount of the payment in transactions</p>\n<hr />\n<p><code>payments.totalOut</code> float</p>\n<p>The total amount of the payment out transactions</p>\n<hr />\n<p><code>retainedInterest</code> array</p>\n<p>Contains details of interest payments payable to the account, but retained by the firm due to firm or account configuration.</p>\n<p>In contrast to other arrays in this API response, you will find the full portfolio transaction object returned here. The other arrays provide the account posting movement which is a different shape. This is because the Retained Interest transaction did not create a posting (because it did not allocate value to the account).</p>\n<hr />\n<p><code>retainedInterest.transactions</code> array</p>\n<p>Contains details of retained interest transactions on the account</p>\n<hr />\n<p><code>retainedInterest.transactions.id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.coreId</code> string</p>\n<p>The back office (Core) unique identifier related to this Pfolio transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.accountId</code> string</p>\n<p>The unique identifier for the account</p>\n<hr />\n<p><code>retainedInterest.transactions.transactionType</code> string</p>\n<p>The type enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.transactionType</code> string</p>\n<p>The type enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.transactionSubType</code> string</p>\n<p>The subType enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.movementType</code> string</p>\n<p>The movementType enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.transactionDate</code> string</p>\n<p>The UTC date that the transaction was instructed on</p>\n<hr />\n<p><code>retainedInterest.transactions.intendedSettlementDate</code> string</p>\n<p>The UTC date that the transaction is intended to take effect from</p>\n<hr />\n<p><code>retainedInterest.transactions.status</code> string</p>\n<p>The status enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.nodeId</code> string</p>\n<p>The node this account sits on</p>\n<hr />\n<p><code>retainedInterest.transactions.createdDate</code> string</p>\n<p>The UTC date this transaction record was created</p>\n<hr />\n<p><code>retainedInterest.transactions.status</code> string</p>\n<p>The status enum for this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails</code> object</p>\n<p>Description of when the last update happened and by who</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails.updateDate</code> string</p>\n<p>The UTC date that this transaction was last updated</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails.userFirmId</code> string</p>\n<p>The firmId of the user who last updated this transaction</p>\n<p>If \"BACKGROUND\" then it was an automated job</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails.userId</code> string</p>\n<p>The ID of the user who last updated this transaction</p>\n<p>If \"Background\" then it was an automated job</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails.version</code> int</p>\n<p>The version number of this transaction (starting at 1)</p>\n<hr />\n<p><code>retainedInterest.transactions.auditDetails.application</code> string</p>\n<p>The application name that the <code>userId</code> used to update this transaction</p>\n<hr />\n<p><code>retainedInterest.transactions.updateId</code> string</p>\n<p>The unique hash of this transaction (updated after each transaction state update for idempotency)</p>\n<hr />\n<p><code>retainedInterest.transactions.updateId</code> string</p>\n<p>The unique hash of this transaction (updated after each transaction state update for idempotency)</p>\n<hr />\n<p><code>retainedInterest.transactions.valueDate</code> string</p>\n<p>The UTC date that this transaction's value can be considered as applied to the account</p>\n<hr />\n<p><code>retainedInterest.total</code> float</p>\n<p>The sum value of each of the <code>transaction.amount</code>s</p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken in the portfolio</p>\n<hr />\n<p><code>charges.transactions</code> array</p>\n<p>Contains details of charge transactions taken in the portfolio</p>\n<hr />\n<p><code>charges.transactions.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>charges.transactions.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>charges.transactions.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>charges.transactions.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>charges.transactions.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>charges.transactions.amount</code> float</p>\n<p>The value of the transaction. This will show as a negative value for charges</p>\n<hr />\n<p><code>charges.total</code> float</p>\n<p>The total value of the charge amounts deducted from the portfolio</p>\n<hr />\n<p><code>income</code> array</p>\n<p>Contains details of income on the portfolio, which includes dividends and interest</p>\n<hr />\n<p><code>income.transactions</code> array</p>\n<p>Contains details of income transactions</p>\n<hr />\n<p><code>income.transactions.transactionId</code></p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>income.transactions.transactionCode</code></p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>income.transactions.narrative</code></p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>income.transactions.postDate</code></p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>income.transactions.valueDate</code></p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>income.transactions.information</code> array</p>\n<p>Information that relates to dividend payments</p>\n<hr />\n<p><code>income.transactions.information.originalInstrumentName</code></p>\n<p>The original name of the instrument</p>\n<hr />\n<p><code>income.transactions.information.originalIsin</code></p>\n<p>The original ISIN of the instrument</p>\n<hr />\n<p><code>income.transactions.information.eventPayDate</code></p>\n<p>The date the dividend payment was paid out</p>\n<hr />\n<p><code>income.transaction.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>income.total</code> float</p>\n<p>The amount of income transactions</p>\n<hr />\n<p><code>transfers</code> array</p>\n<p>Contains details of transfers in the portfolio</p>\n<hr />\n<p><code>transfers.transactionsIn</code> array</p>\n<p>Contains details of transfers in transactions</p>\n<hr />\n<p><code>transfers.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsIn.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut</code> array</p>\n<p>Contains details of transfers out transactions</p>\n<hr />\n<p><code>transfers.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>transfers.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>transfers.totalIn</code> float</p>\n<p>The total value of the transfer in transactions</p>\n<hr />\n<p><code>transfers.totalOut</code> float</p>\n<p>The total value of the transfer out transactions</p>\n<hr />\n<p><code>internalTransfers</code> array</p>\n<p>Contains details of internal cash transfers between investment accounts</p>\n<hr />\n<p><code>internalTransfers.transactionsIn</code> array</p>\n<p>Contains details of internal cash transfers in</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.transactionCode</code></p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.narrative</code></p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>internalTransfers.transactionsIn.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut</code> array</p>\n<p>Contains details of internal cash transfers out</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.subscriptionAmount</code> float</p>\n<p>The amount the transaction impacted the client's subscription allowance for JISAs or ISAs</p>\n<hr />\n<p><code>internalTransfers.transactionsOut.amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>internalTransfers.totalIn</code> float</p>\n<p>The total value of the transfer in transactions</p>\n<hr />\n<p><code>internalTransfers.totalOut</code> float</p>\n<p>The total value of the transfer out transactions</p>\n<hr />\n<p><code>performance</code> array</p>\n<p>Contains details of asset holdings in the portfolio</p>\n<hr />\n<p><code>performance.transactionsRealised</code> array</p>\n<p>Contains details of transactions realised in the portfolio</p>\n<hr />\n<p><code>performance.transactionsRealised.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.postDate</code> numerical string</p>\n<p>The completed date of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.valueDate</code> numerical string</p>\n<p>The created date of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.quantity</code> float</p>\n<p>The number of units transacted</p>\n<hr />\n<p><code>performance.transactionsRealised.value</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>performance.transactionsRealised.profitLoss</code> float</p>\n<p>The value of the profit or loss since book cost</p>\n<hr />\n<p><code>performance.transactionsRealised.adjustedProfitLoss</code> float</p>\n<p>The value of the profit or loss since asset on platform</p>\n<hr />\n<p><code>performance.transactionsRealised.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>performance.transactionsRealised.transferBookValue</code> float</p>\n<p>The book cost since the in-specie transfer settled</p>\n<hr />\n<p><code>performance.transactionsRealised.nonTransferBookValue</code> float</p>\n<p>The book cost since the in-specie transfer settled</p>\n<hr />\n<p><code>performance.positionsRetained</code> array</p>\n<p>Contains a summary of positions retained within the portfolio</p>\n<hr />\n<p><code>performance.positionsRetained.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>performance.positionsRetained.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>performance.positionsRetained.quantity</code> float</p>\n<p>The number of units held in the asset</p>\n<hr />\n<p><code>performance.positionsRetained.bookValue</code> float</p>\n<p>The book cost of the holding</p>\n<hr />\n<p><code>performance.positionsRetained.transferBookValue</code> float</p>\n<p>The book cost of the holding since the transfer settled</p>\n<hr />\n<p><code>performance.positionsRetained.currentValue</code> float</p>\n<p>The current value of the holding. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>peformance.positionsRetained.growth</code> float</p>\n<p>The growth of the holding since on the platform</p>\n<hr />\n<p><code>performance.positionsRetained.adjustedGrowth</code> float</p>\n<p>The growth of the holding since the book cost</p>\n<hr />\n<p><code>performance.totalRealised</code> float</p>\n<p>The sum of the value of realised holdings</p>\n<hr />\n<p><code>performance.totalRetained</code> float</p>\n<p>The sum of the current value of retained holdings</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The opening value of the account. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>closingValue</code> float</p>\n<p>The closing value of the account. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n","urlObject":{"path":["account","report","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"fromDate","value":"YYYY-MM-DD"},{"disabled":true,"key":"toDate","value":"YYYY-MM-DD"}],"variable":[]}},"response":[{"id":"29ce126f-80a4-4984-853e-25ad10497fa4","name":"Retrieve the account report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/account/report/{{firmId}}/{{accountId}}","host":["{{apiRoute}}"],"path":["account","report","{{firmId}}","{{accountId}}"],"query":[{"key":"fromDate","value":"YYYY-MM-DD","disabled":true},{"key":"toDate","value":"YYYY-MM-DD","disabled":true}]}},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"031B7H5\",\n        \"name\": \"My Savings\",\n        \"firmId\": \"SECCI\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"wrapperType\": \"ISA\",\n        \"payments\": {\n            \"transactionsIn\": [\n                {\n                    \"transactionId\": \"0005DHPRJ\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-08-28T14:30:36.311Z\",\n                    \"valueDate\": \"2024-08-28T00:00:00.000Z\",\n                    \"subscriptionAmount\": 100,\n                    \"amount\": 100\n                },\n                {\n                    \"transactionId\": \"0005BHSHM\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-09-05T16:45:12.983Z\",\n                    \"valueDate\": \"2024-09-05T00:00:00.000Z\",\n                    \"subscriptionAmount\": 100,\n                    \"amount\": 100\n                },\n                {\n                    \"transactionId\": \"0005F6C69\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-09-13T18:33:52.836Z\",\n                    \"valueDate\": \"2024-09-13T00:00:00.000Z\",\n                    \"subscriptionAmount\": 25,\n                    \"amount\": 25\n                },\n                {\n                    \"transactionId\": \"0005S6PHS\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-10-28T20:37:37.722Z\",\n                    \"valueDate\": \"2024-10-28T00:00:00.000Z\",\n                    \"subscriptionAmount\": 200,\n                    \"amount\": 200\n                },\n                {\n                    \"transactionId\": \"00065M738\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-12-01T06:53:03.316Z\",\n                    \"valueDate\": \"2024-12-01T00:00:00.000Z\",\n                    \"subscriptionAmount\": 50,\n                    \"amount\": 50\n                },\n                {\n                    \"transactionId\": \"00069DPG3\",\n                    \"transactionCode\": \"CPIN\",\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2024-12-21T21:46:15.787Z\",\n                    \"valueDate\": \"2024-12-21T00:00:00.000Z\",\n                    \"subscriptionAmount\": 100,\n                    \"amount\": 100\n                },\n                {\n                    \"transactionId\": \"0006D51LR\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2024-12-31T00:00:00.000Z\",\n                    \"valueDate\": \"2024-12-31T00:00:00.000Z\",\n                    \"executionTime\": \"2024-12-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.91,\n                    \"value\": 0.52,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Artemis Income I Acc\",\n                        \"originalIsin\": \"GB00B2PLJH12\",\n                        \"equalisationAmountPayCy\": 0.52,\n                        \"eventPayDate\": \"2024-12-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2024-11-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"transactionId\": \"000755RQ3\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2025-03-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-03-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-03-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.13,\n                    \"value\": 0.13,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Rathbone Global Opportunities Fund Class I Acc\",\n                        \"originalIsin\": \"GB00B7FQLN12\",\n                        \"equalisationAmountPayCy\": 0.13,\n                        \"eventPayDate\": \"2025-03-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-02-03T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 25,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-04-29T17:40:44.001Z\",\n                    \"subscriptionAmount\": 25,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"0007B6HMP\",\n                    \"valueDate\": \"2025-04-29T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 25,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-05-23T22:57:06.187Z\",\n                    \"subscriptionAmount\": 25,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"0007H2B66\",\n                    \"valueDate\": \"2025-05-23T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"0007KHKBN\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2025-05-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-05-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-05-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.46,\n                    \"value\": 0.05,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                        \"originalIsin\": \"GB00BYWQWW93\",\n                        \"equalisationAmountPayCy\": 0.05,\n                        \"eventPayDate\": \"2025-05-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-04-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 25,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-06-26T17:25:04.897Z\",\n                    \"subscriptionAmount\": 25,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"0007R55F7\",\n                    \"valueDate\": \"2025-06-26T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 25,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-06-26T17:54:08.627Z\",\n                    \"subscriptionAmount\": 25,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"0007R15G7\",\n                    \"valueDate\": \"2025-06-26T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 50,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-07-26T07:04:06.416Z\",\n                    \"subscriptionAmount\": 50,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"000876BRH\",\n                    \"valueDate\": \"2025-07-26T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 25,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-08-25T07:05:46.344Z\",\n                    \"subscriptionAmount\": 25,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"0008GK8GJ\",\n                    \"valueDate\": \"2025-08-25T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 50,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-09-29T19:50:12.826Z\",\n                    \"subscriptionAmount\": 50,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"00097RCPP\",\n                    \"valueDate\": \"2025-09-29T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"0009J12B9\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2025-10-10T00:00:00.000Z\",\n                    \"valueDate\": \"2025-10-10T00:00:00.000Z\",\n                    \"executionTime\": \"2025-10-10T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.17,\n                    \"value\": 0.08,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"L&G Global Technology Index Trust Institutional Acc\",\n                        \"originalIsin\": \"GB00B0CNH163\",\n                        \"equalisationAmountPayCy\": 0.08,\n                        \"eventPayDate\": \"2025-10-10T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-08-11T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 35,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-10-23T18:43:05.409Z\",\n                    \"subscriptionAmount\": 35,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"000B1M583\",\n                    \"valueDate\": \"2025-10-23T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"000CFKS5J\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2025-11-30T00:00:00.000Z\",\n                    \"valueDate\": \"2025-11-30T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-30T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.5,\n                    \"value\": 0.18,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                        \"originalIsin\": \"GB00BYWQWW93\",\n                        \"equalisationAmountPayCy\": 0.18,\n                        \"eventPayDate\": \"2025-11-30T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-10-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 100,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2025-12-23T22:31:46.164Z\",\n                    \"subscriptionAmount\": 100,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"000CP69NB\",\n                    \"valueDate\": \"2025-12-23T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"000D42G15\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Equalisation payment - Notional\",\n                    \"postDate\": \"2025-12-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-12-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-12-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 2.55,\n                    \"value\": 0.82,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Artemis Income I Acc\",\n                        \"originalIsin\": \"GB00B2PLJH12\",\n                        \"equalisationAmountPayCy\": 0.82,\n                        \"eventPayDate\": \"2025-12-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-11-03T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 50,\n                    \"narrative\": \"Client Payment\",\n                    \"postDate\": \"2026-01-23T21:37:58.613Z\",\n                    \"subscriptionAmount\": 50,\n                    \"transactionCode\": \"CPIN\",\n                    \"transactionId\": \"000DN3C6P\",\n                    \"valueDate\": \"2026-01-23T00:00:00.000Z\"\n                }\n            ],\n            \"transactionsOut\": [\n                {\n                    \"transactionId\": \"0005S74HG\",\n                    \"transactionCode\": \"CPOU\",\n                    \"narrative\": \"Withdrawal\",\n                    \"postDate\": \"2024-11-01T02:24:19.864Z\",\n                    \"valueDate\": \"2024-11-01T00:00:00.000Z\",\n                    \"subscriptionAmount\": -200,\n                    \"amount\": -200\n                },\n                {\n                    \"transactionId\": \"0006D88J6\",\n                    \"transactionCode\": \"CPOU\",\n                    \"narrative\": \"Withdrawal\",\n                    \"postDate\": \"2025-01-13T04:34:24.682Z\",\n                    \"valueDate\": \"2025-01-13T00:00:00.000Z\",\n                    \"subscriptionAmount\": -145,\n                    \"amount\": -145\n                },\n                {\n                    \"amount\": -80,\n                    \"narrative\": \"Withdrawal\",\n                    \"postDate\": \"2025-06-19T00:04:13.772Z\",\n                    \"subscriptionAmount\": -80,\n                    \"transactionCode\": \"CPOU\",\n                    \"transactionId\": \"0007N9CM2\",\n                    \"valueDate\": \"2025-06-19T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -153.06,\n                    \"narrative\": \"Withdrawal\",\n                    \"postDate\": \"2025-12-02T04:33:26.401Z\",\n                    \"subscriptionAmount\": -153.06,\n                    \"transactionCode\": \"CPOU\",\n                    \"transactionId\": \"000BRM431\",\n                    \"valueDate\": \"2025-12-02T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -50.07,\n                    \"narrative\": \"Withdrawal\",\n                    \"postDate\": \"2026-01-09T04:44:22.614Z\",\n                    \"subscriptionAmount\": -50.07,\n                    \"transactionCode\": \"CPOU\",\n                    \"transactionId\": \"000D3LQMK\",\n                    \"valueDate\": \"2026-01-09T00:00:00.000Z\"\n                }\n            ],\n            \"totalIn\": 986.78,\n            \"totalOut\": -628.13\n        },\n        \"charges\": {\n            \"transactions\": [\n                {\n                    \"transactionId\": \"00062B572\",\n                    \"transactionCode\": \"PFOF\",\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2024-11-11T15:26:29.324Z\",\n                    \"valueDate\": \"2024-11-11T00:00:00.000Z\",\n                    \"amount\": -0.01\n                },\n                {\n                    \"transactionId\": \"0006DLJLD\",\n                    \"transactionCode\": \"PFOF\",\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-01-10T14:22:31.336Z\",\n                    \"valueDate\": \"2025-01-10T00:00:00.000Z\",\n                    \"amount\": -0.01\n                },\n                {\n                    \"transactionId\": \"0006M3K3S\",\n                    \"transactionCode\": \"PFOF\",\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-02-10T15:12:30.929Z\",\n                    \"valueDate\": \"2025-02-10T00:00:00.000Z\",\n                    \"amount\": -0.01\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-06-10T09:09:40.098Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"0007L24LN\",\n                    \"valueDate\": \"2025-06-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-07-10T15:11:03.959Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"0008397MB\",\n                    \"valueDate\": \"2025-07-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-08-11T16:54:06.752Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"0008CJJ84\",\n                    \"valueDate\": \"2025-08-11T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-09-10T17:47:18.398Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"0008P8CHD\",\n                    \"valueDate\": \"2025-09-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-10-10T17:29:32.690Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"0009LFNJ9\",\n                    \"valueDate\": \"2025-10-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-11-10T21:56:48.747Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"000BH8P23\",\n                    \"valueDate\": \"2025-11-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2025-12-11T15:00:58.953Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"000CDSF25\",\n                    \"valueDate\": \"2025-12-10T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": -0.01,\n                    \"narrative\": \"Platform Monthly Fee\",\n                    \"postDate\": \"2026-01-13T14:32:40.061Z\",\n                    \"transactionCode\": \"PFOF\",\n                    \"transactionId\": \"000DD3SLP\",\n                    \"valueDate\": \"2026-01-12T00:00:00.000Z\"\n                }\n            ],\n            \"total\": -0.11\n        },\n        \"retainedInterest\": {\n            \"transactions\": [],\n            \"total\": 0\n        },\n        \"income\": {\n            \"transactions\": [\n                {\n                    \"transactionId\": \"0005J739N\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2024-09-23T16:35:52.333Z\",\n                    \"valueDate\": \"2024-09-23T00:00:00.000Z\",\n                    \"amount\": 0.18\n                },\n                {\n                    \"transactionId\": \"0005RMQPS\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2024-10-23T16:44:52.572Z\",\n                    \"valueDate\": \"2024-10-23T00:00:00.000Z\",\n                    \"amount\": 0.22\n                },\n                {\n                    \"transactionId\": \"000653531\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2024-11-25T18:50:05.120Z\",\n                    \"valueDate\": \"2024-11-25T00:00:00.000Z\",\n                    \"amount\": 0.19\n                },\n                {\n                    \"transactionId\": \"00065P883\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend\",\n                    \"postDate\": \"2024-11-30T00:00:00.000Z\",\n                    \"valueDate\": \"2024-11-30T00:00:00.000Z\",\n                    \"executionTime\": \"2024-11-30T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.37,\n                    \"value\": 0.37,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                        \"originalIsin\": \"GB00BYWQWW93\",\n                        \"equalisationAmountPayCy\": 0,\n                        \"eventPayDate\": \"2024-11-30T00:00:00.000Z\",\n                        \"eventExDate\": \"2024-10-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"transactionId\": \"00069N9HB\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2024-12-23T17:48:49.706Z\",\n                    \"valueDate\": \"2024-12-23T00:00:00.000Z\",\n                    \"amount\": 0.15\n                },\n                {\n                    \"transactionId\": \"0006D51LR\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2024-12-31T00:00:00.000Z\",\n                    \"valueDate\": \"2024-12-31T00:00:00.000Z\",\n                    \"executionTime\": \"2024-12-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.91,\n                    \"value\": 0.39,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Artemis Income I Acc\",\n                        \"originalIsin\": \"GB00B2PLJH12\",\n                        \"equalisationAmountPayCy\": 0.52,\n                        \"eventPayDate\": \"2024-12-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2024-11-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"transactionId\": \"0006J7P7P\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-01-23T17:33:23.494Z\",\n                    \"valueDate\": \"2025-01-23T00:00:00.000Z\",\n                    \"amount\": 0.42\n                },\n                {\n                    \"transactionId\": \"0006P4J8K\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-02-24T17:51:10.664Z\",\n                    \"valueDate\": \"2025-02-24T00:00:00.000Z\",\n                    \"amount\": 0.07\n                },\n                {\n                    \"transactionId\": \"00073GFR2\",\n                    \"transactionCode\": \"PINT\",\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-03-24T18:06:43.860Z\",\n                    \"valueDate\": \"2025-03-24T00:00:00.000Z\",\n                    \"amount\": 0.02\n                },\n                {\n                    \"transactionId\": \"000755RQ3\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2025-03-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-03-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-03-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.13,\n                    \"value\": 0,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Rathbone Global Opportunities Fund Class I Acc\",\n                        \"originalIsin\": \"GB00B7FQLN12\",\n                        \"equalisationAmountPayCy\": 0.13,\n                        \"eventPayDate\": \"2025-03-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-02-03T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 0.02,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-04-28T17:14:09.998Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"00079NJPP\",\n                    \"valueDate\": \"2025-04-28T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"0007KHKBN\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2025-05-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-05-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-05-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.46,\n                    \"value\": 0.41000000000000003,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                        \"originalIsin\": \"GB00BYWQWW93\",\n                        \"equalisationAmountPayCy\": 0.05,\n                        \"eventPayDate\": \"2025-05-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-04-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 0.03,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-06-23T14:03:50.193Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"0007PMS94\",\n                    \"valueDate\": \"2025-06-23T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 0.03,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-06-23T17:50:01.141Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"0007QH2FJ\",\n                    \"valueDate\": \"2025-06-23T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"0008182N8\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend\",\n                    \"postDate\": \"2025-06-30T00:00:00.000Z\",\n                    \"valueDate\": \"2025-06-30T00:00:00.000Z\",\n                    \"executionTime\": \"2025-06-30T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.99,\n                    \"value\": 0.99,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Artemis Income I Acc\",\n                        \"originalIsin\": \"GB00B2PLJH12\",\n                        \"equalisationAmountPayCy\": 0,\n                        \"eventPayDate\": \"2025-06-30T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-05-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 0.03,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-07-24T11:22:07.637Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"00085S9RR\",\n                    \"valueDate\": \"2025-07-23T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 0.03,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-08-28T10:31:28.964Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"0008HDG61\",\n                    \"valueDate\": \"2025-08-28T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 0.02,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-09-23T13:57:04.911Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"00094MH5B\",\n                    \"valueDate\": \"2025-09-23T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"0009J12B9\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2025-10-10T00:00:00.000Z\",\n                    \"valueDate\": \"2025-10-10T00:00:00.000Z\",\n                    \"executionTime\": \"2025-10-10T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.17,\n                    \"value\": 0.09000000000000001,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"L&G Global Technology Index Trust Institutional Acc\",\n                        \"originalIsin\": \"GB00B0CNH163\",\n                        \"equalisationAmountPayCy\": 0.08,\n                        \"eventPayDate\": \"2025-10-10T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-08-11T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 0.03,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-10-23T10:52:21.711Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"000B1F5KH\",\n                    \"valueDate\": \"2025-10-23T00:00:00.000Z\"\n                },\n                {\n                    \"amount\": 0.02,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2025-11-24T17:46:03.061Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"000BQHDKQ\",\n                    \"valueDate\": \"2025-11-24T00:00:00.000Z\"\n                },\n                {\n                    \"transactionId\": \"000CFKS5J\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2025-11-30T00:00:00.000Z\",\n                    \"valueDate\": \"2025-11-30T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-30T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 0.5,\n                    \"value\": 0.32,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                        \"originalIsin\": \"GB00BYWQWW93\",\n                        \"equalisationAmountPayCy\": 0.18,\n                        \"eventPayDate\": \"2025-11-30T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-10-01T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"transactionId\": \"000D42G15\",\n                    \"transactionCode\": \"MPDV\",\n                    \"narrative\": \"Notional - Accumulation Dividend (net of equalisation payment)\",\n                    \"postDate\": \"2025-12-31T00:00:00.000Z\",\n                    \"valueDate\": \"2025-12-31T00:00:00.000Z\",\n                    \"executionTime\": \"2025-12-31T00:00:00.000Z\",\n                    \"reversal\": false,\n                    \"amount\": 2.55,\n                    \"value\": 1.73,\n                    \"quantity\": 0,\n                    \"information\": {\n                        \"originalInstrumentName\": \"Artemis Income I Acc\",\n                        \"originalIsin\": \"GB00B2PLJH12\",\n                        \"equalisationAmountPayCy\": 0.82,\n                        \"eventPayDate\": \"2025-12-31T00:00:00.000Z\",\n                        \"eventExDate\": \"2025-11-03T00:00:00.000Z\"\n                    }\n                },\n                {\n                    \"amount\": 0.08,\n                    \"narrative\": \"Interest\",\n                    \"postDate\": \"2026-01-23T15:06:56.623Z\",\n                    \"transactionCode\": \"PINT\",\n                    \"transactionId\": \"000DM6C19\",\n                    \"valueDate\": \"2026-01-23T00:00:00.000Z\"\n                }\n            ],\n            \"total\": 5.84\n        },\n        \"transfers\": {\n            \"transactionsIn\": [],\n            \"transactionsOut\": [],\n            \"totalIn\": 0,\n            \"totalOut\": 0\n        },\n        \"internalTransfers\": {\n            \"transactionsIn\": [],\n            \"transactionsOut\": [],\n            \"totalIn\": 0,\n            \"totalOut\": 0\n        },\n        \"performance\": {\n            \"transactionsRealised\": [\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-08-12T13:20:48.010Z\",\n                    \"quantity\": -6.35,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"0008CMCG5\",\n                    \"value\": -29.86,\n                    \"valueDate\": \"2025-08-12T00:00:00.000Z\",\n                    \"executionTime\": \"2025-08-12T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 1.49,\n                    \"profitLoss\": 1.49,\n                    \"bookValue\": -28.37,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -28.37\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-11-27T16:21:41.845Z\",\n                    \"quantity\": -3.13,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000BR97PN\",\n                    \"value\": -15.14,\n                    \"valueDate\": \"2025-11-27T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-27T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.96,\n                    \"profitLoss\": 0.96,\n                    \"bookValue\": -14.18,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -14.18\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2026-01-06T14:35:47.372Z\",\n                    \"quantity\": -3.16,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000D35QSK\",\n                    \"value\": -15.01,\n                    \"valueDate\": \"2026-01-06T00:00:00.000Z\",\n                    \"executionTime\": \"2026-01-06T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.69,\n                    \"profitLoss\": 0.69,\n                    \"bookValue\": -14.32,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -14.32\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-06-16T17:02:13.920Z\",\n                    \"quantity\": -50.106,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"0007N1QFH\",\n                    \"value\": -50.09,\n                    \"valueDate\": \"2025-06-16T00:00:00.000Z\",\n                    \"executionTime\": \"2025-06-16T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.37,\n                    \"profitLoss\": 0.37,\n                    \"bookValue\": -49.72,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -49.72\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-11-27T18:15:38.914Z\",\n                    \"quantity\": -13.182,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000BR97PP\",\n                    \"value\": -15.19,\n                    \"valueDate\": \"2025-11-27T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-27T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 1.26,\n                    \"profitLoss\": 1.26,\n                    \"bookValue\": -13.93,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -13.93\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2026-01-06T17:55:09.931Z\",\n                    \"quantity\": -12.976,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000D35QSL\",\n                    \"value\": -15.05,\n                    \"valueDate\": \"2026-01-06T00:00:00.000Z\",\n                    \"executionTime\": \"2026-01-06T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.85,\n                    \"profitLoss\": 0.85,\n                    \"bookValue\": -14.2,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -14.2\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-11-27T14:45:50.236Z\",\n                    \"quantity\": -3.667,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000BR97PQ\",\n                    \"value\": -30.66,\n                    \"valueDate\": \"2025-11-27T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-27T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 2.45,\n                    \"profitLoss\": 2.45,\n                    \"bookValue\": -28.21,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -28.21\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-12-11T15:00:58.642Z\",\n                    \"quantity\": -0.001,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000CDSF27\",\n                    \"value\": -0.01,\n                    \"valueDate\": \"2025-12-11T00:00:00.000Z\",\n                    \"executionTime\": \"2025-12-11T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0,\n                    \"profitLoss\": 0,\n                    \"bookValue\": -0.01,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -0.01\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2026-01-06T14:53:18.594Z\",\n                    \"quantity\": -1.171,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000D35QSM\",\n                    \"value\": -10.07,\n                    \"valueDate\": \"2026-01-06T00:00:00.000Z\",\n                    \"executionTime\": \"2026-01-06T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.85,\n                    \"profitLoss\": 0.85,\n                    \"bookValue\": -9.22,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -9.22\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2026-01-13T14:32:39.669Z\",\n                    \"quantity\": -0.001,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000DD3SMC\",\n                    \"value\": -0.01,\n                    \"valueDate\": \"2026-01-13T00:00:00.000Z\",\n                    \"executionTime\": \"2026-01-13T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0,\n                    \"profitLoss\": 0,\n                    \"bookValue\": -0.01,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -0.01\n                },\n                {\n                    \"transactionId\": \"00061B8MR\",\n                    \"transactionCode\": \"SELL\",\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2024-11-11T14:32:08.790Z\",\n                    \"valueDate\": \"2024-11-11T00:00:00.000Z\",\n                    \"quantity\": -17.3226,\n                    \"value\": -49.64,\n                    \"executionTime\": \"2024-11-11T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": -0.36,\n                    \"profitLoss\": -0.36,\n                    \"bookValue\": -50,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -50\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-06-16T17:03:10.695Z\",\n                    \"quantity\": -17.212,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"0007N1QFJ\",\n                    \"value\": -30.08,\n                    \"valueDate\": \"2025-06-16T00:00:00.000Z\",\n                    \"executionTime\": \"2025-06-16T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.66,\n                    \"profitLoss\": 0.66,\n                    \"bookValue\": -29.42,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -29.42\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-11-27T18:15:28.785Z\",\n                    \"quantity\": -27.625,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000BR97PR\",\n                    \"value\": -61.02,\n                    \"valueDate\": \"2025-11-27T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-27T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 9.01,\n                    \"profitLoss\": 9.01,\n                    \"bookValue\": -52.01,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -52.01\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2025-11-27T18:15:28.975Z\",\n                    \"quantity\": -13.813,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000BR983P\",\n                    \"value\": -30.51,\n                    \"valueDate\": \"2025-11-27T00:00:00.000Z\",\n                    \"executionTime\": \"2025-11-27T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 4.51,\n                    \"profitLoss\": 4.51,\n                    \"bookValue\": -26,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -26\n                },\n                {\n                    \"narrative\": \"Sell\",\n                    \"postDate\": \"2026-01-06T17:55:03.709Z\",\n                    \"quantity\": -4.501,\n                    \"transactionCode\": \"SELL\",\n                    \"transactionId\": \"000D35QSN\",\n                    \"value\": -9.94,\n                    \"valueDate\": \"2026-01-06T00:00:00.000Z\",\n                    \"executionTime\": \"2026-01-06T12:00:00.000Z\",\n                    \"adjustedProfitLoss\": 0.94,\n                    \"profitLoss\": 0.94,\n                    \"bookValue\": -9,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": -9\n                }\n            ],\n            \"positionsRetained\": [\n                {\n                    \"isin\": \"GB00B7FQLN12\",\n                    \"assetName\": \"Rathbone Global Opportunities Fund Class I Acc\",\n                    \"quantity\": 14.59,\n                    \"bookValue\": 66.13,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 66.13,\n                    \"currentValue\": 67.26,\n                    \"growth\": 1.13,\n                    \"adjustedGrowth\": 1.13\n                },\n                {\n                    \"isin\": \"GB00BYWQWW93\",\n                    \"assetName\": \"Legal & General Future World ESG Developed Index Fund I GBP Acc\",\n                    \"quantity\": 76.1,\n                    \"bookValue\": 83.25,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 83.25,\n                    \"currentValue\": 86.83,\n                    \"growth\": 3.58,\n                    \"adjustedGrowth\": 3.58\n                },\n                {\n                    \"isin\": \"GB00B2PLJH12\",\n                    \"assetName\": \"Artemis Income I Acc\",\n                    \"quantity\": 20.745,\n                    \"bookValue\": 165.66,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 165.66,\n                    \"currentValue\": 180.35,\n                    \"growth\": 14.69,\n                    \"adjustedGrowth\": 14.69\n                },\n                {\n                    \"isin\": \"GB0007450884\",\n                    \"assetName\": \"Kames Ethical Equity B Acc\",\n                    \"quantity\": 0,\n                    \"bookValue\": 0,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 0,\n                    \"currentValue\": 0,\n                    \"growth\": 0,\n                    \"adjustedGrowth\": 0\n                },\n                {\n                    \"isin\": \"GB00B0CNH163\",\n                    \"assetName\": \"L&G Global Technology Index Trust Institutional Acc\",\n                    \"quantity\": 34.778,\n                    \"bookValue\": 71.24,\n                    \"transferBookValue\": 0,\n                    \"nonTransferBookValue\": 71.24,\n                    \"currentValue\": 73.76,\n                    \"growth\": 2.52,\n                    \"adjustedGrowth\": 2.52\n                }\n            ],\n            \"totalRealised\": 23.68,\n            \"totalRetained\": 21.92\n        },\n        \"openingValue\": 0,\n        \"closingValue\": 408.2\n    }\n}"}],"_postman_id":"56dc6f99-10e4-4d96-815b-ff066ae3c899"},{"name":"List account summaries","id":"4d1a3ccb-6c6b-415b-9091-6c2af391c11d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/account/list/{{firmId}}","description":"<p>Returns the account objects for all investment accounts on the platform</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>firmId</code></p>\n<p>The unique identifier of the firm</p>\n<hr />\n<p><code>nodeId</code> array</p>\n<p>The unique node identifier that the client record is attached to</p>\n<hr />\n<p><code>name</code></p>\n<p>The full name of the client, including title, first name and surname</p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>wrapperType</code> enum value</p>\n<p>The wrapper type of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>JISA</code></td>\n<td>Junior Individual Savings Account</td>\n</tr>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>PENSION</code></td>\n<td>Pension</td>\n</tr>\n<tr>\n<td><code>TPPENSION</code></td>\n<td>Third-party pension</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail</code></p>\n<p>Contains details of the investment account</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<p>Contains details of any recurring payments on the account</p>\n<hr />\n<p><code>recurringOrders</code> array</p>\n<p>Contains details of any recurring order allocation on the account</p>\n<hr />\n<p><code>status</code> enum value</p>\n<p>The status of the account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted the product terms and declarations</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client hasn't accepted the product terms or declarations</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>clientId</code></p>\n<p>The unique identifier of the client account</p>\n<hr />\n<p><code>positions</code> array</p>\n<p>Contains a summary of the individual cash and asset positions within the portfolio</p>\n<hr />\n<p><code>positions.postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>positions.assetId</code> string</p>\n<p>The unique identifier of the of asset</p>\n<hr />\n<p><code>positions.assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>positions.quantity</code> float</p>\n<p>The number of units in the holding</p>\n<hr />\n<p><code>positions.bookValue</code> float</p>\n<p>The book value of the holding (cost of purchasing the holding) since inception</p>\n<hr />\n<p><code>positions.transferBookValue</code> float</p>\n<p>The number of units multiplied by the price on the day the transfer settled – this will be the same as the <code>positions.bookValue</code> if there's been no in-specie transfer</p>\n<hr />\n<p><code>positions.nonTransferBookValue</code> float</p>\n<p>The book cost since the transfer settled</p>\n<hr />\n<p><code>positions.openingValue</code> float</p>\n<p>The opening value of the account. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>positions.currentValue</code> float</p>\n<p>The current value of the account. If no date parameters are provided, this will show as today's date</p>\n<hr />\n<p><code>positions.growth</code> float</p>\n<p>The growth since the book cost</p>\n<hr />\n<p><code>positions.adjustedGrowth</code> float</p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>positions.currency</code> enum value</p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>positions.growthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>positions.adjustedGrowthPercent</code> float</p>\n<p>The growth since the book cost as percentage</p>\n<hr />\n<p><code>positions.currentPrice</code> float</p>\n<p>The current price of the asset. This is the <code>ask</code> of the latest price in the system</p>\n<hr />\n<p><code>positions.currentPriceDate</code> string</p>\n<p>The date of the current price in the system</p>\n<hr />\n<p><code>positions.minimumTransferUnit</code> float</p>\n<p>The number of decimal places the assets can be held</p>\n<hr />\n<p><code>positions.allocation</code> float</p>\n<p>The percentage allocation of the holding within the investment account</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The sum of the <code>positions.bookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>nonTransferBookValue</code> float</p>\n<p>The sum of the <code>positions.nonTransferBookValue</code> in the <code>positions</code> array</p>\n<hr />\n<p><code>openingValue</code> float</p>\n<p>The opening value of the account. If no date parameters are provided, this will show as 0</p>\n<hr />\n<p><code>currentValue</code> float</p>\n<p>The current value of the account. If no date parameters are provided, this will show as of today's date</p>\n<hr />\n<p><code>uninvestedCash</code> float</p>\n<p>The amount of cash in the account</p>\n<hr />\n<p><code>closingCashValue</code> float</p>\n<p>The amount of cash in the account</p>\n<hr />\n<p><code>growth</code> float</p>\n<p>The growth since book costs</p>\n<hr />\n<p><code>adjustedGrowth</code> float</p>\n<p>The growth since assets on platform</p>\n<hr />\n<p><code>growthPercent</code> float</p>\n<p>The growth since book costs as percentage</p>\n<hr />\n<p><code>adjustedGrowthPercent</code> float</p>\n<p>The growth since assets on platform as percentage</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The sum of the <code>transferValue</code> within the <code>positions</code> array</p>\n<hr />\n","urlObject":{"path":["account","list","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d1a3ccb-6c6b-415b-9091-6c2af391c11d"}],"id":"4eebcde6-efd7-4497-b510-f76f4f4ad48e","description":"<p>Clients can have one or more accounts. These accounts can be linked to various product types supported by Seccl, such as ISAs, pensions, or standard trading accounts.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"b0de7fb4-b43b-48fd-9818-194a496e4117"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"84e0434e-1abc-4b8a-94fa-2b0eba7b8e6a"}}],"_postman_id":"4eebcde6-efd7-4497-b510-f76f4f4ad48e"},{"name":"Position","item":[{"name":"Retrieve the account position","id":"0745b00c-c3e4-4c81-8a7d-a3dcc28dfca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/position/{{firmId}}/{{positionId}}","description":"<p><code>id</code></p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the account</p>\n<hr />\n<p><code>accountName</code></p>\n<p>The name of the account</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of the account. I.e. GIA, ISA, JISA</p>\n<hr />\n<p><code>assetId</code></p>\n<p>The unique identifier for the asset</p>\n<hr />\n<p><code>assetName</code></p>\n<p>The name of the asset</p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Array containing ____</p>\n<hr />\n<p><code>auditDetails.application</code></p>\n<hr />\n<p><code>auditDetails.updateDate</code></p>\n<hr />\n<p><code>auditDetails.userFirmId</code></p>\n<hr />\n<p><code>auditDetail.userId</code></p>\n<hr />\n<p><code>auditDetail.version</code></p>\n<hr />\n<p><code>currency</code></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>positions.isin</code> string</p>\n<p>The ISIN (International Securities Identification Number) of the asset</p>\n<hr />\n<p><code>nodeId</code> float</p>\n<p>The unique node identifier that the client record is attached</p>\n<hr />\n<p><code>postitionType</code> enum value</p>\n<p>The type of position that the values within the array are referring to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>stock</td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td>cash</td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>quantity</code> float</p>\n<p>The number of units in the holding</p>\n<hr />\n<p><code>transactions</code> array</p>\n<p>Array containing information on the transaction</p>\n<hr />\n<p><code>transactions.transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transactions.transactionCode</code> string</p>\n<p>The transaction code of the transaction</p>\n<hr />\n<p><code>transactions.narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>transactions.postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>charges.transactions.valueDate</code> numerical string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>transactions.information</code> array</p>\n<p>Array containing information on the transaction</p>\n<hr />\n<p><code>transactions.information.bookCostAmount</code> float</p>\n<p>Book cost of the transaction</p>\n<hr />\n<p><code>transactions.cgtData</code> array</p>\n<p>Array containing data for CGT calculations</p>\n<hr />\n<p><code>transactions.cgtData.realisedProfitLoss</code> float</p>\n<p>The sum of the difference between the value of assets at the time of disposal and their book cost for all disposals in the date range selected</p>\n<hr />\n<p><code>transactions.cgtData.matches</code> array</p>\n<p>Contains details of matched transactions</p>\n<hr />\n<p><code>transactions.cgtData.matches.matchType</code>string</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>SAME_DAY_MATCH</td>\n<td>Transactions occurring on the same day that are matched</td>\n</tr>\n<tr>\n<td>30_DAY_MATCH</td>\n<td>Transactions occurring within 30 days that are matched</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.cgtData.matches.matchDate</code> float</p>\n<p>Date of matched transactions</p>\n<hr />\n<p><code>transactions.cgtData.matches.matchedUnits</code> float</p>\n<p>Number of units matched</p>\n<hr />\n<p><code>transactions.cgtData.matches.matchedTotalBookValue</code> float</p>\n<p>Total book value of matched units</p>\n<hr />\n<p><code>transactions.cgtData.matches.buyTransactionIds</code> array</p>\n<p>Transaction Ids of the matched buys</p>\n<hr />\n<p><code>transactions.cgtData.matches.sellTransactionId</code> string</p>\n<p>Transaction Ids of the matched sell</p>\n<hr />\n<p><code>disclaimers</code> array</p>\n<p>Array of disclaimers that signal errors or warnings about data inaccuracies or features we do not support</p>\n<hr />\n<p><code>disclaimers.type</code> string</p>\n<p>Type of disclaimer. This constant can be used for mapping purposes</p>\n<hr />\n<p><code>disclaimers.text</code> string</p>\n<p>Text shown when the disclaimer is present</p>\n<hr />\n<p><code>disclaimers.fields</code> array</p>\n<p>Array containing fields affected by the disclaimer present</p>\n<hr />\n<p><code>disclaimers.entity</code>object</p>\n<p>object containing details about entity causing the disclaimer. This is optional at the position level</p>\n<hr />\n<p><code>disclaimers.entity.type</code> string</p>\n<p>The type of entity causing the disclaimer. I.e. position, transaction etc</p>\n<hr />\n<p><code>disclaimers.entity.ids</code> array</p>\n<p>Ids of the entities causing the disclaimer</p>\n","urlObject":{"path":["position","{{firmId}}","{{positionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"85f606e8-bf2d-4e42-b994-64a4ed61718e","name":"Retrieve the account position","originalRequest":{"method":"GET","header":[],"url":""},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"031832C|S|GB00B39J2M42\",\n        \"accountId\": \"031832C\",\n        \"accountName\": \"GIA 4 Stock split\",\n        \"accountType\": \"Wrapper\",\n        \"assetId\": \"2848S\",\n        \"assetName\": \"United Utilities Group PLC\",\n        \"auditDetails\": {\n            \"application\": \"PortfolioProcessor\",\n            \"updateDate\": \"2024-11-18T12:15:33.389Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 1\n        },\n        \"currency\": \"GBP\",\n        \"firmId\": \"SECCI\",\n        \"isin\": \"GB00B39J2M42\",\n        \"nodeId\": \"0\",\n        \"positionType\": \"Stock\",\n        \"quantity\": 300,\n        \"transactions\": [\n            {\n                \"transactionId\": \"0000JBBBN\",\n                \"transactionCode\": \"SPLI\",\n                \"narrative\": \"Stock Split\",\n                \"postDate\": \"2024-11-18T12:15:33.388Z\",\n                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                \"information\": {\n                    \"bookCostAmount\": 441\n                },\n                \"quantity\": 300,\n                \"value\": 441,\n                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                \"adjustedProfitLoss\": 0,\n                \"profitLoss\": 0,\n                \"bookValue\": 441,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 441,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ]\n                    }\n                ]\n            }\n        ],\n        \"updateId\": \"673b2fe582ac9498da3aa46d\",\n        \"instrumentType\": \"Equity\",\n        \"assetInstrumentType\": \"Equity\",\n        \"assetCountryOfIssue\": \"GB\",\n        \"disclaimers\": [\n            {\n                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"bookValue\",\n                    \"profitLoss\",\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"TRANSACTION\",\n                    \"ids\": [\n                        \"0000JBBBN\"\n                    ]\n                }\n            }\n        ],\n        \"bookValue\": 441,\n        \"transferBookValue\": 0,\n        \"nonTransferBookValue\": 441,\n        \"growth\": 0,\n        \"transferValue\": 0,\n        \"currentValue\": 441,\n        \"cgtData\": {\n            \"realisedProfitLoss\": 0,\n            \"unrealisedProfitLoss\": 0\n        },\n        \"openingValue\": 0,\n        \"adjustedGrowth\": 0,\n        \"growthPercent\": 0,\n        \"adjustedGrowthPercent\": 0\n    }\n}"}],"_postman_id":"0745b00c-c3e4-4c81-8a7d-a3dcc28dfca9"}],"id":"5f930698-7ef5-4ce3-8c6e-33005b9f610f","description":"<p>A client's position refers to the current holidings of an asset.</p>\n","_postman_id":"5f930698-7ef5-4ce3-8c6e-33005b9f610f"},{"name":"Cash and stock postings","item":[{"name":"List transaction codes","id":"8ef28f13-7d30-4ed1-a56d-9453026bd2f8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/static/transactiontype","description":"<p>This command returns the transaction types. The transaction codes can be used to filter the <code>/posting/cash</code> and <code>/posting/stock</code> endpoints.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> enum value</p>\n<p>The transaction code</p>\n<hr />\n<p><code>name</code> enum value</p>\n<p>The name of the transaction</p>\n<hr />\n<p><code>transactionType</code> enum value</p>\n<p>The type of transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Cash</td>\n</tr>\n<tr>\n<td>Order</td>\n</tr>\n<tr>\n<td>Notional</td>\n</tr>\n<tr>\n<td>Payment</td>\n</tr>\n<tr>\n<td>Product transfer</td>\n</tr>\n<tr>\n<td>Stock transfer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactionSubType</code> enum value</p>\n<p><code>movementType</code> enum value</p>\n<p>The movement of the cash or assets</p>\n<hr />\n<p><code>accountReportGroup</code> string</p>\n<p>Indicates what category the transaction relates</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Payments In</code></td>\n</tr>\n<tr>\n<td><code>Payments Out</code></td>\n</tr>\n<tr>\n<td><code>Charges</code></td>\n</tr>\n<tr>\n<td><code>Income</code></td>\n</tr>\n<tr>\n<td><code>Transactions Realised</code></td>\n</tr>\n<tr>\n<td><code>Investments Realised in Period</code></td>\n</tr>\n<tr>\n<td><code>Transfers In</code></td>\n</tr>\n<tr>\n<td><code>Transfers Out</code></td>\n</tr>\n<tr>\n<td><code>Internal Transfers Out</code></td>\n</tr>\n<tr>\n<td><code>Internal Transfers In</code></td>\n</tr>\n<tr>\n<td><code>Product Transfers in</code></td>\n</tr>\n<tr>\n<td><code>N/A</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>products</code> array</p>\n<p>Specifies which wrapper types can support the transaction</p>\n<hr />\n<p><code>cgt</code> boolean</p>\n<p>Indicates whether the transaction could impact the client's capital gains tax</p>\n<hr />\n<p><code>subscription</code> boolean</p>\n<p>Indicates whether the transaction impacts the client's annual subscription allowance</p>\n<hr />\n<p><code>allowWithdrawal</code></p>\n<p>Indicates whether the transaction can be withdrawn. This only shows on withdrawal transactions</p>\n<hr />\n","urlObject":{"path":["static","transactiontype"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7de72b74-3572-4f62-872b-d9651904db8e","name":"List transaction codes","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/static/transactiontype"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"16448"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 19 Aug 2022 14:18:02 GMT"},{"key":"x-amzn-RequestId","value":"1f70cc79-b51e-46f8-9291-a04f491151bb"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"16448"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XHVAKEJJjoEFnxg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"4040-idqq1oHe/BaSLw3KvfYO4t1HgV0\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62ff9b9a-2a8d0e80752a13f812fcb0b5;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e3c9babead5fab332ff03e514d113a3c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN50-C2"},{"key":"X-Amz-Cf-Id","value":"CTLrVC9yXxRkMrrcv80rPSFIwHbJ5JOVJNqdknJAgqbBGw-ZSNU9FQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"PEXG\",\n            \"name\": \"Redress Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Redress Payment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"PFOF\",\n            \"name\": \"Platform Monthly Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Platform Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SUBF\",\n            \"name\": \"Subscription Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Subscription Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MINT\",\n            \"name\": \"Asset Interest (Bonds, PIBS, PSBs)\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Asset Interest\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MPDV\",\n            \"name\": \"Dividend\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Dividend\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MPEQ\",\n            \"name\": \"Fund Capital Distribution Equalisation\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Equalisation\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MPFR\",\n            \"name\": \"Fractional Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Fractional Payment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transactions Realised\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MPRD\",\n            \"name\": \"Redemption Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Redemption\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transactions Realised\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CPIN\",\n            \"name\": \"Client Payment\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"CTIN\",\n            \"name\": \"Transfer In\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Transfer\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CTOU\",\n            \"name\": \"Transfer Out\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Transfer\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Transfers Out\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true,\n            \"allowWithdrawal\": true\n        },\n        {\n            \"id\": \"CPOU\",\n            \"name\": \"Withdrawal\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"BUY\",\n            \"name\": \"Buy\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SELL\",\n            \"name\": \"Sell\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Sell\",\n            \"accountReportGroup\": \"Transactions Realised\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"ACST\",\n            \"name\": \"Account cash transfer\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": [\n                \"Internal Transfers Out\",\n                \"Internal Transfers In\"\n            ],\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"MGCI\",\n            \"name\": \"Opening Position\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"MGSI\",\n            \"name\": \"Opening Position\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"MGSM\",\n            \"name\": \"Stock Transfer\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"External\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"ESTO\",\n            \"name\": \"Stock Transfer\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"External\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CVNI\",\n            \"name\": \"Stock Conversion\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Conversion\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CVNO\",\n            \"name\": \"Stock Conversion\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Conversion\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SDVO\",\n            \"name\": \"Stock Subdivision\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Subdivision\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SDVI\",\n            \"name\": \"Stock Subdivision\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Subdivision\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CSLI\",\n            \"name\": \"Stock Consolidation\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Consolidation\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CSLO\",\n            \"name\": \"Stock Consolidation\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Consolidation\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"DMRI\",\n            \"name\": \"Stock Demerger\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Demerger\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"DMRO\",\n            \"name\": \"Stock Demerger\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Demerger\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MGRI\",\n            \"name\": \"Stock Merger\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Merger\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MGRO\",\n            \"name\": \"Stock Merger\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Merger\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SPLI\",\n            \"name\": \"Stock Split\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Split\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SPLO\",\n            \"name\": \"Stock Split\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Split\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"BNII\",\n            \"name\": \"Stock Bonus Issue\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Bonus Issue\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"ADJI\",\n            \"name\": \"Stock Adjustment\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Adjustment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"ADJO\",\n            \"name\": \"Stock Adjustment\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Adjustment\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MSRD\",\n            \"name\": \"Redemption of Stock\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Redemption\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MSRI\",\n            \"name\": \"Re-investment\",\n            \"transactionType\": \"Stock\",\n            \"transactionSubType\": \"Reinvestment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"N/A\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"AFAH\",\n            \"name\": \"Adviser Ongoing Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"AFIF\",\n            \"name\": \"Adviser Initial Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Initial Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"AFOF\",\n            \"name\": \"Adviser ad-hoc Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Adviser Adhoc Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"DFOB\",\n            \"name\": \"Discretionary Management Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Discretionary Management Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"PFAF\",\n            \"name\": \"Product Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Product Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"PFDD\",\n            \"name\": \"Annual Drawdown Fee\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Fee\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Charges\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"PINT\",\n            \"name\": \"Interest\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Interest\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"EMIN\",\n            \"name\": \"Employee Payment\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employee\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"CPDD\",\n            \"name\": \"Initial Withdrawal\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Initial Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false,\n            \"allowWithdrawal\": true\n        },\n        {\n            \"id\": \"HPUF\",\n            \"name\": \"Taxable Withdrawal\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Taxed Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false,\n            \"allowWithdrawal\": true\n        },\n        {\n            \"id\": \"CPUF\",\n            \"name\": \"Tax Free Withdrawal \",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Tax Free Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false,\n            \"allowWithdrawal\": true\n        },\n        {\n            \"id\": \"EPIN\",\n            \"name\": \"Employer Payment\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Employer\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"HPRC\",\n            \"name\": \"Tax Reclaim\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Tax Reclaim\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\",\n                \"GIA\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"HPDC\",\n            \"name\": \"Dividend Tax Reclaim\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Deposit\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"HPOU\",\n            \"name\": \"Tax Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Pension Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"PENSION\",\n                \"TPPENSION\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false,\n            \"allowWithdrawal\": true\n        },\n        {\n            \"id\": \"BUY\",\n            \"name\": \"Buy\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Buy\",\n            \"accountReportGroup\": \"N/a\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SELL\",\n            \"name\": \"Sell\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Raise\",\n            \"accountReportGroup\": \"Investments Realised in Period\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"BUY\",\n            \"name\": \"Limit\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"Limit\",\n            \"movementType\": \"Buy\",\n            \"accountReportGroup\": \"N/a\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"BUY\",\n            \"name\": \"Buy\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"Limit\",\n            \"movementType\": \"Invest\",\n            \"accountReportGroup\": \"N/a\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SELL \",\n            \"name\": \"Sell\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"Limit\",\n            \"movementType\": \"Sell\",\n            \"accountReportGroup\": \"Investments Realised in Period\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SELL \",\n            \"name\": \"Sell\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"Limit\",\n            \"movementType\": \"Raise\",\n            \"accountReportGroup\": \"Investments Realised in Period\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MPCP\",\n            \"name\": \"Capital Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Capital Payment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Income\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"MCLP\",\n            \"name\": \"Call Payment\",\n            \"transactionType\": \"Cash\",\n            \"transactionSubType\": \"Call Payment\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"CPRC\",\n            \"name\": \"Reclaimed Payment\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Reclaimed Payment\",\n            \"movementType\": \"Out\",\n            \"accountReportGroup\": \"Payments Out\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"CPRF\",\n            \"name\": \"Client Referral Payment\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Referral Payment\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Payments In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": true,\n            \"subscription\": true\n        },\n        {\n            \"id\": \"PTIS\",\n            \"name\": \"In Specie Product Transfer In\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Product Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"PTCI\",\n            \"name\": \"Cash Product Transfer In\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Product Transfers In\",\n            \"products\": [\n                \"GIA\",\n                \"ISA\",\n                \"JISA\",\n                \"PENSION\",\n                \"SSAS\",\n                \"TPPENSION\",\n                \"TPOFFBOND\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        },\n        {\n            \"id\": \"SUBA\",\n            \"name\": \"Product Subscription\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Product Subscription\",\n            \"movementType\": \"In\",\n            \"accountReportGroup\": \"Product Transfers In\",\n            \"products\": [\n                \"ISA\",\n                \"JISA\"\n            ],\n            \"cgt\": false,\n            \"subscription\": false\n        }\n    ]\n}"}],"_postman_id":"8ef28f13-7d30-4ed1-a56d-9453026bd2f8"},{"name":"List cash postings","id":"962b53c1-cbeb-4012-9b7e-c2e5041ff750","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/cash/{{firmId}}","description":"<p>This command returns the cash posting objects.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node</p>\n<hr />\n<p><code>accountId</code> alphanumerical string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO code</p>\n<hr />\n<p><code>positionType</code> string</p>\n<p>This will be set to <code>Cash</code></p>\n<hr />\n<p><code>transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transactionCode</code> string</p>\n<p>The transaction code, which can be retrieved from the static data</p>\n<hr />\n<p><code>narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>valueDate</code> numerical string</p>\n<p>The date the transaction took effect (e.g. an historic date if the transaction was backdated)</p>\n<hr />\n<p><code>amount</code> float</p>\n<p>The value of the transaction</p>\n<hr />\n<p><code>clients</code> array</p>\n<p>Contains details of the client</p>\n<hr />\n","urlObject":{"path":["posting","cash","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"transactionCode","value":"CPIN,AFOF"},{"disabled":true,"key":"accountId","value":"<accountId>"},{"disabled":true,"key":"postDateFrom","value":"YYYY-MM-DD"},{"disabled":true,"key":"postDateTo","value":"YYYY-MM-DD"},{"disabled":true,"key":"nodeId","value":"<nodeId>"}],"variable":[]}},"response":[{"id":"091495c3-3a36-4330-8acd-08a2c618c012","name":"List cash postings","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/posting/cash/SDEMO","host":["{{apiRoute}}"],"path":["posting","cash","SDEMO"],"query":[{"key":"transactionCode","value":"CPIN,AFOF","disabled":true},{"key":"accountId","value":"<accountId>","disabled":true},{"key":"postDateFrom","value":"YYYY-MM-DD","disabled":true},{"key":"postDateTo","value":"YYYY-MM-DD","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"64379"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 19 Aug 2022 14:17:54 GMT"},{"key":"x-amzn-RequestId","value":"459d2551-e3a7-46ba-9cf3-5d417ac12963"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"64379"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XHU-5FDhjoEFaUQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"fb7b-P0VWN2f3P/wZ9/lHU2Bsa1Owluc\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62ff9b92-557aebb322bb19221712ad2c;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 e3c9babead5fab332ff03e514d113a3c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN50-C2"},{"key":"X-Amz-Cf-Id","value":"Kcgp44h1dZdQ68pj0ZhBraFEuZbHPI8pjUuU111v5uW8NRc3Qu9jXA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5G\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-24T12:41:18.769Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 20000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:04.949Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5D\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:11.463Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5F\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:17.763Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NC1\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2020-04-27T10:28:00.252Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": -1500,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NH3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2020-04-27T15:00:05.836Z\",\n            \"valueDate\": \"2020-04-27T15:00:05.545Z\",\n            \"amount\": -5000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KG3K\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-02-12T11:39:20.796Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KG48\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-02-12T11:39:21.525Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"amount\": 10000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KG3P\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2021-02-12T11:39:22.112Z\",\n            \"valueDate\": \"2021-02-01T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KG3J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-12T11:42:05.418Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"amount\": -2.01,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KG47\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-12T11:42:06.018Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"amount\": -198.99,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KHQH\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-02-15T12:55:48.412Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": 10000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000KHQF\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T12:59:52.090Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": -100.5,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NK77\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-04-07T12:23:06.133Z\",\n            \"valueDate\": \"2021-04-07T00:00:00.000Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NK6P\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2021-04-07T12:23:06.399Z\",\n            \"valueDate\": \"2021-03-22T00:00:00.000Z\",\n            \"amount\": -1,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000P12C\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-04-07T12:25:15.138Z\",\n            \"valueDate\": \"2021-04-07T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000P12H\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-04-07T12:25:15.493Z\",\n            \"valueDate\": \"2021-04-07T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000S74H\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-04-30T09:43:40.546Z\",\n            \"valueDate\": \"2021-04-30T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000025K73\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-06-16T12:34:35.747Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000293B8\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-07-08T17:08:08.491Z\",\n            \"valueDate\": \"2021-07-08T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002F1JD\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-08-02T15:48:41.789Z\",\n            \"valueDate\": \"2021-08-02T15:48:41.559Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002DSJ8\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-08-09T19:14:32.511Z\",\n            \"valueDate\": \"2021-08-09T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000059RKQ\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:25:57.929Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 1.33,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CJR9\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T22:15:47.931Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 0.05,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005FN1G\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:47:19.818Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 1.33,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5M\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-24T12:41:18.838Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 20000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:24.290Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5K\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:30.988Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:37.366Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NH3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2020-04-27T15:00:05.887Z\",\n            \"valueDate\": \"2020-04-27T15:00:05.545Z\",\n            \"amount\": 5000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002F1JD\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-08-02T15:48:41.747Z\",\n            \"valueDate\": \"2021-08-02T15:48:41.559Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DG\",\n            \"accountName\": \"Personal investments \",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N65\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-24T12:41:19.149Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 155000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DG\",\n            \"accountName\": \"Personal investments \",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NBL\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:19:03.297Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DG\",\n            \"accountName\": \"Personal investments \",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NBR\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2020-04-27T10:23:04.701Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": -5000,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N6D\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-24T12:41:19.431Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 175000,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N69\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:43.437Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N6B\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:51.174Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N6C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:58.885Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DC\",\n            \"accountName\": \"Cash account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N78\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-27T09:59:05.803Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": 25000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DC\",\n            \"accountName\": \"Cash account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002PK2L\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-09-16T11:01:27.574Z\",\n            \"valueDate\": \"2021-09-16T11:01:26.971Z\",\n            \"amount\": -1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DC\",\n            \"accountName\": \"Cash account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002RF9P\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-09-30T13:35:59.414Z\",\n            \"valueDate\": \"2021-09-30T13:35:58.698Z\",\n            \"amount\": -1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DC\",\n            \"accountName\": \"Cash account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00004DC8M\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-07-05T13:19:18.134Z\",\n            \"valueDate\": \"2022-07-05T13:19:17.216Z\",\n            \"amount\": -2222,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DC\",\n            \"accountName\": \"Cash account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000057QF6\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-08-09T14:26:36.660Z\",\n            \"valueDate\": \"2022-08-09T14:26:36.391Z\",\n            \"amount\": -1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N76\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-27T09:59:05.835Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": 8750,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N52\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:05:03.359Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N53\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:05:20.561Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N54\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:00.322Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N73\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:01.702Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N74\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:09.477Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N75\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:15.603Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005NBS\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2020-04-27T10:27:33.562Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": -1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000006314\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-05-11T14:18:05.598Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000075P3\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-06-10T08:54:52.741Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000767Q\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-06-15T09:51:14.031Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 50,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000007NJ3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2020-06-30T14:41:07.694Z\",\n            \"valueDate\": \"2020-06-30T14:41:07.430Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000007SNH\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-07-09T09:25:24.781Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000081H6\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-07-27T16:48:42.014Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 50,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000008R9H\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-08-11T08:20:20.744Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000B7H8\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-09-09T10:41:29.057Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000CB7R\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-10-16T13:54:55.128Z\",\n            \"valueDate\": \"2020-10-16T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000CJKL\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2020-10-19T15:40:40.530Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": -1,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000DSSM\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-11-11T14:32:46.681Z\",\n            \"valueDate\": \"2020-11-11T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000G48M\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-01-04T14:27:32.605Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000GLD5\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-01-04T14:32:57.984Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000G48L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:45:00.467Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": -20.1,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000GLCQ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:46:09.209Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JGH5\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-01-15T10:13:01.000Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JKM8\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-01-15T10:13:52.703Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": 500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JKMF\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-01-15T10:13:52.980Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": -700,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JGHC\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-15T10:16:37.321Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000L1M1\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-02-15T12:58:28.487Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000L1LN\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T13:00:23.729Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": -15.08,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000MRQ1\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-03-10T09:58:25.901Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000MRR2\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-10T09:59:12.637Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"amount\": -15.08,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000P2J8\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-03-31T15:17:41.866Z\",\n            \"valueDate\": \"2021-03-31T15:17:41.623Z\",\n            \"amount\": -50,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000PJCP\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-04-09T10:17:22.756Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000PJCC\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-04-09T10:18:12.046Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000222BB\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-05-12T11:31:06.901Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000222BJ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-05-12T11:40:17.363Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000026KF8\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-06-16T12:36:33.605Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000026KDM\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-16T12:41:36.622Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002B7BG\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-07-16T09:05:56.944Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002B7B6\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-16T09:46:30.183Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002FQ37\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-08-12T08:05:10.613Z\",\n            \"valueDate\": \"2021-08-12T00:00:00.000Z\",\n            \"amount\": 1500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002PK2L\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-09-16T11:01:27.861Z\",\n            \"valueDate\": \"2021-09-16T11:01:26.971Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002PK2Q\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-09-29T08:09:28.120Z\",\n            \"valueDate\": \"2021-09-29T00:00:00.000Z\",\n            \"amount\": -100.5,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000059KPQ\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2022-08-11T08:05:13.488Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": -200,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005B1NN\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:26:28.446Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 11.31,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CM23\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T22:16:30.165Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 0.45,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005FQ4D\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:48:01.385Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 11.31,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9G\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-04-27T09:59:05.980Z\",\n            \"valueDate\": \"2020-04-27T00:00:00.000Z\",\n            \"amount\": 15000,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:22.723Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9D\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:30.113Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9F\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:37.563Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NB1L\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-03-18T16:11:15.075Z\",\n            \"valueDate\": \"2021-03-18T00:00:00.000Z\",\n            \"amount\": 10000,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NB16\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2021-03-18T16:11:15.425Z\",\n            \"valueDate\": \"2021-03-17T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NB1J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-18T16:11:38.478Z\",\n            \"valueDate\": \"2021-03-18T00:00:00.000Z\",\n            \"amount\": -99.5,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000NHCS\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-03-22T12:12:40.093Z\",\n            \"valueDate\": \"2021-03-22T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000R3FB\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-04-23T10:24:30.397Z\",\n            \"valueDate\": \"2021-04-23T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000024JLD\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-06-16T12:31:50.892Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002818Q\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-06-23T08:26:58.084Z\",\n            \"valueDate\": \"2021-06-23T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002CQ7B\",\n            \"transactionCode\": \"CPOU\",\n            \"narrative\": \"Withdrawal\",\n            \"postDate\": \"2021-07-21T12:54:13.542Z\",\n            \"valueDate\": \"2021-07-21T00:00:00.000Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N56\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:10.347Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N57\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:18.910Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N58\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:26.020Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N59\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:34.749Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000007NJ3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2020-06-30T14:41:08.062Z\",\n            \"valueDate\": \"2020-06-30T14:41:07.430Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000G2JN\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:43:31.990Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": -30.15,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000P2J8\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-03-31T15:17:41.868Z\",\n            \"valueDate\": \"2021-03-31T15:17:41.623Z\",\n            \"amount\": 50,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002RF9P\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2021-09-30T13:35:59.619Z\",\n            \"valueDate\": \"2021-09-30T13:35:58.698Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000059RF3\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:25:54.188Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 15.3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CJLF\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T22:15:43.964Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 0.6,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005FMNK\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:47:15.333Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 15.3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5P\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:55.941Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5Q\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:03.575Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N5R\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:10.244Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N61\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:17.083Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N62\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:23.274Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N63\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:29.722Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000062SS\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-05-11T14:18:06.119Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000075P5\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-06-10T08:54:53.068Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000007SNQ\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-07-09T09:25:27.033Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000008R97\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-08-11T08:20:20.267Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000B7GS\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-09-09T10:41:28.631Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000CB76\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-10-16T13:54:54.853Z\",\n            \"valueDate\": \"2020-10-16T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000DSSB\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2020-11-11T14:32:46.406Z\",\n            \"valueDate\": \"2020-11-11T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000GLCP\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-01-04T14:32:57.257Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000GLD9\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:46:08.411Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JGGF\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-01-15T10:13:00.648Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000JGGD\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-15T10:16:36.462Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000L1LS\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-02-15T12:58:28.763Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000L1LH\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T13:00:24.562Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"amount\": -8.04,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000MRQK\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-03-10T09:58:28.371Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000MRQR\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-10T09:59:15.298Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"amount\": -8.04,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000PJDB\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-04-09T10:17:23.543Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00000PJDK\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-04-09T10:18:15.494Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000222CB\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-05-12T11:31:07.406Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"0000222C3\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-05-12T11:40:21.076Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000026KFM\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-06-16T12:36:33.443Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000026KF7\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-16T12:41:34.809Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002B73M\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-07-16T09:04:49.754Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002B73H\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-16T09:46:27.984Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"amount\": -16.08,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002FQ3J\",\n            \"transactionCode\": \"EPIN\",\n            \"narrative\": \"Employer Payment\",\n            \"postDate\": \"2021-08-12T08:05:11.015Z\",\n            \"valueDate\": \"2021-08-12T00:00:00.000Z\",\n            \"amount\": 800,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N96\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:05.488Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N97\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:12.896Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N98\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:19.030Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N99\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:25.465Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000007Q12\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2020-07-07T14:21:01.851Z\",\n            \"valueDate\": \"2018-07-12T00:00:00.000Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:39.020Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9K\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:45.626Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000005N9L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:52.916Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"amount\": -10,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000028NP7\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-06-28T14:15:19.566Z\",\n            \"valueDate\": \"2021-06-28T14:15:19.028Z\",\n            \"amount\": 100,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000028NNN\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2021-06-28T14:15:20.879Z\",\n            \"valueDate\": \"2021-06-28T00:00:00.000Z\",\n            \"amount\": -1,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000028NNQ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-28T14:17:46.583Z\",\n            \"valueDate\": \"2021-06-28T14:17:45.856Z\",\n            \"amount\": -50,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000028NP5\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-08T17:19:15.401Z\",\n            \"valueDate\": \"2021-07-08T00:00:00.000Z\",\n            \"amount\": -1.99,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00004BSLR\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2022-06-23T15:31:26.878Z\",\n            \"valueDate\": \"2022-06-23T15:31:26.547Z\",\n            \"amount\": 2000,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00HD2C7\",\n            \"accountName\": \"ISA\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002DQ4H\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2021-08-09T19:14:25.557Z\",\n            \"valueDate\": \"2021-08-09T00:00:00.000Z\",\n            \"amount\": 20000,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00HD2C7\",\n            \"accountName\": \"ISA\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00002DQ49\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2021-08-09T19:14:25.749Z\",\n            \"valueDate\": \"2021-07-30T00:00:00.000Z\",\n            \"amount\": -500,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"0217H41\",\n            \"accountName\": \"Pension Cucumber\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000035GB4\",\n            \"transactionCode\": \"EMIN\",\n            \"narrative\": \"Employee Payment\",\n            \"postDate\": \"2021-11-15T14:33:20.514Z\",\n            \"valueDate\": \"2021-11-15T14:33:16.754Z\",\n            \"amount\": 2000,\n            \"clients\": [\n                {\n                    \"name\": \"John Smith\",\n                    \"id\": \"02219BJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJ9\",\n            \"accountName\": \"School Fees\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH8L\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2022-03-11T17:42:51.281Z\",\n            \"valueDate\": \"1970-01-20T01:30:20.571Z\",\n            \"amount\": 15500,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJ9\",\n            \"accountName\": \"School Fees\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003P5K3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-03-17T09:48:47.349Z\",\n            \"valueDate\": \"2022-03-17T09:48:47.147Z\",\n            \"amount\": -5000,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH91\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2022-03-11T17:42:56.642Z\",\n            \"valueDate\": \"1970-01-20T01:30:20.576Z\",\n            \"amount\": 25000,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH92\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-11T17:42:59.902Z\",\n            \"valueDate\": \"2022-03-11T17:42:59.470Z\",\n            \"amount\": -15000,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH93\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-11T17:43:02.561Z\",\n            \"valueDate\": \"2022-03-11T17:43:02.221Z\",\n            \"amount\": -100,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003P5K3\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-03-17T09:48:47.436Z\",\n            \"valueDate\": \"2022-03-17T09:48:47.147Z\",\n            \"amount\": 5000,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003Q893\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-24T09:27:21.072Z\",\n            \"valueDate\": \"2022-03-24T09:27:15.141Z\",\n            \"amount\": -1000,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003Q896\",\n            \"transactionCode\": \"SELL\",\n            \"narrative\": \"Sell\",\n            \"postDate\": \"2022-03-24T09:39:24.447Z\",\n            \"valueDate\": \"2022-03-24T09:39:17.426Z\",\n            \"amount\": 1050,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005B37S\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:26:49.403Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 66.52,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CNF9\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T22:16:59.281Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 2.62,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005FRHL\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:48:29.765Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 66.52,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH94\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2022-03-11T17:43:08.284Z\",\n            \"valueDate\": \"1970-01-20T01:30:20.588Z\",\n            \"amount\": 45000,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003NH95\",\n            \"transactionCode\": \"CPDD\",\n            \"narrative\": \"Initial Withdrawal\",\n            \"postDate\": \"2022-03-11T17:43:14.686Z\",\n            \"valueDate\": \"1970-01-20T01:30:20.594Z\",\n            \"amount\": -11250,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00003RCD6\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-04-05T15:42:49.269Z\",\n            \"valueDate\": \"2022-04-05T15:42:48.843Z\",\n            \"amount\": -10000,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"02512B4\",\n            \"accountName\": \"Joint GIA\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00004DC8M\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-07-05T13:19:18.648Z\",\n            \"valueDate\": \"2022-07-05T13:19:17.216Z\",\n            \"amount\": 2222,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                },\n                {\n                    \"name\": \"Clementine Churchill\",\n                    \"id\": \"00DCDF4\",\n                    \"isLeadClient\": true\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"02512B4\",\n            \"accountName\": \"GIA Trust\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005C69D\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:34:11.184Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 28.22,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"02512B4\",\n            \"accountName\": \"GIA Trust\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005DRGG\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T22:24:41.828Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 1.11,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"02512B4\",\n            \"accountName\": \"GIA Trust\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005H2K5\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:55:39.178Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 28.22,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"02514FC\",\n            \"accountName\": \"ISA\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00004DQ9S\",\n            \"transactionCode\": \"CPIN\",\n            \"narrative\": \"Client Payment\",\n            \"postDate\": \"2022-07-07T09:57:35.417Z\",\n            \"valueDate\": \"2022-07-07T09:57:30.347Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Annabel Melvin\",\n                    \"id\": \"025J3C8\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"02514FC\",\n            \"accountName\": \"ISA\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00004DQ9Q\",\n            \"transactionCode\": \"AFOF\",\n            \"narrative\": \"Adviser ad-hoc Fee\",\n            \"postDate\": \"2022-07-07T09:57:36.663Z\",\n            \"valueDate\": \"2022-07-07T00:00:00.000Z\",\n            \"amount\": -500,\n            \"clients\": [\n                {\n                    \"name\": \"Annabel Melvin\",\n                    \"id\": \"025J3C8\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00FH589\",\n            \"accountName\": \"New Pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000057QF6\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-08-09T14:26:36.764Z\",\n            \"valueDate\": \"2022-08-09T14:26:36.391Z\",\n            \"amount\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00FH589\",\n            \"accountName\": \"New Pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000057QF8\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-08-09T14:27:28.437Z\",\n            \"valueDate\": \"2022-08-09T14:27:28.139Z\",\n            \"amount\": -500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00FH589\",\n            \"accountName\": \"New Pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CGBF\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:35:18.141Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 0.6,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00FH589\",\n            \"accountName\": \"New Pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005HBL5\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:57:22.759Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 0.6,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00GBDC9\",\n            \"accountName\": \"1\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"000057QF8\",\n            \"transactionCode\": \"ACST\",\n            \"narrative\": \"Account cash transfer\",\n            \"postDate\": \"2022-08-09T14:27:28.581Z\",\n            \"valueDate\": \"2022-08-09T14:27:28.139Z\",\n            \"amount\": 500,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00GBDC9\",\n            \"accountName\": \"1\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005CGBH\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-11T18:35:18.150Z\",\n            \"valueDate\": \"2022-08-11T00:00:00.000Z\",\n            \"amount\": 0.6,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00GBDC9\",\n            \"accountName\": \"1\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Cash\",\n            \"transactionId\": \"00005HBL6\",\n            \"transactionCode\": \"PINT\",\n            \"narrative\": \"Interest\",\n            \"postDate\": \"2022-08-16T06:57:22.771Z\",\n            \"valueDate\": \"2022-08-15T00:00:00.000Z\",\n            \"amount\": 0.6,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 186\n    }\n}"}],"_postman_id":"962b53c1-cbeb-4012-9b7e-c2e5041ff750"},{"name":"List stock postings","id":"3826c6e4-18e1-4e43-8cb6-5d34e1310bb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/stock/{{firmId}}","description":"<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node</p>\n<hr />\n<p><code>accountId</code> alphanumerical string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three-letter ISO code</p>\n<hr />\n<p><code>positionType</code> string</p>\n<p>This will be set to <code>Stock</code></p>\n<hr />\n<p><code>assetId</code> alphanumerical string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>transactionId</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>transactionCode</code> string</p>\n<p>The transaction code, which can be retrieved from the static data</p>\n<hr />\n<p><code>narrative</code> string</p>\n<p>The description of the transaction</p>\n<hr />\n<p><code>postDate</code> numerical string</p>\n<p>The date the transaction completed</p>\n<hr />\n<p><code>valueDate</code> numerical string</p>\n<p>The date the transaction took effect (e.g. an historic date if the transaction was backdated)</p>\n<hr />\n<p><code>quantity</code> float</p>\n<p>The number of units</p>\n<hr />\n<p><code>clients</code> array</p>\n<p>Contains details of the client</p>\n<hr />\n","urlObject":{"path":["posting","stock","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"9966be04-6e7a-4f36-8fee-5f30285de729","name":"List stock postings","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/posting/stock/SDEMO"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27319"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 19 Aug 2022 14:33:10 GMT"},{"key":"x-amzn-RequestId","value":"46351c98-4335-4286-9ac9-ae4777d4d642"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27319"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XHXOBFHTjoEFYPg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"6ab7-So05aFINf80AEex0a4W5o5v4stY\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-62ff9f26-6ca9ecac5b479c306885f40b;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f3941b23aa4de2f405431a6cd8d6aafe.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"MAN50-C2"},{"key":"X-Amz-Cf-Id","value":"69xZaIiX_L2P3trVFpQrIJTN1aEplYxJC-nT60UJ-yt17aD-kvaH1Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N52\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:05:03.301Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N73\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:01.638Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N53\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:05:20.518Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N74\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:09.434Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N54\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:00.265Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N75\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:15.562Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N56\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:10.301Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MN6\",\n            \"isin\": \"GB0008267238\",\n            \"transactionId\": \"000005N57\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:18.866Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N58\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:25.957Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26NJ7\",\n            \"isin\": \"GB00B7N07V51\",\n            \"transactionId\": \"000005N59\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:34.710Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N5P\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:06:55.895Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N5Q\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:03.526Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DH\",\n            \"accountName\": \"Ryan - Uni fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N5R\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:10.193Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N61\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:16.998Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N62\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:23.235Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N63\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:07:29.679Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N5C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:04.901Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N5D\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:11.419Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N5F\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:17.717Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N5J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:24.237Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N5K\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:30.937Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DF\",\n            \"accountName\": \"Gemma - Uni Funding\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N5L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:37.325Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N69\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:43.343Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N6B\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:51.136Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2F3\",\n            \"accountName\": \"House fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N6C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:08:58.842Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Peter Plum\",\n                    \"id\": \"00DCDF6\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26NKP\",\n            \"isin\": \"GB00B3WYRF43\",\n            \"transactionId\": \"000005N96\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:05.449Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N5C\",\n            \"isin\": \"GB0033143222\",\n            \"transactionId\": \"000005N97\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:12.837Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MRD\",\n            \"isin\": \"GB00B67F3D33\",\n            \"transactionId\": \"000005N98\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:18.988Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00DC2G7\",\n            \"accountName\": \"Investment account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N99\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:25.413Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Dolittle\",\n                    \"id\": \"00DCDFJ\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N9J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:38.979Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N9K\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:45.585Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2G9\",\n            \"accountName\": \"Growth pot\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N9L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:09:52.876Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"John Denver\",\n                    \"id\": \"00DCDG2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N1H\",\n            \"isin\": \"GB0032477746\",\n            \"transactionId\": \"000005N9C\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:22.684Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26N7B\",\n            \"isin\": \"GB0031611089\",\n            \"transactionId\": \"000005N9D\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:30.075Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000005N9F\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:10:37.517Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DG\",\n            \"accountName\": \"Personal investments \",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"000005NBL\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2020-04-27T10:19:03.190Z\",\n            \"valueDate\": \"2019-03-12T00:00:00.000Z\",\n            \"quantity\": 3,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2DB\",\n            \"accountName\": \"Gift to children\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000G2JN\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:43:31.977Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000G48L\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:45:00.479Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"quantity\": 1.6459948320413438,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000GLCQ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:46:09.194Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000JGHC\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-15T10:16:37.261Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000L1LN\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T13:00:23.726Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"quantity\": 1.4844961240310077,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000MRR2\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-10T09:59:12.508Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"quantity\": 1.4844961240310077,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000PJCC\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-04-09T10:18:12.046Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"0000222BJ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-05-12T11:40:17.299Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"000026KDM\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-16T12:41:36.589Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00002B7B6\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-16T09:46:30.173Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"quantity\": 1.9689922480620154,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00002PK2Q\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-09-29T08:09:28.180Z\",\n            \"valueDate\": \"2021-09-29T00:00:00.000Z\",\n            \"quantity\": 4.2299741602067185,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000GLD9\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-04T14:46:08.395Z\",\n            \"valueDate\": \"2021-01-04T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000JGGD\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-01-15T10:16:36.440Z\",\n            \"valueDate\": \"2021-01-15T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000L1LH\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T13:00:24.542Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"quantity\": 1.2583979328165373,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000MRQR\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-10T09:59:15.291Z\",\n            \"valueDate\": \"2021-03-10T00:00:00.000Z\",\n            \"quantity\": 1.2583979328165373,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000PJDK\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-04-09T10:18:15.473Z\",\n            \"valueDate\": \"2021-04-09T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"0000222C3\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-05-12T11:40:20.888Z\",\n            \"valueDate\": \"2021-05-12T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"000026KF7\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-16T12:41:34.783Z\",\n            \"valueDate\": \"2021-06-16T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DJ\",\n            \"accountName\": \"Joe's pension\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00002B73H\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-16T09:46:27.955Z\",\n            \"valueDate\": \"2021-07-16T00:00:00.000Z\",\n            \"quantity\": 1.516795865633075,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000KG3J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-12T11:42:05.372Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"quantity\": 1.0645994832041343,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000KG47\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-12T11:42:05.998Z\",\n            \"valueDate\": \"2021-02-12T00:00:00.000Z\",\n            \"quantity\": 7.395348837209302,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2DD\",\n            \"accountName\": \"Retirement booster\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000KHQF\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-02-15T12:59:52.054Z\",\n            \"valueDate\": \"2021-02-15T00:00:00.000Z\",\n            \"quantity\": 4.2299741602067185,\n            \"clients\": [\n                {\n                    \"name\": \"Joe Platform\",\n                    \"id\": \"00DCDF2\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"3\",\n            \"accountId\": \"00DC2G8\",\n            \"accountName\": \"Holiday fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"00000NB1J\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-03-18T16:11:38.449Z\",\n            \"valueDate\": \"2021-03-18T00:00:00.000Z\",\n            \"quantity\": 4.197674418604651,\n            \"clients\": [\n                {\n                    \"name\": \"Jennifer Lopez\",\n                    \"id\": \"00DCDG1\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"accountName\": \"Retirement Fund\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM1\",\n            \"isin\": \"GB0030720733\",\n            \"transactionId\": \"000026M36\",\n            \"transactionCode\": \"MGSI\",\n            \"narrative\": \"Opening Position\",\n            \"postDate\": \"2021-06-09T09:24:52.712Z\",\n            \"valueDate\": \"2021-06-09T09:24:52.171Z\",\n            \"quantity\": 9000,\n            \"clients\": [\n                {\n                    \"name\": \"Winston Churchill\",\n                    \"id\": \"00DCDF3\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"26MM2\",\n            \"isin\": \"GB0030719842\",\n            \"transactionId\": \"000028NNQ\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-06-28T14:17:46.534Z\",\n            \"valueDate\": \"2021-06-28T14:17:45.856Z\",\n            \"quantity\": 8,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"5\",\n            \"accountId\": \"00H5B1J\",\n            \"accountName\": \"Stag do\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284PF\",\n            \"isin\": \"GB0002374006\",\n            \"transactionId\": \"000028NP5\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2021-07-08T17:19:15.377Z\",\n            \"valueDate\": \"2021-07-08T00:00:00.000Z\",\n            \"quantity\": 1.0639534883720931,\n            \"clients\": [\n                {\n                    \"name\": \"Dan Marsh\",\n                    \"id\": \"00HB4DH\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"286Q5\",\n            \"isin\": \"LU0292097747\",\n            \"transactionId\": \"00003NH92\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-11T17:42:59.819Z\",\n            \"valueDate\": \"2022-03-11T17:42:59.470Z\",\n            \"quantity\": 150,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"286D7\",\n            \"isin\": \"GB00B2PDGW16\",\n            \"transactionId\": \"00003NH93\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-11T17:43:02.444Z\",\n            \"valueDate\": \"2022-03-11T17:43:02.221Z\",\n            \"quantity\": 50,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284JP\",\n            \"isin\": \"GB00B019KW72\",\n            \"transactionId\": \"00003NH98\",\n            \"transactionCode\": \"MGSI\",\n            \"narrative\": \"Opening Position\",\n            \"postDate\": \"2022-03-11T17:43:21.147Z\",\n            \"valueDate\": \"2022-03-11T17:43:20.874Z\",\n            \"quantity\": 10000,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"286D7\",\n            \"isin\": \"GB00B2PDGW16\",\n            \"transactionId\": \"00003NH99\",\n            \"transactionCode\": \"MGSI\",\n            \"narrative\": \"Opening Position\",\n            \"postDate\": \"2022-03-11T17:43:22.537Z\",\n            \"valueDate\": \"2022-03-11T17:43:22.296Z\",\n            \"quantity\": 500,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"2851G\",\n            \"isin\": \"GB00BDR05C01\",\n            \"transactionId\": \"00003NH9B\",\n            \"transactionCode\": \"MGSI\",\n            \"narrative\": \"Opening Position\",\n            \"postDate\": \"2022-03-11T17:43:23.917Z\",\n            \"valueDate\": \"2022-03-11T17:43:23.678Z\",\n            \"quantity\": 1000,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"284H9\",\n            \"isin\": \"GB0031274896\",\n            \"transactionId\": \"00003NH9C\",\n            \"transactionCode\": \"MGSI\",\n            \"narrative\": \"Opening Position\",\n            \"postDate\": \"2022-03-11T17:43:25.486Z\",\n            \"valueDate\": \"2022-03-11T17:43:25.166Z\",\n            \"quantity\": 9000,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"27DNS\",\n            \"isin\": \"GB00B7MVBY07\",\n            \"transactionId\": \"00003Q893\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-03-24T09:27:20.529Z\",\n            \"valueDate\": \"2022-03-24T09:27:15.141Z\",\n            \"quantity\": 3.7,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJB\",\n            \"accountName\": \"My Trading Account\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"27DNS\",\n            \"isin\": \"GB00B7MVBY07\",\n            \"transactionId\": \"00003Q896\",\n            \"transactionCode\": \"SELL\",\n            \"narrative\": \"Sell\",\n            \"postDate\": \"2022-03-24T09:39:23.809Z\",\n            \"valueDate\": \"2022-03-24T09:39:17.426Z\",\n            \"quantity\": -3,\n            \"clients\": [\n                {\n                    \"name\": \"Caldon Demo\",\n                    \"id\": \"024B196\"\n                }\n            ]\n        },\n        {\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"0\",\n            \"accountId\": \"023CBJC\",\n            \"accountName\": \"SIPP\",\n            \"currency\": \"GBP\",\n            \"positionType\": \"Stock\",\n            \"assetId\": \"2756G\",\n            \"isin\": \"GB00B4PQW151\",\n            \"transactionId\": \"00003RCD6\",\n            \"transactionCode\": \"BUY\",\n            \"narrative\": \"Buy\",\n            \"postDate\": \"2022-04-05T15:42:49.195Z\",\n            \"valueDate\": \"2022-04-05T15:42:48.843Z\",\n            \"quantity\": 47,\n            \"clients\": [\n                {\n                    \"name\": \"Demo Caldon\",\n                    \"id\": \"024B197\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 71\n    }\n}"}],"_postman_id":"3826c6e4-18e1-4e43-8cb6-5d34e1310bb5"}],"id":"01702b44-0c00-47e6-8e33-58cd6e4b7e45","description":"<p>Cash and stock posting objects show any completed transactions that affect positions of cash and stocks in an investment account. You can use these endpoints to either show or store these transactions.</p>\n<p>Details on the positions webhook can be found <strong>here</strong>.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/posting/cash\n/posting/stock\n\n</code></pre>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"621eaeae-932f-4d29-95cb-e547c635a335"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c75e6962-dedf-4c4a-a8f3-4857de6a6426"}}],"_postman_id":"01702b44-0c00-47e6-8e33-58cd6e4b7e45"},{"name":"CGT report","item":[{"name":"Download CGT report","id":"b781d748-0da8-4733-a812-a33d81922520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"fromDate","value":"YYYY-MM-DD"},{"key":"toDate","value":"YYYY-MM-DD"}],"url":"{{apiRoute}}/portfolio/cgtreport/spreadsheet/{{firmId}}/{{clientId}}","description":"<h2 id=\"download-cgt-report\">Download CGT Report</h2>\n<p>Returns a URL to download the Capital Gains Tax (CGT) report for a specific client as a spreadsheet file.</p>\n<hr />\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>GET {{apiRoute}}/portfolio/cgtreport/spreadsheet/{{firmId}}/{{clientId}}</code></p>\n<hr />\n<h3 id=\"path-variables\">Path Variables</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>string</td>\n<td>The unique identifier of your firm</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>string</td>\n<td>The unique identifier of the client</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"headers\">Headers</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Content-Type</code></td>\n<td><code>application/json</code></td>\n<td>Must be set to <code>application/json</code></td>\n</tr>\n<tr>\n<td><code>fromDate</code></td>\n<td><code>YYYY-MM-DD</code></td>\n<td>Start date of the CGT report period</td>\n</tr>\n<tr>\n<td><code>toDate</code></td>\n<td><code>YYYY-MM-DD</code></td>\n<td>End date of the CGT report period</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"response\">Response</h3>\n<p>A successful response returns a <code>200 OK</code> with a JSON body containing a <code>data</code> object with a pre-signed download URL.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"C06PCJ3\",\n    \"url\": \"https://...\"\n  }\n}\n\n</code></pre>\n<h4 id=\"response-fields\">Response Fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data.id</code></td>\n<td>string</td>\n<td>The unique identifier of the client</td>\n</tr>\n<tr>\n<td><code>data.url</code></td>\n<td>string</td>\n<td>A pre-signed URL to download the CGT spreadsheet</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"client-attributes\">Client Attributes</h3>\n<p>The following attributes describe the client record associated with the report:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>id</code></td>\n<td>string</td>\n<td>The unique identifier of the client</td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>string</td>\n<td>The full name of the client, including title, first name and surname</td>\n</tr>\n<tr>\n<td><code>firstName</code></td>\n<td>string</td>\n<td>The first name of the client</td>\n</tr>\n<tr>\n<td><code>surname</code></td>\n<td>string</td>\n<td>The surname of the client</td>\n</tr>\n<tr>\n<td><code>language</code></td>\n<td>enum</td>\n<td>The language set at the client record</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>enum</td>\n<td>The three-letter ISO currency code</td>\n</tr>\n<tr>\n<td><code>nodeId</code></td>\n<td>array</td>\n<td>The unique node identifier(s) the client record is attached to</td>\n</tr>\n<tr>\n<td><code>nodeName</code></td>\n<td>string</td>\n<td>The name of the node the client record is attached to</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>enum</td>\n<td>The status of the client record (see below)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"client-status-values\">Client Status Values</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Enum Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Active</code></td>\n<td>The client has accepted platform terms and passed KYC checks</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>The client record has been created, but they haven't accepted terms, set up a password or passed KYC checks</td>\n</tr>\n<tr>\n<td><code>Registered</code></td>\n<td>A skeletal client record is created from an illustration</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"positions\">Positions</h3>\n<p>The response may include a <code>positions</code> array summarising individual cash and asset positions within the portfolio.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Attribute</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>positions.positionType</code></td>\n<td>enum</td>\n<td>The type of position (<code>stock</code> or <code>cash</code>)</td>\n</tr>\n<tr>\n<td><code>positions.isin</code></td>\n<td>string</td>\n<td>The ISIN of the asset</td>\n</tr>\n<tr>\n<td><code>positions.assetId</code></td>\n<td>string</td>\n<td>The unique identifier of the asset</td>\n</tr>\n<tr>\n<td><code>positions.assetName</code></td>\n<td>string</td>\n<td>The name of the asset</td>\n</tr>\n<tr>\n<td><code>positions.quantity</code></td>\n<td>float</td>\n<td>The number of units in the holding</td>\n</tr>\n<tr>\n<td><code>positions.bookValue</code></td>\n<td>float</td>\n<td>The book value of the holding (cost of purchasing) since inception</td>\n</tr>\n<tr>\n<td><code>positions.transferBookValue</code></td>\n<td>float</td>\n<td>The number of units multiplied by the price on the day of transfer</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"position-type-values\">Position Type Values</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Enum Value</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>stock</code></td>\n<td>Asset holdings</td>\n</tr>\n<tr>\n<td><code>cash</code></td>\n<td>Cash holdings</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"notes\">Notes</h3>\n<ul>\n<li><p>The <code>fromDate</code> and <code>toDate</code> headers must be provided in <code>YYYY-MM-DD</code> format.</p>\n</li>\n<li><p>The returned <code>url</code> is a link and may expire after a short period — download the file promptly after receiving the response.</p>\n</li>\n</ul>\n","urlObject":{"path":["portfolio","cgtreport","spreadsheet","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e998dd4a-ff47-410b-9dfc-a966d3caafeb","name":"Download CGT report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"fromDate","value":"YYYY-MM-DD"},{"key":"toDate","value":"YYYY-MM-DD"}],"url":{"raw":"{{apiRoute}}/portfolio/cgtreport/spreadsheet/SECCI/0336F74","host":["{{apiRoute}}"],"path":["portfolio","cgtreport","spreadsheet","SECCI","0336F74"],"query":[{"key":"fromDate","value":"YYYY-MM-DD","disabled":true},{"key":"toDate","value":"YYYY-MM-DD","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"64060"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Fri, 07 Feb 2025 12:09:48 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-67a5f80c-5855576c6614d885315c2bc4;Parent=2be38250a1c82b9d;Sampled=0;Lineage=1:2ce6d6c0:0"},{"key":"x-amzn-RequestId","value":"df9a4c4a-6f9f-4c85-8334-3a42332b8813"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"64060"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"FnOx8FfgDoEEY8w="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"fa3c-ydBjZ7HSZVQ7c+hB7FN2PYqbfaU\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 38ff23673937c3eba42a4eefb2007078.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"AMS58-P4"},{"key":"X-Amz-Cf-Id","value":"-usPPxV_eyE7Lg-dfMN75Ao-QjTIuval2OMccNrEZ2LuirnOaZd-Sg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"firmId\": \"SECCI\",\n        \"id\": \"0336F74\",\n        \"name\": \"Fred Flintstone\",\n        \"firstName\": \"Fred\",\n        \"surname\": \"Flintstone\",\n        \"language\": \"en\",\n        \"currency\": \"GBP\",\n        \"nodeId\": [\n            \"35\"\n        ],\n        \"nodeName\": [\n            \"My Advice Firm Ltd\"\n        ],\n        \"status\": \"Active\",\n        \"clientType\": \"Individual\",\n        \"completeTransactions\": [],\n        \"accounts\": [\n            {\n                \"id\": \"02J5F79\",\n                \"name\": \"GIA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"35\",\n                \"nodeName\": \"My Advice Firm Ltd\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"advised\": true,\n                    \"trust\": false,\n                    \"clientProductId\": \"66e9491015a1836250a59fd6\"\n                },\n                \"currentValue\": 29185.7,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 36897.55,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 36897.55,\n                \"growth\": -7814.3,\n                \"adjustedGrowth\": -7814.3,\n                \"closingCashValue\": 1617.55,\n                \"uninvestedCash\": 1617.55,\n                \"closingStockValue\": 27568.15,\n                \"growthPercent\": -0.2846,\n                \"adjustedGrowthPercent\": -0.2846,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": null,\n                    \"unrealisedProfitLoss\": null\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"ASSET_UNSUPPORTED_TYPE\",\n                        \"text\": \"We do not currently support this asset type. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"02J5F79|S|GB00B545NX97\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0076,\n                \"positions\": [\n                    {\n                        \"id\": \"02J5F79|S|GB00B545NX97\",\n                        \"accountId\": \"02J5F79\",\n                        \"accountName\": \"GIA\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"27429\",\n                        \"assetName\": \"Vanguard Investments UK Ltd LifeStrategy 100% Equity Inc\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T11:45:37.723Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B545NX97\",\n                        \"nodeId\": \"35\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 135.47,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JB9QC\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T11:39:29.274Z\",\n                                \"valueDate\": \"2024-11-18T11:39:28.397Z\",\n                                \"quantity\": 4.81,\n                                \"value\": 15680,\n                                \"executionTime\": \"2024-11-18T00:00:00.397Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 15680,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 15680,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": null,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JB9QK\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T11:45:37.722Z\",\n                                \"valueDate\": \"2024-11-18T11:45:37.437Z\",\n                                \"quantity\": 130.66,\n                                \"value\": 19600,\n                                \"executionTime\": \"2024-11-18T00:00:00.437Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 19600,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 19600,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": null,\n                                    \"matches\": []\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b28e1984337a73a4142d5\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"27429\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2019-11-14T00:00:00.000Z\",\n                                \"ask\": 203.5,\n                                \"mid\": 203.5,\n                                \"bid\": 203.5,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Fund\",\n                                \"ocfEstimated\": 0.0025\n                            }\n                        ],\n                        \"ocfEstimated\": 0.0025,\n                        \"assetInstrumentType\": \"Fund\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"ASSET_UNSUPPORTED_TYPE\",\n                                \"text\": \"We do not currently support this asset type. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"cgtData\"\n                                ]\n                            }\n                        ],\n                        \"bookValue\": 35280,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 35280,\n                        \"growth\": -7711.85,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 203.5,\n                        \"currentSellPrice\": 203.5,\n                        \"instrumentType\": \"Fund\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2019-11-14T00:00:00.000Z\",\n                        \"currentValue\": 27568.15,\n                        \"adjustedGrowth\": -7711.85,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": null,\n                            \"unrealisedProfitLoss\": null\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.2186,\n                        \"adjustedGrowthPercent\": -0.2186\n                    }\n                ]\n            },\n            {\n                \"id\": \"03182J2\",\n                \"name\": \"GIA 1 Buys and sells without final sale\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1879.89,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 2109.89,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2109.89,\n                \"growth\": -120.11,\n                \"adjustedGrowth\": -120.11,\n                \"closingCashValue\": 1679.89,\n                \"uninvestedCash\": 1679.89,\n                \"closingStockValue\": 200,\n                \"growthPercent\": -0.0605,\n                \"adjustedGrowthPercent\": -0.0605,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 110,\n                    \"unrealisedProfitLoss\": -230\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0005,\n                \"positions\": [\n                    {\n                        \"id\": \"03182J2|S|GB0003101523\",\n                        \"accountId\": \"03182J2\",\n                        \"accountName\": \"GIA 1 Buys and sells without final sale\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:12:42.410Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 6\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 200,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBB8P\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:11:56.200Z\",\n                                \"valueDate\": \"2024-05-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 100,\n                                \"executionTime\": \"2024-05-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 100,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 100,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB8Q\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB91\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBB8Q\",\n                                \"transactionCode\": \"SELL\",\n                                \"narrative\": \"Sell\",\n                                \"postDate\": \"2024-11-18T12:12:05.507Z\",\n                                \"valueDate\": \"2024-05-12T00:00:00.000Z\",\n                                \"quantity\": -50,\n                                \"value\": -125,\n                                \"executionTime\": \"2024-05-12T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 17.5,\n                                \"profitLoss\": 17.5,\n                                \"bookValue\": -107.5,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -107.5,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 17.5,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 50,\n                                            \"matchedTotalBookValue\": 107.5,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBB8P\",\n                                                \"0000JBB8R\",\n                                                \"0000JBB8S\",\n                                                \"0000JBB98\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBB8R\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:12:15.006Z\",\n                                \"valueDate\": \"2024-05-13T00:00:00.000Z\",\n                                \"quantity\": 50,\n                                \"value\": 125,\n                                \"executionTime\": \"2024-05-13T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 125,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 125,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB8Q\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB91\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBB8S\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:12:23.866Z\",\n                                \"valueDate\": \"2024-05-14T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 300,\n                                \"executionTime\": \"2024-05-14T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 300,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 300,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB8Q\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB91\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBB91\",\n                                \"transactionCode\": \"SELL\",\n                                \"narrative\": \"Sell\",\n                                \"postDate\": \"2024-11-18T12:12:32.704Z\",\n                                \"valueDate\": \"2024-05-15T00:00:00.000Z\",\n                                \"quantity\": -50,\n                                \"value\": -200,\n                                \"executionTime\": \"2024-05-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 92.5,\n                                \"profitLoss\": 92.5,\n                                \"bookValue\": -107.5,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -107.5,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 92.5,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 50,\n                                            \"matchedTotalBookValue\": 107.5,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBB8P\",\n                                                \"0000JBB8R\",\n                                                \"0000JBB8S\",\n                                                \"0000JBB98\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBB98\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:12:42.408Z\",\n                                \"valueDate\": \"2024-05-15T00:00:00.000Z\",\n                                \"quantity\": 50,\n                                \"value\": 120,\n                                \"executionTime\": \"2024-05-15T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 120,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 120,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB8Q\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBB91\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b2f3a82ac9498da3aa41b\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 430,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 430,\n                        \"growth\": -230,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 200,\n                        \"adjustedGrowth\": -230,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 110,\n                            \"unrealisedProfitLoss\": -230\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.5349,\n                        \"adjustedGrowthPercent\": -0.5349\n                    }\n                ]\n            },\n            {\n                \"id\": \"03182JF\",\n                \"name\": \"GIA 2 Buys and sells with final sale\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1399.93,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 1399.93,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 1399.93,\n                \"growth\": 1054.93,\n                \"adjustedGrowth\": 1054.93,\n                \"closingCashValue\": 1399.93,\n                \"uninvestedCash\": 1399.93,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 3.0804,\n                \"adjustedGrowthPercent\": 3.0804,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 1055,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0004,\n                \"positions\": [\n                    {\n                        \"id\": \"03182JF|S|GB0003101523\",\n                        \"accountId\": \"03182JF\",\n                        \"accountName\": \"GIA 2 Buys and sells with final sale\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:14:09.922Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 7\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 0,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBB9Q\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:13:16.394Z\",\n                                \"valueDate\": \"2024-05-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 100,\n                                \"executionTime\": \"2024-05-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 100,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 100,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB2\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB5\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBBB\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBB2\",\n                                \"transactionCode\": \"SELL\",\n                                \"narrative\": \"Sell\",\n                                \"postDate\": \"2024-11-18T12:13:25.175Z\",\n                                \"valueDate\": \"2024-05-12T00:00:00.000Z\",\n                                \"quantity\": -50,\n                                \"value\": -75,\n                                \"executionTime\": \"2024-05-12T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": -15,\n                                \"profitLoss\": -15,\n                                \"bookValue\": -90,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -90,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": -15,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 50,\n                                            \"matchedTotalBookValue\": 90,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBB9Q\",\n                                                \"0000JBBB3\",\n                                                \"0000JBBB4\",\n                                                \"0000JBBB6\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBB3\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:13:34.073Z\",\n                                \"valueDate\": \"2024-05-13T00:00:00.000Z\",\n                                \"quantity\": 50,\n                                \"value\": 100,\n                                \"executionTime\": \"2024-05-13T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 100,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 100,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB2\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB5\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBBB\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBB4\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:13:42.994Z\",\n                                \"valueDate\": \"2024-05-14T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 220,\n                                \"executionTime\": \"2024-05-14T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 220,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 220,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB2\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB5\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBBB\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBB5\",\n                                \"transactionCode\": \"SELL\",\n                                \"narrative\": \"Sell\",\n                                \"postDate\": \"2024-11-18T12:13:52.193Z\",\n                                \"valueDate\": \"2024-05-15T00:00:00.000Z\",\n                                \"quantity\": -50,\n                                \"value\": -120,\n                                \"executionTime\": \"2024-05-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 30,\n                                \"profitLoss\": 30,\n                                \"bookValue\": -90,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -90,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 30,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 50,\n                                            \"matchedTotalBookValue\": 90,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBB9Q\",\n                                                \"0000JBBB3\",\n                                                \"0000JBBB4\",\n                                                \"0000JBBB6\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBB6\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:14:01.102Z\",\n                                \"valueDate\": \"2024-05-15T00:00:00.000Z\",\n                                \"quantity\": 50,\n                                \"value\": 120,\n                                \"executionTime\": \"2024-05-15T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 120,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 120,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB2\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBB5\"\n                                        },\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBBB\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBBB\",\n                                \"transactionCode\": \"SELL\",\n                                \"narrative\": \"Sell\",\n                                \"postDate\": \"2024-11-18T12:14:09.921Z\",\n                                \"valueDate\": \"2024-05-17T00:00:00.000Z\",\n                                \"quantity\": -200,\n                                \"value\": -1400,\n                                \"executionTime\": \"2024-05-17T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 1040,\n                                \"profitLoss\": 1040,\n                                \"bookValue\": -360,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -360,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 1040,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 200,\n                                            \"matchedTotalBookValue\": 360,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBB9Q\",\n                                                \"0000JBBB3\",\n                                                \"0000JBBB4\",\n                                                \"0000JBBB6\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b2f9182ac9498da3aa455\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 0,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 0,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 0,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 1055,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0318324\",\n                \"name\": \"GIA 3 Accumulation dividend and partial stock transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 158.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -341.02,\n                \"adjustedGrowth\": -341.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -0.682,\n                \"adjustedGrowthPercent\": -0.682,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0,\n                \"positions\": [\n                    {\n                        \"id\": \"0318324|S|GB0003101523\",\n                        \"accountId\": \"0318324\",\n                        \"accountName\": \"GIA 3 Accumulation dividend and partial stock transfer\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:14:37.889Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBBD\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:14:37.888Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b2fad82ac9498da3aa461\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": -341,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 100,\n                        \"adjustedGrowth\": -341,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": -341\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.7732,\n                        \"adjustedGrowthPercent\": -0.7732\n                    }\n                ]\n            },\n            {\n                \"id\": \"031832C\",\n                \"name\": \"GIA 4 Stock split\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832C|S|GB0003101523\",\n                                \"031832C|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001,\n                \"positions\": [\n                    {\n                        \"id\": \"031832C|S|GB0003101523\",\n                        \"accountId\": \"031832C\",\n                        \"accountName\": \"GIA 4 Stock split\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:15:29.097Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 0,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBBL\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:15:24.466Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBBM\",\n                                \"transactionCode\": \"SPLO\",\n                                \"narrative\": \"Stock Split\",\n                                \"postDate\": \"2024-11-18T12:15:29.097Z\",\n                                \"valueDate\": \"2024-08-12T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 950\n                                },\n                                \"quantity\": -100,\n                                \"value\": -950,\n                                \"executionTime\": \"2024-08-12T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 509,\n                                \"profitLoss\": 509,\n                                \"bookValue\": -441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b2fe182ac9498da3aa46b\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBBM\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 0,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 0,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 0,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    },\n                    {\n                        \"id\": \"031832C|S|GB00B39J2M42\",\n                        \"accountId\": \"031832C\",\n                        \"accountName\": \"GIA 4 Stock split\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848S\",\n                        \"assetName\": \"United Utilities Group PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:15:33.389Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B39J2M42\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 300,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBBN\",\n                                \"transactionCode\": \"SPLI\",\n                                \"narrative\": \"Stock Split\",\n                                \"postDate\": \"2024-11-18T12:15:33.388Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 441\n                                },\n                                \"quantity\": 300,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b2fe582ac9498da3aa46d\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBBN\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentValue\": 441,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"031832D\",\n                \"name\": \"GIA 5 Merger\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 1000341,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 1000000,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 1000000,\n                \"growth\": 341,\n                \"adjustedGrowth\": 341,\n                \"closingCashValue\": 0,\n                \"uninvestedCash\": 0,\n                \"closingStockValue\": 1000341,\n                \"growthPercent\": 0.0003,\n                \"adjustedGrowthPercent\": 0.0003,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 341\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832D|S|GB0003101523\",\n                                \"031832D|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.2606,\n                \"positions\": [\n                    {\n                        \"id\": \"031832D|S|GB0003101523\",\n                        \"accountId\": \"031832D\",\n                        \"accountName\": \"GIA 5 Merger\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:16:45.259Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": -100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBC2\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:16:40.885Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 226757.37,\n                                \"value\": 1000000,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 1000000,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 1000000,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBC3\",\n                                \"transactionCode\": \"MGRO\",\n                                \"narrative\": \"Stock Merger\",\n                                \"postDate\": \"2024-11-18T12:16:45.258Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": -1000441\n                                },\n                                \"quantity\": -226857.37,\n                                \"value\": 1000441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": -2000882,\n                                \"profitLoss\": -2000882,\n                                \"bookValue\": -1000441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -1000441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b302d82ac9498da3aa47d\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBC3\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": -441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": -441,\n                        \"growth\": 341,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": -100,\n                        \"adjustedGrowth\": 341,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 341\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    },\n                    {\n                        \"id\": \"031832D|S|GB00B39J2M42\",\n                        \"accountId\": \"031832D\",\n                        \"accountName\": \"GIA 5 Merger\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848S\",\n                        \"assetName\": \"United Utilities Group PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:16:49.613Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B39J2M42\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 75619.12,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBC4\",\n                                \"transactionCode\": \"MGRI\",\n                                \"narrative\": \"Stock Merger\",\n                                \"postDate\": \"2024-11-18T12:16:49.613Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 1000441\n                                },\n                                \"quantity\": 75619.12,\n                                \"value\": 1000441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 1000441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 1000441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b303182ac9498da3aa47f\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBC4\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 1000441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 1000441,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentValue\": 1000441,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"031832F\",\n                \"name\": \"GIA 6 De-merger\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 2800195.96,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 2799854.96,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 2799854.96,\n                \"growth\": 195.96,\n                \"adjustedGrowth\": 195.96,\n                \"closingCashValue\": 1799854.96,\n                \"uninvestedCash\": 1799854.96,\n                \"closingStockValue\": 1000341,\n                \"growthPercent\": 0.0001,\n                \"adjustedGrowthPercent\": 0.0001,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 341\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031832F|S|GB0003101523\",\n                                \"031832F|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.7296,\n                \"positions\": [\n                    {\n                        \"id\": \"031832F|S|GB0003101523\",\n                        \"accountId\": \"031832F\",\n                        \"accountName\": \"GIA 6 De-merger\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:18:01.262Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": -100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBCB\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:17:56.719Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 226757.37,\n                                \"value\": 1000000,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 1000000,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 1000000,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBCC\",\n                                \"transactionCode\": \"DMRO\",\n                                \"narrative\": \"Stock Demerger\",\n                                \"postDate\": \"2024-11-18T12:18:01.262Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": -1000441\n                                },\n                                \"quantity\": -226857.37,\n                                \"value\": 1000441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": -2000882,\n                                \"profitLoss\": -2000882,\n                                \"bookValue\": -1000441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -1000441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b307982ac9498da3aa48f\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBCC\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": -441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": -441,\n                        \"growth\": 341,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": -100,\n                        \"adjustedGrowth\": 341,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 341\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    },\n                    {\n                        \"id\": \"031832F|S|GB00B39J2M42\",\n                        \"accountId\": \"031832F\",\n                        \"accountName\": \"GIA 6 De-merger\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848S\",\n                        \"assetName\": \"United Utilities Group PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:18:05.773Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B39J2M42\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 453714.74,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBCD\",\n                                \"transactionCode\": \"DMRI\",\n                                \"narrative\": \"Stock Demerger\",\n                                \"postDate\": \"2024-11-18T12:18:05.772Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 1000441\n                                },\n                                \"quantity\": 453714.74,\n                                \"value\": 1000441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 1000441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 1000441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b307d82ac9498da3aa491\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBCD\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 1000441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 1000441,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentValue\": 1000441,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0318331\",\n                \"name\": \"GIA 7 Conversion\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"0318331|S|GB0003101523\",\n                                \"0318331|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001,\n                \"positions\": [\n                    {\n                        \"id\": \"0318331|S|GB0003101523\",\n                        \"accountId\": \"0318331\",\n                        \"accountName\": \"GIA 7 Conversion\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:18:32.873Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 0,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBCG\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:18:28.493Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBCL\",\n                                \"transactionCode\": \"CVNO\",\n                                \"narrative\": \"Stock Conversion\",\n                                \"postDate\": \"2024-11-18T12:18:32.873Z\",\n                                \"valueDate\": \"2024-08-12T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": -441\n                                },\n                                \"quantity\": -100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-12T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": -882,\n                                \"profitLoss\": -882,\n                                \"bookValue\": -441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b309882ac9498da3aa49f\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBCL\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 0,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 0,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 0,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    },\n                    {\n                        \"id\": \"0318331|S|GB00B39J2M42\",\n                        \"accountId\": \"0318331\",\n                        \"accountName\": \"GIA 7 Conversion\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848S\",\n                        \"assetName\": \"United Utilities Group PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:18:37.402Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B39J2M42\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBCM\",\n                                \"transactionCode\": \"CVNI\",\n                                \"narrative\": \"Stock Conversion\",\n                                \"postDate\": \"2024-11-18T12:18:37.402Z\",\n                                \"valueDate\": \"2024-08-12T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 441\n                                },\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-12T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b309d82ac9498da3aa4a1\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBCM\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentValue\": 441,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0318335\",\n                \"name\": \"GIA 8 Reinvestment, Migration Stock Transfer and Bonus Issue\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 2858.83,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 3399.83,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 3399.83,\n                \"growth\": -141.17,\n                \"adjustedGrowth\": -141.17,\n                \"closingCashValue\": 2558.83,\n                \"uninvestedCash\": 2558.83,\n                \"closingStockValue\": 300,\n                \"growthPercent\": -0.0471,\n                \"adjustedGrowthPercent\": -0.0471,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -541\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0.0007,\n                \"positions\": [\n                    {\n                        \"id\": \"0318335|S|GB0003101523\",\n                        \"accountId\": \"0318335\",\n                        \"accountName\": \"GIA 8 Reinvestment, Migration Stock Transfer and Bonus Issue\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:19:17.944Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 3\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 300,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBDP\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:19:09.134Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBF1\",\n                                \"transactionCode\": \"MSRI\",\n                                \"narrative\": \"Re-investment\",\n                                \"postDate\": \"2024-11-18T12:19:13.565Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 200\n                                },\n                                \"quantity\": 100,\n                                \"value\": 200,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 200,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 200,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBF5\",\n                                \"transactionCode\": \"BNII\",\n                                \"narrative\": \"Stock Bonus Issue\",\n                                \"postDate\": \"2024-11-18T12:19:17.944Z\",\n                                \"valueDate\": \"2024-08-17T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 200\n                                },\n                                \"quantity\": 100,\n                                \"value\": 200,\n                                \"executionTime\": \"2024-08-17T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 200,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 200,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b30c5e3b329a1495a05a3\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 841,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 841,\n                        \"growth\": -541,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 300,\n                        \"adjustedGrowth\": -541,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": -541\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.6433,\n                        \"adjustedGrowthPercent\": -0.6433\n                    }\n                ]\n            },\n            {\n                \"id\": \"0318343\",\n                \"name\": \"GIA 9 Adjustment and Internal Stock Transfer In\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 159.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -340.02,\n                \"adjustedGrowth\": -340.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 101,\n                \"growthPercent\": -0.68,\n                \"adjustedGrowthPercent\": -0.68,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -340\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                        \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"0318343|S|GB0003101523\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0,\n                \"positions\": [\n                    {\n                        \"id\": \"0318343|S|GB0003101523\",\n                        \"accountId\": \"0318343\",\n                        \"accountName\": \"GIA 9 Adjustment and Internal Stock Transfer In\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:19:45.018Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 101,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBFF\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:19:40.530Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBFK\",\n                                \"transactionCode\": \"ADJI\",\n                                \"narrative\": \"Stock Adjustment\",\n                                \"postDate\": \"2024-11-18T12:19:45.017Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 0\n                                },\n                                \"quantity\": 1,\n                                \"value\": 0,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 0,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 0,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                                        \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b30e1e3b329a1495a05bc\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                                \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBFK\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": -340,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 101,\n                        \"adjustedGrowth\": -340,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": -340\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.771,\n                        \"adjustedGrowthPercent\": -0.771\n                    }\n                ]\n            },\n            {\n                \"id\": \"031834H\",\n                \"name\": \"GIA 10 Internal Stock Transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 158.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -341.02,\n                \"adjustedGrowth\": -341.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -0.682,\n                \"adjustedGrowthPercent\": -0.682,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0,\n                \"positions\": [\n                    {\n                        \"id\": \"031834H|S|GB0003101523\",\n                        \"accountId\": \"031834H\",\n                        \"accountName\": \"GIA 10 Internal Stock Transfer\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:20:08.027Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBFM\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:20:08.027Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b30f8e3b329a1495a05c0\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": -341,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 100,\n                        \"adjustedGrowth\": -341,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": -341\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.7732,\n                        \"adjustedGrowthPercent\": -0.7732\n                    }\n                ]\n            },\n            {\n                \"id\": \"031835H\",\n                \"name\": \"GIA 11 Consolidation\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 499.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 499.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 499.98,\n                \"growth\": -0.02,\n                \"adjustedGrowth\": -0.02,\n                \"closingCashValue\": 58.98,\n                \"uninvestedCash\": 58.98,\n                \"closingStockValue\": 441,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [\n                    {\n                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                        \"fields\": [\n                            \"bookValue\",\n                            \"profitLoss\",\n                            \"cgtData\"\n                        ],\n                        \"entity\": {\n                            \"type\": \"POSITION\",\n                            \"ids\": [\n                                \"031835H|S|GB0003101523\",\n                                \"031835H|S|GB00B39J2M42\"\n                            ]\n                        }\n                    }\n                ],\n                \"allocation\": 0.0001,\n                \"positions\": [\n                    {\n                        \"id\": \"031835H|S|GB0003101523\",\n                        \"accountId\": \"031835H\",\n                        \"accountName\": \"GIA 11 Consolidation\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:20:43.647Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 0,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBFS\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:20:39.281Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBG1\",\n                                \"transactionCode\": \"CSLO\",\n                                \"narrative\": \"Stock Consolidation\",\n                                \"postDate\": \"2024-11-18T12:20:43.647Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 441\n                                },\n                                \"quantity\": -100,\n                                \"value\": -441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": -441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b311be3b329a1495a05d0\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBG1\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 0,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 0,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 0,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    },\n                    {\n                        \"id\": \"031835H|S|GB00B39J2M42\",\n                        \"accountId\": \"031835H\",\n                        \"accountName\": \"GIA 11 Consolidation\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848S\",\n                        \"assetName\": \"United Utilities Group PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:20:48.055Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB00B39J2M42\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 50,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBG2\",\n                                \"transactionCode\": \"CSLI\",\n                                \"narrative\": \"Stock Consolidation\",\n                                \"postDate\": \"2024-11-18T12:20:48.055Z\",\n                                \"valueDate\": \"2024-08-15T00:00:00.000Z\",\n                                \"information\": {\n                                    \"bookCostAmount\": 441\n                                },\n                                \"quantity\": 50,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-15T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0\n                                },\n                                \"disclaimers\": [\n                                    {\n                                        \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                        \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                        \"fields\": [\n                                            \"bookValue\",\n                                            \"profitLoss\",\n                                            \"cgtData\"\n                                        ]\n                                    }\n                                ]\n                            }\n                        ],\n                        \"updateId\": \"673b3120e3b329a1495a05d2\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [\n                            {\n                                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                                \"fields\": [\n                                    \"bookValue\",\n                                    \"profitLoss\",\n                                    \"cgtData\"\n                                ],\n                                \"entity\": {\n                                    \"type\": \"TRANSACTION\",\n                                    \"ids\": [\n                                        \"0000JBBG2\"\n                                    ]\n                                }\n                            }\n                        ],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": 0,\n                        \"transferValue\": 0,\n                        \"currentValue\": 441,\n                        \"adjustedGrowth\": 0,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": 0\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": 0,\n                        \"adjustedGrowthPercent\": 0\n                    }\n                ]\n            },\n            {\n                \"id\": \"0318362\",\n                \"name\": \"GIA 12 Redemption\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 108.99,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 279.49,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 279.49,\n                \"growth\": -391.01,\n                \"adjustedGrowth\": -391.01,\n                \"closingCashValue\": 58.99,\n                \"uninvestedCash\": 58.99,\n                \"closingStockValue\": 50,\n                \"growthPercent\": -0.782,\n                \"adjustedGrowthPercent\": -0.782,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": -220.5,\n                    \"unrealisedProfitLoss\": -170.5\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0,\n                \"positions\": [\n                    {\n                        \"id\": \"0318362|S|GB0003101523\",\n                        \"accountId\": \"0318362\",\n                        \"accountName\": \"GIA 12 Redemption\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:21:15.159Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 2\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 50,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBG7\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:21:10.690Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"sellTransactionId\": \"0000JBBG8\"\n                                        }\n                                    ],\n                                    \"realisedProfitLoss\": 0\n                                }\n                            },\n                            {\n                                \"transactionId\": \"0000JBBG8\",\n                                \"transactionCode\": \"MSRD\",\n                                \"narrative\": \"Redemption of Stock\",\n                                \"postDate\": \"2024-11-18T12:21:15.159Z\",\n                                \"valueDate\": \"2024-08-17T00:00:00.000Z\",\n                                \"quantity\": -50,\n                                \"value\": 0,\n                                \"executionTime\": \"2024-08-17T00:00:00.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": -220.5,\n                                \"profitLoss\": -220.5,\n                                \"bookValue\": -220.5,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": -220.5,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": -220.5,\n                                    \"matches\": [\n                                        {\n                                            \"matchType\": \"SAME_DAY_MATCH\",\n                                            \"matchDate\": \"2024-11-18T00:00:00.000Z\",\n                                            \"matchedUnits\": 50,\n                                            \"matchedTotalBookValue\": 220.5,\n                                            \"buyTransactionIds\": [\n                                                \"0000JBBG7\"\n                                            ]\n                                        }\n                                    ]\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b313be3b329a1495a05e0\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 220.5,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 220.5,\n                        \"growth\": -170.5,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 50,\n                        \"adjustedGrowth\": -170.5,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": -220.5,\n                            \"unrealisedProfitLoss\": -170.5\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.7732,\n                        \"adjustedGrowthPercent\": -0.7732\n                    }\n                ]\n            },\n            {\n                \"id\": \"031836B\",\n                \"name\": \"GIA 13 Cash dividend and full stock transfer\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"Seccl Invest\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"discretionary\": false,\n                    \"clientProductId\": \"673b2ef98fe9473e47651aaa\"\n                },\n                \"currentValue\": 109.98,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 450.98,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 450.98,\n                \"growth\": -331.02,\n                \"adjustedGrowth\": -331.02,\n                \"closingCashValue\": 9.98,\n                \"uninvestedCash\": 9.98,\n                \"closingStockValue\": 100,\n                \"growthPercent\": -0.7506,\n                \"adjustedGrowthPercent\": -0.7506,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": -341\n                },\n                \"disclaimers\": [],\n                \"allocation\": 0,\n                \"positions\": [\n                    {\n                        \"id\": \"031836B|S|GB0003101523\",\n                        \"accountId\": \"031836B\",\n                        \"accountName\": \"GIA 13 Cash dividend and full stock transfer\",\n                        \"accountType\": \"Wrapper\",\n                        \"assetId\": \"2848P\",\n                        \"assetName\": \"Electronic Data Processing PLC\",\n                        \"auditDetails\": {\n                            \"application\": \"PortfolioProcessor\",\n                            \"updateDate\": \"2024-11-18T12:21:54.539Z\",\n                            \"userFirmId\": \"BACKGROUND\",\n                            \"userId\": \"Background\",\n                            \"version\": 1\n                        },\n                        \"currency\": \"GBP\",\n                        \"firmId\": \"SECCI\",\n                        \"isin\": \"GB0003101523\",\n                        \"nodeId\": \"0\",\n                        \"positionType\": \"Stock\",\n                        \"quantity\": 100,\n                        \"transactions\": [\n                            {\n                                \"transactionId\": \"0000JBBGB\",\n                                \"transactionCode\": \"BUY\",\n                                \"narrative\": \"Buy\",\n                                \"postDate\": \"2024-11-18T12:21:54.538Z\",\n                                \"valueDate\": \"2024-08-11T00:00:00.000Z\",\n                                \"quantity\": 100,\n                                \"value\": 441,\n                                \"executionTime\": \"2024-08-11T11:14:03.000Z\",\n                                \"accountWrapperType\": \"GIA\",\n                                \"adjustedProfitLoss\": 0,\n                                \"profitLoss\": 0,\n                                \"bookValue\": 441,\n                                \"transferBookValue\": 0,\n                                \"nonTransferBookValue\": 441,\n                                \"cgtData\": {\n                                    \"realisedProfitLoss\": 0,\n                                    \"matches\": []\n                                }\n                            }\n                        ],\n                        \"updateId\": \"673b3162e3b329a1495a05e4\",\n                        \"wrapperType\": \"GIA\",\n                        \"prices\": [\n                            {\n                                \"assetId\": \"2848P\",\n                                \"insertDate\": \"2025-02-06T00:00:00.000Z\",\n                                \"priceDate\": \"2024-11-15T00:00:00.000Z\",\n                                \"ask\": 1,\n                                \"mid\": 1,\n                                \"bid\": 1,\n                                \"quoteUnit\": 1,\n                                \"minimumTransferUnit\": 0.000001,\n                                \"currency\": \"GBP\",\n                                \"exchangeRates\": [],\n                                \"instrumentType\": \"Equity\"\n                            }\n                        ],\n                        \"assetInstrumentType\": \"Equity\",\n                        \"assetCountryOfIssue\": \"GB\",\n                        \"accountWrapperType\": \"GIA\",\n                        \"disclaimers\": [],\n                        \"bookValue\": 441,\n                        \"transferBookValue\": 0,\n                        \"nonTransferBookValue\": 441,\n                        \"growth\": -341,\n                        \"transferValue\": 0,\n                        \"currentPrice\": 1,\n                        \"currentSellPrice\": 1,\n                        \"instrumentType\": \"Equity\",\n                        \"minimumTransferUnit\": 0.000001,\n                        \"currentPriceDate\": \"2024-11-15T00:00:00.000Z\",\n                        \"currentValue\": 100,\n                        \"adjustedGrowth\": -341,\n                        \"cgtData\": {\n                            \"realisedProfitLoss\": 0,\n                            \"unrealisedProfitLoss\": -341\n                        },\n                        \"openingValue\": 0,\n                        \"growthPercent\": -0.7732,\n                        \"adjustedGrowthPercent\": -0.7732\n                    }\n                ]\n            }\n        ],\n        \"bookValue\": 3847392.51,\n        \"nonTransferBookValue\": 3847392.51,\n        \"transferBookValue\": 0,\n        \"openingValue\": 0,\n        \"currentValue\": 3838058.16,\n        \"uninvestedCash\": 1807534.01,\n        \"closingCashValue\": 1807534.01,\n        \"growth\": -8227.84,\n        \"growthPercent\": -0.0031,\n        \"adjustedGrowth\": -8227.84,\n        \"adjustedGrowthPercent\": -0.0031,\n        \"transferValue\": 0,\n        \"cgtData\": {\n            \"realisedProfitLoss\": null,\n            \"unrealisedProfitLoss\": null,\n            \"closingGiaStockValue\": 2030524.15\n        },\n        \"disclaimers\": [\n            {\n                \"type\": \"ASSET_UNSUPPORTED_TYPE\",\n                \"text\": \"We do not currently support this asset type. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"02J5F79\"\n                    ]\n                }\n            },\n            {\n                \"type\": \"TRANSACTION_CORPORATE_ACTION\",\n                \"text\": \"We do not apply matching rules across some corporate actions. This may mean the book costs are inaccurate, CGT values calculated could be incorrect as a result. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"bookValue\",\n                    \"profitLoss\",\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"031832C\",\n                        \"031832D\",\n                        \"031832F\",\n                        \"0318331\",\n                        \"031835H\"\n                    ]\n                }\n            },\n            {\n                \"type\": \"TRANSACTION_MISSING_BOOK_COST\",\n                \"text\": \"This/Some transactions are missing book costs. For more information please read the CGT guide.\",\n                \"fields\": [\n                    \"bookValue\",\n                    \"profitLoss\",\n                    \"cgtData\"\n                ],\n                \"entity\": {\n                    \"type\": \"ACCOUNT\",\n                    \"ids\": [\n                        \"0318343\"\n                    ]\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"b781d748-0da8-4733-a812-a33d81922520"},{"name":"CGT report","id":"edd0b85d-c1c1-40d6-90cc-8e972f7317da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{apiToken}}"}],"url":"{{apiRoute}}/portfolio/cgtreport/{{firmId}}/{{clientId}}","description":"<h2 id=\"cgt-report\">CGT Report</h2>\n<p>Retrieves the Capital Gains Tax (CGT) report data for a specific client. The response includes a summary of the client's accounts, current values, book values, and CGT figures covering both realised and unrealised profit/loss.</p>\n<hr />\n<h2 id=\"path-variables\">Path Variables</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The unique identifier of the firm</td>\n</tr>\n<tr>\n<td><code>clientId</code></td>\n<td>The unique identifier of the client</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"response-structure\">Response Structure</h2>\n<p>A successful request returns a <code>200 OK</code> with a top-level <code>data</code> object containing:</p>\n<ul>\n<li><p><strong><code>id</code></strong> – The client's unique identifier</p>\n</li>\n<li><p><strong><code>name</code></strong> – Full name of the client</p>\n</li>\n<li><p><strong><code>firmId</code></strong> – The firm the client belongs to</p>\n</li>\n<li><p><strong><code>currency</code></strong> – The client's base currency (e.g. <code>GBP</code>)</p>\n</li>\n<li><p><strong><code>status</code></strong> – Client status (e.g. <code>Active</code>)</p>\n</li>\n<li><p><strong><code>clientType</code></strong> – Type of client (e.g. <code>Individual</code>)</p>\n</li>\n<li><p><strong><code>currentValue</code></strong> – Current total portfolio value</p>\n</li>\n<li><p><strong><code>bookValue</code></strong> – Total book (cost) value of the portfolio</p>\n</li>\n<li><p><strong><code>growth</code></strong> – Overall portfolio growth</p>\n</li>\n<li><p><strong><code>cgtData</code></strong> – Client-level CGT summary:</p>\n<ul>\n<li><p><code>realisedProfitLoss</code> – Total realised profit or loss</p>\n</li>\n<li><p><code>unrealisedProfitLoss</code> – Total unrealised profit or loss</p>\n</li>\n<li><p><code>closingGiaStockValue</code> – Closing stock value for GIA wrappers</p>\n</li>\n</ul>\n</li>\n<li><p><strong><code>accounts</code></strong> – Array of account objects, each containing:</p>\n<ul>\n<li><p><code>id</code>, <code>name</code>, <code>accountType</code>, <code>wrapperType</code>, <code>currency</code>, <code>status</code></p>\n</li>\n<li><p><code>currentValue</code>, <code>bookValue</code>, <code>growth</code></p>\n</li>\n<li><p><code>cgtData</code> – Account-level CGT figures (<code>realisedProfitLoss</code>, <code>unrealisedProfitLoss</code>)</p>\n</li>\n<li><p><code>positions</code> – Array of held positions within the account. Each position object contains:</p>\n<ul>\n<li><p><code>accountId</code> – The ID of the account the position belongs to</p>\n</li>\n<li><p><code>accountName</code> – The name of the account</p>\n</li>\n<li><p><code>accountType</code> – Type of account (e.g. <code>Wrapper</code>)</p>\n</li>\n<li><p><code>assetId</code> – The unique identifier of the asset</p>\n</li>\n<li><p><code>assetName</code> – Full name of the asset</p>\n</li>\n<li><p><code>isin</code> – ISIN code of the asset</p>\n</li>\n<li><p><code>currency</code> – Currency of the position</p>\n</li>\n<li><p><code>firmId</code> – The firm identifier</p>\n</li>\n<li><p><code>positionType</code> – Type of position (e.g. <code>Stock</code>)</p>\n</li>\n<li><p><code>quantity</code> – Number of units held</p>\n</li>\n<li><p><code>currentValue</code> – Current market value of the position</p>\n</li>\n<li><p><code>currentPrice</code> – Current price per unit</p>\n</li>\n<li><p><code>currentSellPrice</code> – Current sell price per unit</p>\n</li>\n<li><p><code>currentPriceDate</code> – Date of the current price</p>\n</li>\n<li><p><code>bookValue</code> – Book (cost) value of the position</p>\n</li>\n<li><p><code>growth</code> – Growth in value</p>\n</li>\n<li><p><code>growthPercent</code> – Growth as a percentage</p>\n</li>\n<li><p><code>adjustedGrowth</code> – Adjusted growth value</p>\n</li>\n<li><p><code>wrapperType</code> – Wrapper type (e.g. <code>GIA</code>)</p>\n</li>\n<li><p><code>instrumentType</code> – Instrument type (e.g. <code>Fund</code>, <code>Equity</code>)</p>\n</li>\n<li><p><code>assetInstrumentType</code> – Asset instrument type</p>\n</li>\n<li><p><code>assetCountryOfIssue</code> – Country of issue for the asset</p>\n</li>\n<li><p><code>openingValue</code> – Opening value of the position</p>\n</li>\n<li><p><code>cgtData</code> – Position-level CGT data:</p>\n<ul>\n<li><p><code>realisedProfitLoss</code> – Realised profit or loss (may be <code>null</code> for unsupported asset types)</p>\n</li>\n<li><p><code>unrealisedProfitLoss</code> – Unrealised profit or loss (may be <code>null</code> for unsupported asset types)</p>\n</li>\n</ul>\n</li>\n<li><p><code>transactions</code> – Array of transactions for this position, each containing:</p>\n<ul>\n<li><p><code>transactionId</code> – Unique transaction identifier</p>\n</li>\n<li><p><code>transactionCode</code> – Code indicating transaction type (e.g. <code>BUY</code>, <code>SELL</code>)</p>\n</li>\n<li><p><code>narrative</code> – Human-readable description (e.g. <code>Buy</code>, <code>Sell</code>)</p>\n</li>\n<li><p><code>quantity</code> – Number of units transacted</p>\n</li>\n<li><p><code>value</code> – Value of the transaction</p>\n</li>\n<li><p><code>postDate</code> – Date the transaction was posted</p>\n</li>\n<li><p><code>valueDate</code> – Value date of the transaction</p>\n</li>\n<li><p><code>executionTime</code> – Execution timestamp</p>\n</li>\n<li><p><code>bookValue</code> – Book value of the transaction</p>\n</li>\n<li><p><code>profitLoss</code> – Profit or loss on the transaction</p>\n</li>\n<li><p><code>adjustedProfitLoss</code> – Adjusted profit or loss</p>\n</li>\n<li><p><code>accountWrapperType</code> – Wrapper type of the account</p>\n</li>\n<li><p><code>cgtData</code> – Transaction-level CGT data:</p>\n<ul>\n<li><p><code>realisedProfitLoss</code> – Realised profit or loss (may be <code>null</code>)</p>\n</li>\n<li><p><code>matches</code> – Array of CGT matching records, each with:</p>\n<ul>\n<li><p><code>matchType</code> – Type of match (e.g. <code>SAME_DAY_MATCH</code>)</p>\n</li>\n<li><p><code>matchDate</code> – Date of the match</p>\n</li>\n<li><p><code>matchedUnits</code> – Number of units matched</p>\n</li>\n<li><p><code>matchedTotalBookValue</code> – Total book value of matched units</p>\n</li>\n<li><p><code>buyTransactionIds</code> / <code>sellTransactionId</code> – Related transaction IDs</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>disclaimers</code> – Array of disclaimer objects for unsupported asset types, each with:</p>\n<ul>\n<li><p><code>type</code> – Disclaimer type (e.g. <code>ASSET_UNSUPPORTED_TYPE</code>)</p>\n</li>\n<li><p><code>text</code> – Human-readable disclaimer message</p>\n</li>\n<li><p><code>fields</code> – Fields affected by the disclaimer (e.g. <code>[\"cgtData\"]</code>)</p>\n</li>\n</ul>\n</li>\n<li><p><code>prices</code> – Array of price objects for the asset</p>\n</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<hr />\n<h2 id=\"example-response\">Example Response</h2>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"accounts\": [\n      {\n        \"id\": \"A0CC233\",\n        \"name\": \"Dream Cave GIA\",\n        \"accountType\": \"Wrapper\",\n        \"currency\": \"GBP\",\n        \"wrapperType\": \"GIA\",\n        \"status\": \"Active\",\n        \"clientId\": \"C06PCJ3\",\n        \"currentValue\": 100000,\n        \"bookValue\": 100000,\n        \"growth\": 0,\n        \"cgtData\": {\n          \"realisedProfitLoss\": 0,\n          \"unrealisedProfitLoss\": 0\n        },\n        \"positions\": [\n          {\n            \"accountId\": \"A0CC233\",\n            \"accountName\": \"Dream Cave GIA\",\n            \"accountType\": \"Wrapper\",\n            \"assetId\": \"28PPL\",\n            \"assetName\": \"Apple Inc\",\n            \"isin\": \"US0378331005\",\n            \"currency\": \"GBP\",\n            \"firmId\": \"SECCI\",\n            \"positionType\": \"Stock\",\n            \"quantity\": 201,\n            \"currentValue\": 22857.47,\n            \"currentPrice\": 113.71875,\n            \"currentSellPrice\": 113.703125,\n            \"currentPriceDate\": \"2022-11-11T00:00:00.000Z\",\n            \"bookValue\": 100102.27,\n            \"growth\": -77244.8,\n            \"growthPercent\": -0.7717,\n            \"adjustedGrowth\": -77244.8,\n            \"wrapperType\": \"GIA\",\n            \"instrumentType\": \"Equity\",\n            \"assetInstrumentType\": \"Equity\",\n            \"assetCountryOfIssue\": \"US\",\n            \"openingValue\": 0,\n            \"cgtData\": {\n              \"realisedProfitLoss\": 0,\n              \"unrealisedProfitLoss\": -77244.8\n            },\n            \"transactions\": [\n              {\n                \"transactionId\": \"00029PM5Q\",\n                \"transactionCode\": \"BUY\",\n                \"narrative\": \"Buy\",\n                \"quantity\": 1,\n                \"value\": 2.27,\n                \"postDate\": \"2025-12-22T16:09:15.824Z\",\n                \"valueDate\": \"2025-12-22T16:09:15.521Z\",\n                \"executionTime\": \"2025-12-22T00:00:00.521Z\",\n                \"bookValue\": 2.27,\n                \"profitLoss\": 0,\n                \"adjustedProfitLoss\": 0,\n                \"accountWrapperType\": \"GIA\",\n                \"cgtData\": {\n                  \"realisedProfitLoss\": 0,\n                  \"matches\": []\n                }\n              }\n            ],\n            \"disclaimers\": [],\n            \"prices\": [\n              {\n                \"assetId\": \"28PPL\",\n                \"priceDate\": \"2022-11-11T00:00:00.000Z\",\n                \"ask\": 145.56,\n                \"mid\": 145.54,\n                \"bid\": 145.54,\n                \"currency\": \"GBP\"\n              }\n            ]\n          }\n        ]\n      }\n    ]\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["portfolio","cgtreport","{{firmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"095792f6-d8a7-4f0e-9659-344d9135d147","name":"CGT report","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{apiToken}}"}],"url":"{{apiRoute}}/portfolio/cgtreport/{{firmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"accounts\": [\n            {\n                \"id\": \"A0CC233\",\n                \"name\": \"Dream Cave GIA\",\n                \"accountType\": \"Wrapper\",\n                \"currency\": \"GBP\",\n                \"wrapperType\": \"GIA\",\n                \"nodeId\": \"0\",\n                \"nodeName\": \"SECCI\",\n                \"status\": \"Active\",\n                \"recurringPayment\": false,\n                \"wrapperDetail\": {\n                    \"wrapperType\": \"GIA\",\n                    \"clientProductId\": \"6995bab4a61d5057e71410a9\"\n                },\n                \"clientId\": \"C06PCJ3\",\n                \"currentValue\": 100000,\n                \"openingValue\": 0,\n                \"openingStockValue\": 0,\n                \"openingCashValue\": 0,\n                \"bookValue\": 100000,\n                \"transferBookValue\": 0,\n                \"nonTransferBookValue\": 100000,\n                \"growth\": 0,\n                \"adjustedGrowth\": 0,\n                \"closingCashValue\": 100000,\n                \"uninvestedCash\": 90200,\n                \"closingStockValue\": 0,\n                \"growthPercent\": 0,\n                \"adjustedGrowthPercent\": 0,\n                \"transferValue\": 0,\n                \"cgtData\": {\n                    \"realisedProfitLoss\": 0,\n                    \"unrealisedProfitLoss\": 0\n                },\n                \"disclaimers\": [],\n                \"allocation\": 1,\n                \"positions\": []\n            }\n        ],\n        \"firmId\": \"SECCI\",\n        \"id\": \"C06PCJ3\",\n        \"name\": \"Mrs Corporate Test 4\",\n        \"firstName\": \"Corporate\",\n        \"surname\": \"Test 4\",\n        \"language\": \"en\",\n        \"currency\": \"GBP\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"nodeName\": [\n            \"Seccl Invest\"\n        ],\n        \"status\": \"Active\",\n        \"clientType\": \"Individual\",\n        \"linkedEntityClients\": [\n            {\n                \"id\": \"C06PCJ4\",\n                \"name\": \"Missing Stakeholder Industries\",\n                \"role\": \"Director\",\n                \"clientAndAccountManagement\": true\n            },\n            {\n                \"id\": \"C06PCJY\",\n                \"name\": \"Seccl Industries\",\n                \"role\": \"Director\",\n                \"clientAndAccountManagement\": true\n            }\n        ],\n        \"completeTransactions\": [],\n        \"bookValue\": 100000,\n        \"nonTransferBookValue\": 100000,\n        \"transferBookValue\": 0,\n        \"openingValue\": 0,\n        \"currentValue\": 100000,\n        \"uninvestedCash\": 90200,\n        \"closingCashValue\": 100000,\n        \"growth\": 0,\n        \"growthPercent\": 0,\n        \"adjustedGrowth\": 0,\n        \"adjustedGrowthPercent\": 0,\n        \"transferValue\": 0,\n        \"cgtData\": {\n            \"realisedProfitLoss\": 0,\n            \"unrealisedProfitLoss\": 0,\n            \"closingGiaStockValue\": 0\n        },\n        \"disclaimers\": []\n    }\n}"}],"_postman_id":"edd0b85d-c1c1-40d6-90cc-8e972f7317da"}],"id":"eab0ebab-19fc-4e43-bf5f-916a510a488b","description":"<p>URL to download CGT report</p>\n","_postman_id":"eab0ebab-19fc-4e43-bf5f-916a510a488b"},{"name":"Capital gains scenario tool","item":[{"name":"Simulator without orders","id":"b3cdf70f-b3ae-4d50-9cb5-76e792486722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"00DGD9B\",\n    \"firmId\": \"SECCI\",\n    \"simulatedOrders\": {\n        \"28PPL\": {\n            \"unit\": 1,\n            \"unitType\": \"Quantity\",\n            \"movementType\": \"Sell\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/cgtsimulator/orders","description":"<h2 id=\"simulator-without-orders\">Simulator without orders</h2>\n<p>Retrieves a Capital Gains Tax (CGT) portfolio report for a given account <strong>without</strong> any simulated orders applied. Use this endpoint to get the baseline CGT position for an account before modelling any buy/sell scenarios.</p>\n<p>This is the counterpart to the <strong>Simulate orders</strong> endpoint — use this first to establish the current state, then compare against a simulated scenario.</p>\n<hr />\n<h3 id=\"authentication\">Authentication</h3>\n<p>Requires a valid API token passed as a request header:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Header</th>\n<th>Value</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>api-token</code></td>\n<td><code>{{apiToken}}</code></td>\n</tr>\n<tr>\n<td><code>content-type</code></td>\n<td><code>application/json</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"request-body\">Request body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>string</td>\n<td>✅</td>\n<td>The account identifier to retrieve the CGT report for</td>\n</tr>\n<tr>\n<td><code>firmId</code></td>\n<td>string</td>\n<td>✅</td>\n<td>The firm identifier associated with the account</td>\n</tr>\n<tr>\n<td><code>simulatedOrders</code></td>\n<td>object</td>\n<td>❌</td>\n<td>Pass an empty object <code>{}</code> or omit entirely to retrieve the baseline report with no simulated trades</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example body (no simulated orders):</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"accountId\": \"00DGD9B\",\n    \"firmId\": \"SECCI\",\n    \"simulatedOrders\": {}\n}\n\n</code></pre>\n<hr />\n<h3 id=\"response\">Response</h3>\n<p>Returns a CGT portfolio report including:</p>\n<ul>\n<li><p><strong>Account metadata</strong> — <code>accountId</code>, <code>wrapperType</code>, <code>status</code>, <code>currency</code>, <code>fromDate</code>, <code>toDate</code></p>\n</li>\n<li><p><strong>Investments</strong> — a list of holdings with <code>assetId</code>, <code>assetName</code>, <code>isin</code>, <code>positionId</code>, <code>bookValue</code>, <code>allocation</code>, <code>quantity</code>, <code>value</code>, <code>realisedProfitLoss</code>, <code>price</code>, and any applicable <code>disclaimers</code></p>\n</li>\n<li><p><strong>Totals</strong> — aggregate <code>value</code>, <code>bookValue</code>, and <code>realisedProfitLoss</code> across all holdings</p>\n</li>\n<li><p><strong>Disclaimers</strong> — any asset-level warnings (e.g. unsupported asset types for CGT calculation)</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"protocol":"https","path":["cgtsimulator","orders"],"host":["pfolio-api-staging","seccl","tech"],"query":[],"variable":[]}},"response":[{"id":"c3e44e3d-6337-46b8-bb35-11ea1856dcc3","name":"Simulator without orders","originalRequest":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"api-token","value":"your-api-token-here"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"00DGD9B\",\n    \"firmId\": \"SECCI\",\n    \"simulatedOrders\": {}\n}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/cgtsimulator/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"},{"key":"api-token","value":"your-api-token-here"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"accountId\":\"00DGD9B\",\"wrapperType\":\"GIA\",\"status\":\"Active\",\"currency\":\"GBP\",\"fromDate\":\"2025-04-06T00:00:00.000Z\",\"toDate\":\"2026-03-11T00:00:00.000Z\",\"disclaimers\":[{\"type\":\"ASSET_UNSUPPORTED_TYPE\",\"text\":\"We do not currently support this asset type\",\"fields\":[\"cgtData\"],\"entity\":{\"type\":\"POSITION\",\"ids\":[\"00DGD9B|S|GB00B4NXY349\"]}}],\"investments\":[{\"assetId\":\"284JP\",\"assetName\":\"J Sainsbury PLC\",\"isin\":\"GB00B019KW72\",\"positionId\":\"00DGD9B|S|GB00B019KW72\",\"bookValue\":3.44,\"allocation\":0.0003,\"quantity\":1.7801047120419,\"value\":17.8,\"realisedProfitLoss\":0,\"price\":10,\"disclaimers\":[]},{\"assetId\":\"285HS\",\"assetName\":\"GlaxoSmithKline PLC\",\"isin\":\"GB0009252882\",\"positionId\":\"00DGD9B|S|GB0009252882\",\"bookValue\":2236.1,\"allocation\":0.0402,\"quantity\":131.61896916921629,\"value\":2237.52,\"realisedProfitLoss\":0,\"price\":17,\"disclaimers\":[]},{\"assetId\":\"28PPL\",\"assetName\":\"Apple Inc\",\"isin\":\"US0378331005\",\"positionId\":\"00DGD9B|S|US0378331005\",\"bookValue\":305,\"allocation\":0.0043,\"quantity\":2.128923007450892,\"value\":242.1,\"realisedProfitLoss\":0,\"price\":113.71875,\"disclaimers\":[]}],\"totals\":{\"realisedProfitLoss\":0,\"value\":55705.57,\"bookValue\":55752.7}}}"}],"_postman_id":"b3cdf70f-b3ae-4d50-9cb5-76e792486722"},{"name":"Simulate orders","id":"498e61a3-d1d9-4aac-a386-884c3a683ccf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"content-type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"accountId\": \"00DGD9B\",\n    \"firmId\": \"SECCI\",\n    \"simulatedOrders\": {\n        \"28PPL\": {\n            \"unit\": 1,\n            \"unitType\": \"Quantity\",\n            \"movementType\": \"Sell\"\n        }\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/cgtsimulator/orders","description":"<h2 id=\"simulate-orders\">Simulate orders</h2>\n<p>Simulates one or more sell orders against an account and returns a projected Capital Gains impact, showing the estimated impact on the account without executing any real trades.</p>\n<p>This is useful for modelling the tax implications of potential trades before committing to them.</p>\n<hr />\n<h3 id=\"request-body\">Request body</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>string</td>\n<td>✅</td>\n<td>The ID of the account to simulate orders for</td>\n</tr>\n<tr>\n<td><code>firmId</code></td>\n<td>string</td>\n<td>✅</td>\n<td>The ID of the firm the account belongs to</td>\n</tr>\n<tr>\n<td><code>simulatedOrders</code></td>\n<td>object</td>\n<td>✅</td>\n<td>A map of asset IDs to order details (see below)</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"simulatedorders--per-asset\"><code>simulatedOrders</code> — per asset</h4>\n<p>Each key in <code>simulatedOrders</code> is an <strong>asset ID</strong> (e.g. <code>28PPL</code>), and the value is an object with the following fields:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>unit</code></td>\n<td>number</td>\n<td>✅</td>\n<td>The number of units or the monetary amount to trade</td>\n</tr>\n<tr>\n<td><code>unitType</code></td>\n<td>string</td>\n<td>✅</td>\n<td>Either <code>\"Quantity\"</code> (number of units) or <code>\"Value\"</code> (monetary amount)</td>\n</tr>\n<tr>\n<td><code>movementType</code></td>\n<td>string</td>\n<td>✅</td>\n<td>Either <code>\"Sell\"</code></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-request-body\">Example request body</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"accountId\": \"00DGD9B\",\n    \"firmId\": \"SECCI\",\n    \"simulatedOrders\": {\n        \"28PPL\": {\n            \"unit\": 1,\n            \"unitType\": \"Quantity\",\n            \"movementType\": \"Sell\"\n        }\n    }\n}\n\n</code></pre>\n<hr />\n<h3 id=\"response\">Response</h3>\n<p>Returns the full CGT report for the account, with a <code>simulatedOrder</code> object appended to any affected investment positions. The <code>totals.simulatedOrders</code> field summarises the overall projected profit/loss, value, and book value of the simulated trades.</p>\n<h4 id=\"key-response-fields\">Key response fields</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>data.investments[].simulatedOrder</code></td>\n<td>Projected outcome for the simulated order on this position</td>\n</tr>\n<tr>\n<td><code>data.investments[].simulatedOrder.profitLoss</code></td>\n<td>Estimated profit or loss from the simulated trade</td>\n</tr>\n<tr>\n<td><code>data.investments[].simulatedOrder.value</code></td>\n<td>Estimated sale/purchase value</td>\n</tr>\n<tr>\n<td><code>data.investments[].simulatedOrder.bookValue</code></td>\n<td>Book value of the units being traded</td>\n</tr>\n<tr>\n<td><code>data.totals.simulatedOrders</code></td>\n<td>Aggregate summary across all simulated orders</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"protocol":"https","path":["cgtsimulator","orders"],"host":["pfolio-api-staging","seccl","tech"],"query":[],"variable":[]}},"response":[{"id":"d2563bd5-3818-4f90-b718-1c73b14cd098","name":"Simulate orders","originalRequest":{"method":"POST","header":[{"key":"api-token","value":"your-api-token-here"},{"key":"content-type","value":"application/json"}],"body":{"mode":"raw","raw":"{\"accountId\":\"00DGD9B\",\"firmId\":\"SECCI\",\"simulatedOrders\":{\"28PPL\":{\"unit\":1,\"unitType\":\"Quantity\",\"movementType\":\"Sell\"}}}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/cgtsimulator/orders"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"content-type","value":"application/json"},{"key":"api-token","value":"{{apiToken}}"}],"cookie":[],"responseTime":null,"body":"{\"data\":{\"accountId\":\"00DGD9B\",\"wrapperType\":\"GIA\",\"status\":\"Active\",\"currency\":\"GBP\",\"fromDate\":\"2025-04-06T00:00:00.000Z\",\"toDate\":\"2026-03-11T00:00:00.000Z\",\"disclaimers\":[{\"type\":\"ASSET_UNSUPPORTED_TYPE\",\"text\":\"We do not currently support this asset type\",\"fields\":[\"cgtData\"],\"entity\":{\"type\":\"POSITION\",\"ids\":[\"00DGD9B|S|GB00B4NXY349\"]}}],\"investments\":[{\"assetId\":\"284JP\",\"assetName\":\"J Sainsbury PLC\",\"isin\":\"GB00B019KW72\",\"positionId\":\"00DGD9B|S|GB00B019KW72\",\"bookValue\":3.44,\"allocation\":0.0003,\"quantity\":1.7801047120419,\"value\":17.8,\"realisedProfitLoss\":0,\"price\":10,\"disclaimers\":[]},{\"assetId\":\"285HS\",\"assetName\":\"GlaxoSmithKline PLC\",\"isin\":\"GB0009252882\",\"positionId\":\"00DGD9B|S|GB0009252882\",\"bookValue\":2236.1,\"allocation\":0.0402,\"quantity\":131.61896916921629,\"value\":2237.52,\"realisedProfitLoss\":0,\"price\":17,\"disclaimers\":[]},{\"assetId\":\"28PPL\",\"assetName\":\"Apple Inc\",\"isin\":\"US0378331005\",\"positionId\":\"00DGD9B|S|US0378331005\",\"bookValue\":305,\"allocation\":0.0043,\"quantity\":2.128923007450892,\"value\":242.1,\"realisedProfitLoss\":0,\"price\":113.71875,\"disclaimers\":[],\"simulatedOrder\":{\"unitType\":\"Quantity\",\"unit\":1,\"quantity\":1,\"movementType\":\"Sell\",\"profitLoss\":-29.55,\"value\":113.72,\"bookValue\":143.26}}],\"totals\":{\"realisedProfitLoss\":0,\"value\":55705.57,\"bookValue\":55752.7,\"simulatedOrders\":{\"profitLoss\":-29.55,\"value\":113.72,\"bookValue\":143.26}}}}"}],"_postman_id":"498e61a3-d1d9-4aac-a386-884c3a683ccf"}],"id":"b9b5c6a9-a98f-49f9-8ec5-b7e57e118554","description":"<h2 id=\"capital-gains-scenario-tool\">Capital Gains Scenario Tool</h2>\n<p>This folder contains requests for simulating <strong>Capital Gains Tax (CGT) scenarios</strong> using the CGT Simulator API. It is useful for testing and exploring potential CGT outcomes before executing real orders.</p>\n<h3 id=\"requests\">Requests</h3>\n<ul>\n<li><p><strong>Simulator without orders</strong> — Runs a CGT simulation against an account with no proposed orders. Use this as a baseline to understand the current CGT position for the current tax year without any trading activity.</p>\n</li>\n<li><p><strong>Simulate orders</strong> — Runs a CGT simulation with a set of proposed orders included. Use this to model the CGT impact of specific trades before they are placed.</p>\n</li>\n</ul>\n<p>Both requests POST to <code>/cgtsimulator/orders</code> on the and return a simulated CGT breakdown based on the provided account and order data.</p>\n","_postman_id":"b9b5c6a9-a98f-49f9-8ec5-b7e57e118554"}],"id":"8ea27aa5-a3fd-48b1-8ca2-a97a01535b50","description":"<p>This section covers the balances and valuations of an investor's portfolio. We'll cover:</p>\n<ul>\n<li>How to retrieve a portfolio summary and report</li>\n<li>How to generate a list of portfolio summaries</li>\n<li>How to retrieve an account summary and report</li>\n<li>How to generate a list of account summaries</li>\n<li>Cash and stock postings – including how to list transaction codes, cash postings and stock postings</li>\n</ul>\n<h3 id=\"the-balance-and-valuation-object\">The balance and valuation object</h3>\n<p>You can retrieve this object to view the current valuation of a client's portfolio, or their individual investment account. This will include a breakdown of the investor's individual asset holdings, as well as the overall performance using the <a href=\"https://en.wikipedia.org/wiki/Modified_Dietz_method\">modified Dietz method</a>.</p>\n<p>Seccl provides growth rates at an investment account level, portfolio level, and individual asset level.</p>\n<p>The portfolio and account level growth rates use the modified Dietz method (as linked above), which is a time-weighted calculation that takes into account cash movements.</p>\n<p>There are two unique growth rates:</p>\n<ol>\n<li><code>growth</code> This looks at growth since the start of time, relying on the <code>bookValue</code></li>\n<li><code>adjustedGrowth</code> This looks at growth since assets on platform, relying on the <code>transferBookValue</code> (the value of the assets when they arrived on the platform)</li>\n</ol>\n<p>These growth rates will only differ if an <a href=\"https://www.investopedia.com/terms/i/in_specie.asp\">in-specie stock transfer</a> completes on the investment account or portfolio.</p>\n<p>You can also retrieve a portfolio or investment account report. This report contains a list of transactions that contribute to the valuation (charges, payments, orders etc).</p>\n<p>This section shows you how to retrieve <code>portfolio</code> and <code>account</code> balances and valuations.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/portfolio/summary\n/portfolio/report\n/account/summary\n/account/report\n/posting/cash\n/posting/stock\n\n</code></pre>","_postman_id":"8ea27aa5-a3fd-48b1-8ca2-a97a01535b50"},{"name":"Transfers","item":[{"name":"The product transfer in object","item":[],"id":"df763f7a-ef85-4937-b9e9-525dbe9d709d","description":"<p>The product transfer in object represents a transfer request into the system.</p>\n<p>The individual stock and cash transactions that make up the client's transfer are linked to the Product Transfer. When all linked stock and cash transactions are complete, the product transfer's <code>transferStatus</code> updates to <code>Completed</code>.</p>\n<p>There are three types of transfer in objects:</p>\n<ol>\n<li><p><code>Product Transfer:</code>An umbrella object that represents the whole transfer instruction</p>\n</li>\n<li><p><code>Stock Transfer:</code> An object that represents an individual stock line within the transfer (one per asset)</p>\n</li>\n<li><p><code>Payment Transfer:</code>An object that represents the individual cash line within the transfer</p>\n</li>\n</ol>\n<p>Stock and Payment transfers are actually just <code>portfoliotransaction</code> objects, like you will have found throughout the API. Later in this section we show how to create these, but they are often created automatically by Seccl when the ceding provider supplies the information (i.e. what investments the account holds and how much cash they have).</p>\n<p>A <code>Product Transfer</code> can be made up of any combination of single or multiple <code>Stock Transfer</code>s and <code>Payment Transfer</code>s - it all depends on what assets are already held at the ceding provider, and which assets you can accept on your platform.</p>\n<p>Directly below, we describe the <code>Product Transfer</code> object for transfer in only.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<p><code>id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction. This will be set to <code>Product Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>In Specie</code></td>\n<td>Transfer should take place in-specie</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Transfer should take place in cash</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>actionTag</code> string</p>\n<p>A high-level status hint attached to a portfolio transaction that communicates whether further action is required and who should act. This field is intended to drive UI prompts, client notifications, routing rules, and automated workflows. This may be expanded.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ClientActionRequired</code></td>\n<td>There is an outstanding client action with a ceding scheme</td>\n</tr>\n<tr>\n<td><code>Resubmit</code></td>\n<td>The transfer has been rejected and should be resubmitted</td>\n</tr>\n<tr>\n<td><code>None</code></td>\n<td>No outstanding actions</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>movementType</code> string</p>\n<p>The movement of the assets and/or cash. This should be set to <code>In</code></p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transferAccountAddress</code> array</p>\n<p>Contains details of the client's address sent as part of the transfer instruction. This must match what the ceding provider has on their system for the transfer to proceed</p>\n<hr />\n<p><code>transactions.transferAccountAddress.flatNumber</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingName</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingNumber</code> string</p>\n<p>The number or name of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.address1</code> string <strong>Required</strong></p>\n<p>The first line of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.address3</code> string</p>\n<p>The third line of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.address4</code> string</p>\n<p>The fourth line of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.country</code> string</p>\n<p>The country of the client's address</p>\n<hr />\n<p><code>transferAccountAddress.postCode</code> string</p>\n<p>The post code of the client's address</p>\n<hr />\n<p><code>previousProvider</code> string</p>\n<p>The unique identifier of the ceding provider</p>\n<hr />\n<p><code>previousProviderRef</code> string</p>\n<p>The account reference number held by the ceding provider</p>\n<hr />\n<p><code>productDrawdownStatus</code> string</p>\n<p>The part of the pension account to be transferred.<code>No Drawdown</code> is the only option available for accumulation pensions (applicable to pension account transfers only)</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>No Drawdown</code></td>\n<td>Uncrystallised portion only</td>\n</tr>\n<tr>\n<td><code>Partial Drawdown</code></td>\n<td>Crystallised portion only</td>\n</tr>\n<tr>\n<td><code>Full Drawdown</code></td>\n<td>Uncrystallised and crystallised portions only</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferValue</code> float</p>\n<p>The estimated value of the transfer as inputted by the user</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the product transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>Transfer instruction created</td>\n</tr>\n<tr>\n<td><code>Placed</code></td>\n<td>Transfer instruction successfully received – this should switch instantaneously</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Linked stock and cash transactions completed</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transfer instruction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferStatus</code> string</p>\n<p>The transfer status of the product transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>With Previous Provider</code></td>\n<td>Transfer instruction awaiting acceptance from the ceding provider</td>\n</tr>\n<tr>\n<td><code>Onboarding Assets</code></td>\n<td>Transfer instruction accepted by the ceding provided and onboarding of assets in progress</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Transfer complete</td>\n</tr>\n<tr>\n<td><code>Rejected</code></td>\n<td>Transfer rejected by ceding provider</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transfer instruction has been deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the portfolio transaction group</p>\n<hr />\n<p><code>transferSystem</code> string</p>\n<p>The external system facilitating the transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Origo</code></td>\n<td>Origo Transfer System</td>\n</tr>\n<tr>\n<td><code>ATG</code></td>\n<td>Altus Transfers Gateway</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferSystemRef</code> string</p>\n<p>The unique identifier of the ceding provider</p>\n<hr />\n<p><code>previousProviderName</code> string</p>\n<p>The name of the ceding provider</p>\n<hr />\n<p><code>externalIds</code> array</p>\n<p>Contains details of the ceding provider account reference number</p>\n<hr />\n<p><code>externalIds.externalTransferId</code> string</p>\n<p>Ceding provider account reference</p>\n<hr />\n<p><code>transactionDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>statusChanges</code> array</p>\n<p>Contains details of the <code>transferStatus</code> updates</p>\n<hr />\n<p><code>autoInvest</code> boolean</p>\n<p>Triggers automatically investing the transfer according to either a model set for the account or recurring orders, with model taking precedence if both are present. Orders get issued based on the the state of the account at the time the payment settles and a position is created. This option is only valid for cash transfers.</p>\n<p>If there is no model or recurring order set up for the account, auto-invest of the product transfer cannot be set. To auto-invest the cash transfer, the adviser will need to first add recurring orders or a model to the account, then request the transfer.</p>\n<hr />\n<p><code>partialTransfer</code> boolean</p>\n<p>Indicates whether the pension is a partial transfer. Only applicable for cash transfers into accumulation pension accounts.</p>\n<hr />\n<p><code>amountToTake</code> float <strong>Required if</strong> <strong><code>partialTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The amount to take from the ceding account. This should match the <code>transferValue</code> above.</p>\n<p>If <code>amountToLeave</code> is present, this field <strong>must not</strong> be provided.</p>\n<hr />\n<p><code>amountToLeave</code> float <strong>Required if</strong> <strong><code>partialTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The amount to leave in the ceding account.</p>\n<p>If <code>amountToTake</code> is present, this field <strong>must not</strong> be provided.</p>\n<hr />\n<p><code>overrides.firstName</code> string</p>\n<p>Optional field. Allows for overriding the client first names sent to Origo in case of name conflicts with different providers.<br />! Only works for Origo transfer !</p>\n","_postman_id":"df763f7a-ef85-4937-b9e9-525dbe9d709d"},{"name":"Create a transfer in request","item":[{"name":"Retrieve available ceding providers","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"id\", data.data[0].id)"],"type":"text/javascript","id":"3451d69e-2e4b-4599-b2ff-c646167c46c5"}}],"id":"4f787727-3f5f-41a2-bdf6-cfb1ff9f7825","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/masterparty/platform/{{firmId}}","description":"<p>This command returns the available ceding providers for Origo and ATG.</p>\n<p>To reduce the number of rejected transfer instructions, we suggest that you include the data available on this endpoint in your application.</p>\n<p>Adding Query Params to the endpoint narrows your search to the relevant ceding providers:</p>\n<ul>\n<li><p><code>transferWrapperType</code></p>\n<ul>\n<li>the account <code>wrapperType</code></li>\n</ul>\n</li>\n<li><p><code>productTransferType</code></p>\n<ul>\n<li>the Product Transfer <code>transactionSubType</code><ul>\n<li>\"Cash\" or \"In Specie\"</li>\n</ul>\n</li>\n</ul>\n</li>\n<li><p><code>name</code></p>\n<ul>\n<li>fuzzy match criteria on the <code>name</code> attribute</li>\n</ul>\n</li>\n<li><p><code>status</code></p>\n<ul>\n<li>The status of the ceding provider record</li>\n</ul>\n</li>\n<li><p><code>id</code></p>\n<ul>\n<li>the ceding provider id</li>\n</ul>\n</li>\n<li><p><code>supportsManuals</code></p>\n<ul>\n<li><p>Shows only ceding providers which support a manual transfer in or only those that will not support it</p>\n<ul>\n<li>\"True\" or \"False\"</li>\n</ul>\n</li>\n</ul>\n</li>\n</ul>\n<p><strong>Please note: The ceding provider list differs depending on the wrapper type and whether the instruction is in-specie or cash.</strong></p>\n<hr />\n<h4 id=\"attributes\">Attributes</h4>\n<p><code>id</code> string</p>\n<p>The unique identifier of the ceding provider</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the ceding provider</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the ceding provider</p>\n<hr />\n<p><code>partyType</code> string</p>\n<hr />\n<p><code>externalIds</code> array</p>\n<p>Contains details of the ceding provider's external Ids in Origo and/or ATG</p>\n<hr />\n<p><code>externalIds.idType</code> string</p>\n<p>The system that the identifier relates to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Origo Provider ID</code></td>\n<td>The ceding provider identifier in Origo</td>\n</tr>\n<tr>\n<td><code>ATG Reference</code></td>\n<td>The ceding provider identifier in ATG</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>externalIds.value</code> string</p>\n<p>The ceding provider's identifier in the external system</p>\n<hr />\n<p><code>companyType</code> string</p>\n<p>The type of company. This will be set to <code>Platform</code></p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Contains audit details of the object</p>\n<hr />\n<p><code>transferProviders</code> array</p>\n<p>Contains details of what the ceding provider can facilitate for each system. If this does not exist for a given masterparty object, then it is not available to request a transfer from electronically - please contact Seccl.</p>\n<hr />\n<p><code>transferProviders.providerReference</code> string</p>\n<p>The ceding provider's identifier in the external system</p>\n<hr />\n<p><code>transferProviders.transferProviderName</code> string</p>\n<p>The external transfer system that the information contained in the array relates to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ATG</code></td>\n<td>Altus Transfers Gateway</td>\n</tr>\n<tr>\n<td><code>Origo</code></td>\n<td>Origo Transfers System</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferProviders.{{wrapperType}}</code> array</p>\n<p>Contains details of what type of transfers can be supported for that <code>wrapperType</code> – for ATG transfers, this will include <code>PENSION</code>, <code>GIA</code>, <code>ISA</code>, and <code>JISA</code>; and for Origo transfers, this will include <code>PENSION</code> only</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.cashSupported</code> boolean</p>\n<p>Indicates whether cash transfers are supported</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.inSpecieSupported</code> boolean</p>\n<p>Indicates whether in-specie transfers are supported</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.accountReferenceHint</code> string</p>\n<p>This can be used to indicate what the ceding provider account reference should look like</p>\n<hr />\n","urlObject":{"path":["masterparty","platform","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"name","value":"<Ceding provider name>"},{"disabled":true,"key":"productTransferType","value":"{{transactionSubType}}"},{"disabled":true,"key":"transferWrapperType","value":"{{wrapperType}}"}],"variable":[]}},"response":[{"id":"c35236f1-fc2f-422f-8b2a-3625f4373095","name":"Retrieve available ceding providers (accepts GIA cash transfers)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/masterparty/platform/{{firmId}}?transferWrapperType=GIA&productTransferType=Cash","host":["{{apiRoute}}"],"path":["masterparty","platform","{{firmId}}"],"query":[{"key":"name","value":"<Ceding provider name>","disabled":true},{"key":"transferWrapperType","value":"GIA"},{"key":"productTransferType","value":"Cash"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27522"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 13 Mar 2023 17:03:33 GMT"},{"key":"x-amzn-RequestId","value":"767b52c1-4a5e-41e4-ad0c-29f15fc1c4ad"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27522"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"BuqX7GoIjoEFyPQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"6b82-11t/RV0c8DKZaWO61GMvB5J2anQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-640f5765-54db32353424425245376f9d;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ff7cafeac35b91a7af23c56e3b9691e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"OrSg0mAbzZeNSYjvkSuxo402bAGaYDT2Box1o_wMBAlrOWs1GnIDGQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"021F8G3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Securities Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3526\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.366Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c3f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3526\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"LAWHGB21XXX\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Investment Solutions Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7177\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.690Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c36\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7177\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"AECVGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDG1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ascentric (Investment Funds Direct Limited)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"IFUDGB21\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-08-11T15:22:16.580Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"transferProviderName\": \"ATG\",\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"JISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"27\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.880Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c58\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"8\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:28.819Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b8b6ada50009796906\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva Investors UK Fd Serv Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"912\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.228Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"912\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAVF\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F921\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Charles Stanley & Co Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5849\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.859Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5849\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CSTAGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F928\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cofunds Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11412\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.089Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c84\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11412\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CODUGB21TBP\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Elevate, Part of Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"29\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.371Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"29\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAXZ\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Embark Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10193\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"FNZWGB2S009\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.546Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10193\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S009\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F944\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Equiniti (Shareview)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10037\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.266Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2ca0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10037\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"EQFIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F949\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"321\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.185Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC16\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"160\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.083Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada50009796935\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F953\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Freetrade Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12414\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2caf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12414\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FRETGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3577\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.784Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796795\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3577\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HARLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11103\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.867Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada500097967a1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11103\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HUSCGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F993\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Integrated Financial Arrangements Plc (Transact)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6679\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.706Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6679\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LTRA\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F996\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Interactive Investor Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10313\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"ALUSGB21III\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.201Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967ba\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10313\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21III\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investment Funds Direct Ltd.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"574\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.431Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"574\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Janus Henderson Investors\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10166\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.830Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21JHI\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2182\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.610Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967ea\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:44.237Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c8b6ada5000979695c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia Financial\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.308Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796815\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NOFLGB31\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"141\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.702Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796817\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBJ9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"118\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:36.027Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c0b6ada50009796929\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nutmeg Saving and Investment Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6947\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.055Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada50009796819\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6947\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NUSIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"0562JDD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"P1 Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"SEUOGB21001\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"SEUOGB21001\",\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"transferProviderName\": \"ATG\",\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"Stocks And Shares ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Parmenion Capital Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5485\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.191Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796825\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5485\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"PCRLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB36\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Quilter Investment Platform (ISA/GIA only)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11991\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.457Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11991\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S014\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB63\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Seven Investment Management LLP (Service Provider)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6951\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.975Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796886\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6951\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"SENGGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB72\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Standard Life Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.555Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796895\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"STNDGB2S\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"True Potential Investments LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3693\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.134Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968bc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3693\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"TPILGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard UK Nominees Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7478\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.142Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968c8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7478\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S030\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 33\n    }\n}"},{"id":"4f0334e1-708e-4eaa-a9cb-6b5c988f51a7","name":"Retrieve available ceding providers (accepts GIA In Specie transfers)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/masterparty/platform/{{firmId}}?transferWrapperType=GIA&productTransferType=In Specie","host":["{{apiRoute}}"],"path":["masterparty","platform","{{firmId}}"],"query":[{"key":"name","value":"<Ceding provider name>","disabled":true},{"key":"transferWrapperType","value":"GIA"},{"key":"productTransferType","value":"In Specie"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27522"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 13 Mar 2023 17:04:24 GMT"},{"key":"x-amzn-RequestId","value":"6b72da2c-292b-4152-9bbf-470925bf00cd"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27522"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"BuqfzEU7joEFQ1Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"6b82-11t/RV0c8DKZaWO61GMvB5J2anQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-640f5798-47f5b4b46fb1b66259b1a18e;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ff7cafeac35b91a7af23c56e3b9691e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"qmeHd3vQ_Kb_CN5O8asGWVS0FqCigwljf-4YB1p1x6gQyXp5H0kMNg=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"021F8G3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Securities Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3526\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.366Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c3f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3526\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"LAWHGB21XXX\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Investment Solutions Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7177\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.690Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c36\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7177\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"AECVGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDG1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ascentric (Investment Funds Direct Limited)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"IFUDGB21\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-08-11T15:22:16.580Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"transferProviderName\": \"ATG\",\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"JISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"27\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.880Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c58\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"8\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:28.819Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b8b6ada50009796906\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva Investors UK Fd Serv Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"912\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.228Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"912\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAVF\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F921\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Charles Stanley & Co Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5849\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.859Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5849\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CSTAGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F928\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cofunds Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11412\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.089Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c84\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11412\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CODUGB21TBP\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Elevate, Part of Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"29\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.371Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"29\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAXZ\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Embark Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10193\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"FNZWGB2S009\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.546Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10193\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S009\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F944\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Equiniti (Shareview)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10037\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.266Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2ca0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10037\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"EQFIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F949\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"321\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.185Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC16\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"160\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.083Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada50009796935\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F953\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Freetrade Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12414\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2caf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12414\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FRETGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3577\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.784Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796795\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3577\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HARLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11103\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.867Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada500097967a1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11103\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HUSCGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F993\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Integrated Financial Arrangements Plc (Transact)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6679\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.706Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6679\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LTRA\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F996\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Interactive Investor Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10313\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"ALUSGB21III\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.201Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967ba\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10313\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21III\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investment Funds Direct Ltd.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"574\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.431Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"574\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Janus Henderson Investors\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10166\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.830Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21JHI\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2182\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.610Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967ea\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:44.237Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c8b6ada5000979695c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia Financial\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.308Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796815\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NOFLGB31\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"141\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.702Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796817\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBJ9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"118\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:36.027Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c0b6ada50009796929\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nutmeg Saving and Investment Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6947\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.055Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada50009796819\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6947\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NUSIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"0562JDD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"P1 Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"SEUOGB21001\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"SEUOGB21001\",\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"transferProviderName\": \"ATG\",\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"Stocks And Shares ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Parmenion Capital Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5485\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.191Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796825\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5485\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"PCRLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB36\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Quilter Investment Platform (ISA/GIA only)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11991\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.457Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11991\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S014\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB63\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Seven Investment Management LLP (Service Provider)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6951\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.975Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796886\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6951\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"SENGGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB72\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Standard Life Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.555Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796895\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"STNDGB2S\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"True Potential Investments LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3693\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.134Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968bc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3693\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"TPILGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard UK Nominees Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7478\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.142Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968c8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7478\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S030\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 33\n    }\n}"},{"id":"3f3a4e97-71fa-4b1b-9b04-ed3f723eb529","name":"Retrieve available ceding providers (accepts Pension cash transfers)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/masterparty/platform/{{firmId}}?transferWrapperType=PENSION&productTransferType=Cash","host":["{{apiRoute}}"],"path":["masterparty","platform","{{firmId}}"],"query":[{"key":"name","value":"<Ceding provider name>","disabled":true},{"key":"transferWrapperType","value":"PENSION"},{"key":"productTransferType","value":"Cash"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"343670"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 13 Mar 2023 17:05:13 GMT"},{"key":"x-amzn-RequestId","value":"378a01bf-87b8-4b4c-913a-0ceabbcd0f18"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"343670"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"BuqndGFzDoEF6FA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"53e76-OX2+9upvRt2Jh32ULLMhOremVy8\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-640f57c9-5280596d17d7f57d077d4d20;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 ff7cafeac35b91a7af23c56e3b9691e8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P1"},{"key":"X-Amz-Cf-Id","value":"hZcqJKy9Zl76q85AlFtDQyFNysiaHz_LkpJUq-aYk7K2nhVsbOOl2Q=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"021F8F1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"7IM Investment Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5578\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:43.992Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d75e1fdd00093f2c2d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5578\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"7IM SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10639\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:44.181Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d85e1fdd00093f2c2e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10639\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD16\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"7IM SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10406\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:18.719Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ea5e1fdd00093f2d03\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10639\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8DJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"@SIPP Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7618\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:43.790Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d75e1fdd00093f2c2c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7618\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCGD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"@SIPP Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6991\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:11.750Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e35e1fdd00093f2cd9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7618\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AIG Life Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11097\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:46.816Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242da5e1fdd00093f2c3c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11097\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Investcentre\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"364\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.000Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c3d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"364\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Platinum SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"415\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.182Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c3e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12169\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Securities Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3526\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.366Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c3f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3526\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"LAWHGB21XXX\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AJ Bell Youinvest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"365\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.546Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c40\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"365\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ANA Financial\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11184\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:49.504Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dd5e1fdd00093f2c4b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11184\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AON Delegated DC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7556\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:49.677Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dd5e1fdd00093f2c4c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7556\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCG4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AON Delegated DC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6943\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:10.374Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e25e1fdd00093f2cd1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7556\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AXA\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"43\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.650Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"43\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AXA IM UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"922\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.829Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"922\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC29\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AXA IM UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"631\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:41.069Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c5b6ada50009796948\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"922\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AXA Life Europe\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"369\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.997Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"369\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aberdeen Standard Capital (platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11436\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:44.370Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d85e1fdd00093f2c2f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11436\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aberdeen Standard Fund Managers Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2915\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:44.549Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d85e1fdd00093f2c30\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2915\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Adaurum Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11173\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:44.729Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d85e1fdd00093f2c31\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11173\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Adler Financial Planning\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11174\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:44.957Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d85e1fdd00093f2c32\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11174\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Advance Platform Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11164\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.326Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c34\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11164\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Advance by Embark Platform\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5163\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.147Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c33\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5163\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8F9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12197\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.518Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c35\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12197\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Investment Solutions Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7177\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.690Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c36\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7177\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"AECVGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Packaged\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"18\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:45.892Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242d95e1fdd00093f2c37\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"18\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Platform (Aegon Retirement Choices, Retiready and One Retirement)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3258\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:46.093Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242da5e1fdd00093f2c38\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3258\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon Retail (Aegon SIPP only)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10628\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:46.267Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242da5e1fdd00093f2c39\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10628\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aegon TargetPlan (Ex BlackRock)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7400\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:46.464Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242da5e1fdd00093f2c3a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7400\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8FH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Affinity Integrated Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11183\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:46.643Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242da5e1fdd00093f2c3b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11183\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Albert E Sharp (platform securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11429\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.724Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c41\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11429\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Allfunds Bank S.A.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11415\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:47.899Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242db5e1fdd00093f2c42\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11415\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Alliance Trust Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3454\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.076Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c43\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3454\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Alliance Trust Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3668\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.259Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c44\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3668\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8G9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Alliance Trust Savings Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10311\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.444Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c45\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10311\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD13\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Alliance Trust Savings Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10206\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:18.259Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ea5e1fdd00093f2d00\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10311\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"AllianceBernstein Private Clients\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12203\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.616Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c46\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12203\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Allianz Global Investors UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"754\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.793Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c47\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"754\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Alvarium\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12204\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:48.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dc5e1fdd00093f2c48\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12204\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Amati Global Investors Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"781\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:49.154Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dd5e1fdd00093f2c49\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"781\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8GG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Amber Financial Investments Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5674\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:49.328Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dd5e1fdd00093f2c4a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5674\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Apollo Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6961\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:49.870Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242dd5e1fdd00093f2c4d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6961\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Argonaut Capital Partners\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3583\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.076Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c4e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3583\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Artemis Fund Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"856\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.252Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c4f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"856\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDG1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ascentric (Investment Funds Direct Limited)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"IFUDGB21\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2022-08-11T15:22:16.580Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 4,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"transferProviderName\": \"ATG\",\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"JISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ashcroft SIPP (GRSL)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7147\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.434Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c50\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7147\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Astute Trustee Services Ltd - Astute SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6989\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.612Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c51\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6989\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCC4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Astute Trustee Services Ltd - Astute SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6500\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:02.897Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dab6ada500097969d3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6989\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Astute Trustee Services Ltd - Primetime SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6990\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.791Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c52\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6990\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Astute Trustee Services Ltd - Saltus SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11391\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:50.971Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242de5e1fdd00093f2c53\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11391\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Atlas Master Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12579\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.148Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c54\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12579\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDBB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Atlas Master Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11507\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:42.627Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618244025e1fdd00093f2d97\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12579\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8H9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Avalon (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5516\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.326Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c55\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5516\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Avalon SIPP Trustees Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5759\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.502Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c56\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5759\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aventur Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11185\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.679Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c57\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11185\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"27\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:51.880Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242df5e1fdd00093f2c58\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"8\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:28.819Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b8b6ada50009796906\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"27\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NWBKGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva (ex Friends Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"233\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.055Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c59\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"233\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC1B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva (ex Friends Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"233\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.759Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada50009796939\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"233\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva Investors UK Fd Serv Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"912\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.228Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"912\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAVF\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8HH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Aviva Staff Pension Scheme (GY- policy numbers)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7581\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:52.401Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e05e1fdd00093f2c5b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7581\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"B&CE Financial Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5756\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:53.180Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e15e1fdd00093f2c5f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5756\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC8H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"B&CE Financial Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5375\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:57.142Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d5b6ada500097969ae\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5756\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F917\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"BMO Fund Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10081\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:56.897Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e45e1fdd00093f2c73\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10081\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Baggette & Co Wealth Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11171\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:53.357Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e15e1fdd00093f2c60\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11171\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Baillie Gifford\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"944\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:53.531Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e15e1fdd00093f2c61\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"944\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC2B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Baillie Gifford\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"657\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:41.221Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c5b6ada50009796949\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"944\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Baillie Gifford & Co Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10220\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:53.708Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e15e1fdd00093f2c62\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10220\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bank of Scotland Online Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12513\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:53.880Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e15e1fdd00093f2c63\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12513\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bank of Scotland Share Dealing\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12512\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.058Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c64\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12512\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8J9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5589\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.246Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c65\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5589\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays  Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3705\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.427Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c66\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3705\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays Bank Ireland PLC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11453\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.606Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c67\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11453\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays Direct Investing Nominees Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7258\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.793Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c68\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7258\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays Investment Solutions Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5857\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:54.965Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e25e1fdd00093f2c69\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5857\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"420\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:55.139Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e35e1fdd00093f2c6a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"420\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barclays Stockbrokers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5760\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:55.361Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e35e1fdd00093f2c6b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5760\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F8JJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Baring Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1008\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:55.543Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e35e1fdd00093f2c6c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1008\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F911\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barnett Waddingham SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7218\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:55.728Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e35e1fdd00093f2c6d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7218\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCD3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Barnett Waddingham SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6664\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:05.248Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ddb6ada500097969e2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7218\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F912\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Beaufort Financial Planning Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11100\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:55.949Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e35e1fdd00093f2c6e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11100\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F913\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"BestInvest (Brokers) Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3692\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:56.127Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e45e1fdd00093f2c6f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3692\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F914\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bigblue Touch\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7558\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:56.312Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e45e1fdd00093f2c70\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7558\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCG6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bigblue Touch\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6945\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:10.752Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e25e1fdd00093f2cd3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7558\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F915\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"BlackRock\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1058\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:56.508Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e45e1fdd00093f2c71\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1058\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC2D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"BlackRock\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"780\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:41.631Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c5b6ada5000979694b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1058\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F916\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Blue Whale Capital LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10977\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:56.702Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e45e1fdd00093f2c72\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10977\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F918\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bowmore (platform securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11439\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:57.083Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e55e1fdd00093f2c74\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11439\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F919\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bright Square Pensions Limited (SEI)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11591\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:57.284Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e55e1fdd00093f2c75\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11591\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD69\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Bright Square Pensions Limited (SEI)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10950\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:31.927Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f75e1fdd00093f2d56\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11591\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Brooks Macdonald Asset Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6688\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:57.523Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e55e1fdd00093f2c76\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6688\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"COURTIERS Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7399\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.631Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c87\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7399\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"CPN Financial Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11187\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:01.146Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e95e1fdd00093f2c8a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11187\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"CPN Investment Management LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11188\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:01.372Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e95e1fdd00093f2c8b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11188\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Canada Life (ex Retirement Advantage, MGM Advantage)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3723\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:57.927Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e55e1fdd00093f2c78\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3723\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCB5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Canada Life (ex Retirement Advantage, MGM Advantage)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5809\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:00.478Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d8b6ada500097969c4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3723\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Carey Pensions UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10216\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.122Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c79\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10216\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Carey Pensions UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10150\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:17.480Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e95e1fdd00093f2cfb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10216\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Castlefield Fund Partners Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7194\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.327Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7194\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCD4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Castlefield Fund Partners Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6668\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:05.404Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ddb6ada500097969e3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7194\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDB2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Castlefield Investment Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11344\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:41.261Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618244015e1fdd00093f2d8f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12230\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Castlefield Investment Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12230\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.508Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12230\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F91J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cavendish Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1192\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.687Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1192\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F921\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Charles Stanley & Co Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5849\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:58.859Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e65e1fdd00093f2c7d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5849\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CSTAGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F922\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"City Financial Inv Company Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1252\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.039Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c7e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1252\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F923\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Clerical Medical\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"44\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.210Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c7f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"44\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCC3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Clerical Medical\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6482\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:02.746Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dab6ada500097969d2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"44\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F924\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Close Asset Management (Lion Nominees)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10500\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.385Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c80\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10500\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F925\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Close Asset Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10716\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.552Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c81\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10716\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD26\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Close Asset Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10524\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:21.192Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ed5e1fdd00093f2d13\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10716\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F926\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Close Brothers AM\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1259\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.729Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c82\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1259\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F927\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cofunds (ISA/GIA)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3338\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:05:59.915Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e75e1fdd00093f2c83\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3338\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F928\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cofunds Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11412\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.089Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c84\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11412\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CODUGB21TBP\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F929\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cofunds Pension Account Only\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"342\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.272Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c85\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"342\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Countrywide Assured\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12458\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.452Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c86\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12458\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD9J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Countrywide Assured\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11325\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:40.944Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618244005e1fdd00093f2d8d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12458\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Courtiers Investment Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11830\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.802Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c88\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11830\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD37\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Coutts & Co (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10611\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:23.991Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ef5e1fdd00093f2d24\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10922\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Coutts & Co (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10922\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:00.973Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e85e1fdd00093f2c89\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10922\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F92J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cranfords\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5361\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:01.558Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e95e1fdd00093f2c8c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5361\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC71\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Cranfords\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5059\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:52.526Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d0b6ada50009796990\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5361\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F931\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Curtis Banks\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3263\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:01.829Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242e95e1fdd00093f2c8d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3263\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC58\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Curtis Banks\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3799\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:48.644Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ccb6ada50009796977\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3263\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD27\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"DAC PENSIONS LIMITED (Davies & Co SIPP)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10532\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:21.358Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ed5e1fdd00093f2d14\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10697\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F932\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"DAC PENSIONS LIMITED (Davies & Co SIPP)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10697\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.011Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c8e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10697\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F937\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"DO NOT USE - HSBC UK Bank Plc\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11807\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.938Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c93\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11807\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"DP Pensions Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7188\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:03.470Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242eb5e1fdd00093f2c96\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7188\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCCJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"DP Pensions Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6644\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:04.791Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dcb6ada500097969df\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7188\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F933\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Dartington Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11200\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.182Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c8f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11200\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F934\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Dentons Pension Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6956\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.360Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c90\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6956\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F935\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Dimensional Fund Advisors Ltd.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12600\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.580Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c91\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12600\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F936\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Do Not Use\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10120\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:02.763Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ea5e1fdd00093f2c92\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10120\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F938\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Doherty Pn&Inv Consultancy Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1418\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:03.121Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242eb5e1fdd00093f2c94\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1418\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F939\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Dolfin\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:03.299Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242eb5e1fdd00093f2c95\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Dundas Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3418\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:03.646Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242eb5e1fdd00093f2c97\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3418\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"EBS (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6883\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:03.828Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242eb5e1fdd00093f2c98\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6883\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCBC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"EBS (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6421\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:01.460Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d9b6ada500097969ca\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6883\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ecclesiastical Investment Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1453\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.010Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c99\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1453\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Elevate, Part of Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"29\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.371Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"29\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LAXZ\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Elevate- Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3578\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.185Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3578\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F93J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Embark Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10193\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"FNZWGB2S009\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.546Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10193\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S009\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F941\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Embark Pensions (Ex Hornbuckle)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3677\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.735Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3677\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F942\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Embark Platform (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10592\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:04.909Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ec5e1fdd00093f2c9e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10592\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F943\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Equiniti (Selftrade)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6208\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.092Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2c9f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6208\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F944\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Equiniti (Shareview)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10037\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.266Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2ca0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10037\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"EQFIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F946\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Evenlode Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10026\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.651Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2ca2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10026\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FNZ IUH\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5625\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.724Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5625\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FNZ Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11416\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.903Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11416\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FP Russell Investments ICVC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7506\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.441Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2cac\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7506\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F947\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Facet Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11198\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:05.831Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ed5e1fdd00093f2ca3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11198\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F948\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity (FIL Investment Intl)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3327\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.004Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3327\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F949\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"321\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.185Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC16\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity International\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"160\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.083Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada50009796935\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"321\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FIDIGB22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3310\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.361Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3310\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC57\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fidelity SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3798\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:48.495Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ccb6ada50009796976\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3310\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC2H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"First State Investments UK Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1409\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:42.107Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c6b6ada5000979694e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1612\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"First State Investments UK Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1612\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:06.547Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ee5e1fdd00093f2ca7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1612\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Forester Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5424\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.086Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2caa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5424\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F94H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fowler Drew Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11203\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.257Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2cab\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11203\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F951\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Franklin Templeton Fund Management (Formerly Legg Mason Funds ICVC)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2105\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.620Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2cad\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2105\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F952\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Franklin Templeton Funds (UK)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1648\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.803Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2cae\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1648\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F953\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Freetrade Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12414\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:07.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ef5e1fdd00093f2caf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12414\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FRETGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F956\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock Partners - FP WHEB Asset Management Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11707\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:08.506Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f05e1fdd00093f2cb2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11707\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F957\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock Partners Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"4250\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:08.676Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f05e1fdd00093f2cb3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"4250\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F958\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock Partners Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10925\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:08.856Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f05e1fdd00093f2cb4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10925\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F959\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP Apollo Multi Asset Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11834\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.028Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cb5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11834\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP CAF Investment Fund\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11836\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.216Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cb6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11836\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP Frontier Invt Mgmt ICVC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11840\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.387Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cb7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11840\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP Henderson Rowe\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11839\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.553Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cb8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11839\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP Pictet OEIC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11835\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.745Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cb9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11835\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP SC Davies Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11832\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:09.917Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f15e1fdd00093f2cba\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11832\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"FundRock-FP Volare\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11831\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:10.105Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f25e1fdd00093f2cbb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11831\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F954\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fundment Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12247\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:08.159Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f05e1fdd00093f2cb0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12247\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F955\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fundment Pension\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12059\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:08.335Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f05e1fdd00093f2cb1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12059\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD94\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fundment Pension\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11238\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:38.900Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243fe5e1fdd00093f2d81\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12059\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F95J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fundsmith\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1672\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:10.286Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f25e1fdd00093f2cbc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1672\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC2J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fundsmith\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1478\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:42.264Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c6b6ada5000979694f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1672\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F961\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Fusion Wealth Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6680\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:10.472Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f25e1fdd00093f2cbd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6680\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F964\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"GAM\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12206\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:14.418Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f6b6ada50009796789\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12206\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F966\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"GLG Partners\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3419\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:14.968Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f6b6ada5000979678b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3419\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F968\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"GRSL Tesla SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10594\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:15.347Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f7b6ada5000979678d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10594\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD4F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"GRSL Tesla SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10712\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:27.473Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f35e1fdd00093f2d3a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10594\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F962\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Galleon Wealth Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11204\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:10.645Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f25e1fdd00093f2cbe\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11204\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F965\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Garraway Capital Management LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6396\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:14.782Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f6b6ada5000979678a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6396\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F967\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Global Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12207\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:15.167Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f7b6ada5000979678c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12207\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F969\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Guinness Mahon Trust Corporation Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5297\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:15.534Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f7b6ada5000979678e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5297\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F979\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"HS Admin\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10296\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.342Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada5000979679e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10296\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"HS Admin\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10155\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:17.786Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e95e1fdd00093f2cfd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10296\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"HSBC Gbl Asset Mgt (HSBC Inv)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1845\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.526Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada5000979679f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1845\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"HSBC UK Bank Plc\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7057\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.703Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada500097967a0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7057\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Halifax Online Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12515\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:15.699Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f7b6ada5000979678f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12515\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Halifax Share Dealing\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12514\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:15.872Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f7b6ada50009796790\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12514\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Halifax Share Dealing SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"421\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.058Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796791\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"421\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7250\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.243Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796792\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7250\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3679\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.423Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796793\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3679\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBJ6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"113\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"HARLGB21\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:35.585Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243bfb6ada50009796926\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3679\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown (Pensions)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12003\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.611Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796794\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12003\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F96J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hargreaves Lansdown Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3577\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.784Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796795\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3577\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HARLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F971\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hartley Pensions (Hartley SAS)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10893\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:16.952Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f8b6ada50009796796\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10893\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F972\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hartley Pensions Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.118Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada50009796797\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F973\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hartley-SAS (The Lifetime Sipp)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"562\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.294Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada50009796798\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"562\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F974\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hedley & Company (Platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11473\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.462Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada50009796799\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11473\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F975\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Henderson Rowe (platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11435\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.636Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada5000979679a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11435\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F976\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hodge Lifetime Cardiff\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3702\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.810Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada5000979679b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3702\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F978\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Host Capital Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1839\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.170Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada5000979679d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1839\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F977\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Host capital IAS\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11918\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:17.991Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242f9b6ada5000979679c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11918\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11103\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:18.867Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fab6ada500097967a1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11103\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"HUSCGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise - Hubwise Direct Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11485\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.037Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11485\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise - The Sanlam Platform\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11483\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.212Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11483\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise - The Synergy Wrap Platform\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11484\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.405Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11484\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F97J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hubwise Hartley SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10693\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.577Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10693\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F981\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Huntsman Hawkes Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11199\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.750Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11199\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F982\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Hurley Partners (Platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11433\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:19.922Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fbb6ada500097967a7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11433\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F983\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1875\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.108Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967a8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1875\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F985\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - AMR\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11336\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.459Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967aa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11336\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F984\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Acumen Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11337\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.283Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967a9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11337\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F986\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Baggettes\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11339\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.626Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967ab\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11339\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F987\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Bestinvest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11340\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.798Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967ac\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11340\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F989\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Brooks Macdonald\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11292\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:20.973Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fcb6ada500097967ad\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11292\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Brunsdon\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11341\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:21.159Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fdb6ada500097967ae\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11341\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Equilibrium\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11342\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:21.331Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fdb6ada500097967af\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11342\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Galateax\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11344\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:21.503Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fdb6ada500097967b0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11344\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - James Hambro\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11345\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:21.678Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fdb6ada500097967b1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11345\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Ravenscroft\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11346\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:21.848Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242fdb6ada500097967b2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11346\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Select\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11347\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.017Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11347\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F98J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Sinfonia\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11351\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.196Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11351\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F991\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IFSL - Trade Union\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11352\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.370Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11352\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"IWeb Share Dealing\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12516\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.952Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12516\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F993\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Integrated Financial Arrangements Plc (Transact)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6679\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.706Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6679\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"CLAOGB2LTRA\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F994\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Intelligent Money\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7178\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.865Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7178\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCD1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Intelligent Money\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6645\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:04.948Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dcb6ada500097969e0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7178\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F995\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Interactive Investor Legacy\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5509\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.037Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967b9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5509\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F996\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Interactive Investor Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10313\"\n                },\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"ALUSGB21III\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.201Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967ba\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10313\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21III\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC39\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Invesco Perpetual Fund Mgrs\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1806\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:43.646Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c7b6ada50009796958\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1948\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F997\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Invesco Perpetual Fund Mgrs\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1948\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.377Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967bb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1948\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F998\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Invesco UK Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12511\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.557Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967bc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12511\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F999\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"InvestAcc\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10920\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.723Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967bd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10920\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD33\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"InvestAcc\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10586\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:23.304Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ef5e1fdd00093f2d20\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10920\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investec Fund Managers (UK)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1955\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:23.899Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242ffb6ada500097967be\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1955\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investec Wealth & Investment SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10069\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.081Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967bf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10069\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCH6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investec Wealth & Investment SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10009\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:13.431Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e55e1fdd00093f2ce3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10069\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investment Funds Direct Ltd (Pensions)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3399\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.255Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3399\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Investment Funds Direct Ltd.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"574\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.431Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"574\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"IFUDGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Irish Life (Platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11431\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.783Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11431\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"J Stern & Co\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11775\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.128Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11775\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"JLT Premier Pensions\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6777\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.003Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967ca\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6777\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"JO Hambro Capital Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6460\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.175Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967cb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6460\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"JP Morgan Asset Management UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2014\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.353Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967cc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2014\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"James Hay Partnership\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3694\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.298Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3694\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"James Hay Partnership (Re-Reg)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10638\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.475Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10638\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"James Hay Wrap Managers Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11015\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.656Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11015\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Janus Henderson Investors\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10166\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:25.830Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824301b6ada500097967c9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21JHI\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9B9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Julius Baer (platform securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11430\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.526Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967cd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11430\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Jupiter Unit Trust Mgrs Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2027\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.696Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967ce\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2027\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Jupiter Unit Trust Mgrs Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1898\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:43.943Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c7b6ada5000979695a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2027\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBGD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Just\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"14\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:29.779Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b9b6ada5000979690c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"23\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Just\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"23\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:26.865Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824302b6ada500097967cf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"23\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Kames Capital\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2035\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.037Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2035\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Kames Capital\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1907\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:44.090Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c8b6ada5000979695b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2035\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Killik & Co\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5514\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.214Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5514\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Canada Life Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10271\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.081Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967d6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10271\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Heartwood Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10272\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.260Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967d7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10272\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Miton Investment Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11335\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.427Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967d8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11335\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Morant Wright Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11612\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.608Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967d9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11612\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Odey Investment Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11287\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.789Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967da\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11287\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LF Prudential\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10274\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:28.960Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824304b6ada500097967db\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10274\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LV=\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"24\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.260Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967e8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"24\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBGG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"LV=\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"18\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:30.094Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243bab6ada5000979690e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"24\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lakeside Wealth Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11170\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.387Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11170\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lazard Fund Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2093\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.561Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2093\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Legal & General\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:28.666Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b8b6ada50009796905\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"19\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9BJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Legal & General\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"19\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.741Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"19\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Legal & General UT Mgr Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2103\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:27.909Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824303b6ada500097967d5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2103\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Liberty SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"559\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:29.140Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824305b6ada500097967dc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"559\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC64\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Liberty SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5012\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:50.506Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ceb6ada50009796983\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"559\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9C9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lincoln Private Investment Office\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12208\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:29.311Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824305b6ada500097967dd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12208\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lindsell Train\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2129\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:29.485Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824305b6ada500097967de\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2129\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Link Financial Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5748\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:29.666Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824305b6ada500097967df\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5748\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Link Fund Solutions\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"1170\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:29.839Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824305b6ada500097967e0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"1170\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Liontrust Fund Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2135\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.031Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2135\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Liontrust Multi Asset Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"839\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.228Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"839\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Livingbridge VC LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6481\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.403Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6481\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9CJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lloyds Bank Direct Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12517\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.571Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12517\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Lloyds Bank e-Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12518\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.740Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12518\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"London & Capital\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2152\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:30.910Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824306b6ada500097967e6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2152\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"London & Colonial Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10024\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.089Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967e7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10024\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCH7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"London & Colonial Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10010\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:13.611Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e55e1fdd00093f2ce4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10024\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G Platform Securities Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7189\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.442Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967e9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7189\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2182\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.610Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967ea\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"M&G UK\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:44.237Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c8b6ada5000979695c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2182\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"ALUSGB21MAG\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Activus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10932\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:33.678Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824309b6ada500097967f5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10932\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Bespoke\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10944\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:33.845Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824309b6ada500097967f6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10944\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Brewin Dolphin\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10933\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.010Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967f7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10933\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Charles Stanley\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10943\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.187Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967f8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10943\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Charles Stanley Investment Funds II EX MATTERLEY FUNDS\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10934\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.357Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967f9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10934\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Chelverton\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10935\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.522Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967fa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10935\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Discretionary\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10936\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.804Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967fb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10936\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Downing Managed\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10938\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:34.987Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430ab6ada500097967fc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10938\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9F9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Downing Monthly Income\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10950\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:35.162Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430bb6ada500097967fd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10950\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Downing UK Micro Cap\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10937\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:35.337Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430bb6ada500097967fe\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10937\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Hawksmoor\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10939\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:35.509Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430bb6ada500097967ff\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10939\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Metropolis\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10940\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:35.686Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430bb6ada50009796800\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10940\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Miton\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10941\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:35.868Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430bb6ada50009796801\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10941\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Momentum\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10942\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.046Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796802\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10942\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Somerset\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10945\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.214Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796803\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10945\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9FJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Thornbridge\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10946\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.381Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796804\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10946\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MI Twenty Four\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10949\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.549Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796805\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10949\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Maitland Institutional Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.784Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967eb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Majedie Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2197\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:31.949Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824307b6ada500097967ec\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2197\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9D9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Margetts Fund Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2218\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:32.124Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824308b6ada500097967ed\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2218\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Marine and General Mutual\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"28\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:32.297Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824308b6ada500097967ee\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"28\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Marlborough Fund Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2221\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:32.480Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824308b6ada500097967ef\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2221\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Martin Currie Fund Mgmt Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2230\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:32.654Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824308b6ada500097967f0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2230\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"McInroy & Wood Portfolios Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2241\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:32.828Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824308b6ada500097967f1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2241\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Mercer\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6778\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:33.007Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824309b6ada500097967f2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6778\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC8D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Mercer\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5302\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:56.658Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d4b6ada500097969ab\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6778\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Merian Global Investors (UK) Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11059\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:33.209Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824309b6ada500097967f3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11059\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9DJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"MetLife\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"76\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:33.378Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824309b6ada500097967f4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"76\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Miton Trust Managers Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2622\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.733Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796806\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2622\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Moneybox Personal Pension (GRSL)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11142\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:36.906Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430cb6ada50009796807\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11142\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD3C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Moneybox Personal Pension (GRSL)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10615\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:24.657Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f05e1fdd00093f2d28\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11142\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Moneyfarm (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10714\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.077Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada50009796808\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10714\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Morgan Lloyd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11461\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.250Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada50009796809\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11461\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD54\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Morgan Lloyd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10764\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:28.561Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f45e1fdd00093f2d41\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11461\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Morgan Stanley Investment Management (ACD) Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11950\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.423Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada5000979680a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11950\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Mountstone (platform securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11437\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.594Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada5000979680b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11437\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Multrees - Saltus Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12400\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.770Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada5000979680c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12400\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBJD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"NFU Mutual\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"134\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:36.504Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c0b6ada5000979692c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"231\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"NFU Mutual\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"231\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.955Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada50009796813\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"231\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9G9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"National Employment Savings Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11107\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:37.927Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430db6ada5000979680d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11107\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD45\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"National Employment Savings Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10694\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:26.225Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f25e1fdd00093f2d32\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11107\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"National Pension Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7176\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.111Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada5000979680e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7176\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCD2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"National Pension Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6646\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:05.102Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ddb6ada500097969e1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7176\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Natixis Global Asset Mgmt S.A.\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2355\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.283Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada5000979680f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2355\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Natwest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12568\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.449Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada50009796810\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12568\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Neptune Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2362\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.614Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada50009796811\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2362\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC3G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Newton & BNY Mellon Asset Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2311\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:44.393Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c8b6ada5000979695d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2381\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Newton & BNY Mellon Asset Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2381\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:38.782Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430eb6ada50009796812\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2381\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9GJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5856\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.127Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796814\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5856\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC98\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5462\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:58.543Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d6b6ada500097969b7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5856\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia Financial\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.308Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796815\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NOFLGB31\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia International SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11644\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.521Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796816\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11644\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD6H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Novia International SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11012\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:32.916Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f85e1fdd00093f2d5c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11644\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"141\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.702Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796817\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBJ9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nucleus\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"118\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:36.027Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c0b6ada50009796929\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"141\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"RBOSGB2L\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nutmeg (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7425\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:39.879Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182430fb6ada50009796818\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7425\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Nutmeg Saving and Investment Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6947\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.055Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada50009796819\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6947\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"NUSIGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Octopus Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2424\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.230Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada5000979681a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2424\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Octopus Investments Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2425\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.403Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada5000979681b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2425\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Octopus SIPP (Hartley SAS)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10696\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.567Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada5000979681c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10696\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9H9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Octopus Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11102\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.747Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada5000979681d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11102\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Old Mutl Glbl Investors(UK)Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3427\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:40.944Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824310b6ada5000979681e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3427\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Old Mutual Wealth SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"423\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:41.295Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824311b6ada50009796820\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"423\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Old mutual wealth (DO NOT USE)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"32\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:41.115Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824311b6ada5000979681f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"32\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Omnis Investments Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12133\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:41.483Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824311b6ada50009796821\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12133\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Orbis OEIC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10203\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:41.666Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824311b6ada50009796822\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10203\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"P1 Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11988\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:41.854Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824311b6ada50009796823\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11988\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"0562JDD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"P1 Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"ATG Reference\",\n                    \"value\": \"SEUOGB21001\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"updateId\": \"62f51ea895bfe394880c3657\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"SEUOGB21001\",\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"transferProviderName\": \"ATG\",\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"Stocks And Shares ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    },\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true\n                    }\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"PRAEMIUM ADMINISTRATION LIMITED\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11889\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:49.589Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824319b6ada5000979684f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11889\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"PRAEMIUM INTERNATIONAL LIMITED\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11890\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:49.954Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824319b6ada50009796851\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11890\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"PRAEMIUM RETIREMENT SERVICES LIMITED\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11891\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.288Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796853\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11891\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9HJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Parmenion Capital Partners\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7472\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.028Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796824\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7472\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCFJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Parmenion Capital Partners\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6869\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:09.725Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e15e1fdd00093f2ccd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7472\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Parmenion Capital Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5485\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.191Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796825\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5485\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"PCRLGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Partnership\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"9\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:28.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b8b6ada50009796907\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"20\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Partnership\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"20\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.367Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796826\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"20\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Penfold\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12559\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.542Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796827\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12559\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FDB1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Penfold\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11332\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:41.098Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618244015e1fdd00093f2d8e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12559\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"PensionBee\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7150\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.706Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796828\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7150\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCH5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"PensionBee\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10001\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:13.278Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e55e1fdd00093f2ce2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7150\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - AFH Independent Financial Serv\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10566\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:42.879Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824312b6ada50009796829\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10566\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Boulterbowen Wealthcare\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10578\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.051Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10578\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Citibank\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10567\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.230Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10567\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Credo Capital\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10579\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.412Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10579\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9J9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - David Booler & Co\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10568\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.605Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10568\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - EQ Investors\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10569\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.941Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10569\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Epoch Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10580\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:43.770Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824313b6ada5000979682e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10580\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Fairstone Private Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10581\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.117Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796830\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10581\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Gore Brown\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10570\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.294Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796831\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10570\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - HFM Columbus Group\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10582\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.477Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796832\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10582\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Holden & Partners\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10571\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.646Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796833\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10571\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F9JJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - L J Athene Investment Advisors\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10583\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.827Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796834\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10583\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB11\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Mattioli Woods\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10572\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:44.998Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824314b6ada50009796835\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10572\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB12\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - McInroy & Wood\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10584\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:45.167Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824315b6ada50009796836\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10584\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB13\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Odey Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10573\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:45.347Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824315b6ada50009796837\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10573\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB14\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Phillip Capital UK Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10585\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:45.524Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824315b6ada50009796838\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10585\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB15\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Shore Capital\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10574\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:45.698Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824315b6ada50009796839\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10574\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB16\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - St Johns Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10586\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:45.865Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824315b6ada5000979683a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10586\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB17\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Tilney Asset Management (IG)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10575\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.018Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada5000979683b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10575\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB18\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Tilney Investment Management ( TM)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10587\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.186Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada5000979683c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10587\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB19\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Tilney Investment Management (BI)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10576\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.361Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada5000979683d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10576\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Troy Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10589\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.562Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada5000979683e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10589\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - VWM Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10577\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.980Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada50009796840\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10577\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Vermeer Investment Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12318\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:46.818Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824316b6ada5000979683f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12318\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing - Wise Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10590\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:47.145Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824317b6ada50009796841\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10590\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing Securities Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5195\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:47.322Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824317b6ada50009796842\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5195\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pershing Securities Limited - Sanlam Private Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12216\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:47.497Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824317b6ada50009796843\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12216\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB1J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix (ex Century/NEL)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"34\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:47.673Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824317b6ada50009796844\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"34\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB21\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix (ex Scottish Provident, ex Scottish Mutual and ex BA)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"42\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:47.843Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824317b6ada50009796845\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"42\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB22\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix Ex Pearl,LLife,NPI/Swiss/Alba Corp\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"39\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.015Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada50009796846\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"39\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB23\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix Life (ex Abbey)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"128\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.192Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada50009796847\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"128\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB24\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7296\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.366Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada50009796848\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7296\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCHJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Phoenix Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10105\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:15.086Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e75e1fdd00093f2ced\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7296\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB25\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Platform One\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12526\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.537Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada50009796849\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12526\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB26\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Platform One - Tavistock\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.705Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada5000979684a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB27\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Platform One Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11206\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:48.883Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824318b6ada5000979684b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11206\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC8J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pointon York\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5376\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:57.340Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d5b6ada500097969af\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3484\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB29\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Pointon York\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3484\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:49.232Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824319b6ada5000979684d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3484\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Praemium\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7544\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:49.402Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824319b6ada5000979684e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7544\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCG3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Praemium\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6941\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:10.213Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e25e1fdd00093f2cd0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7544\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Praemium Administration Services Ltd (Origo)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12074\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:49.772Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824319b6ada50009796850\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12074\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Praemium International Limited (Origo)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12075\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.120Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796852\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12075\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB2J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Praemium Retirement Services Ltd (Origo)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.454Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796854\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12076\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB31\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Premier Fund Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6973\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.625Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796855\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6973\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB32\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Premier Fund Managers Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6953\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.794Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796856\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6953\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB33\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Premier Portfolio Managers Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2580\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:50.958Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431ab6ada50009796857\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2580\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBG8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Prudential\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:29.139Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b9b6ada50009796908\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB34\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Prudential\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"21\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.122Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada50009796858\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB35\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Prudential2\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"68\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.290Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada50009796859\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"68\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB36\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Quilter Investment Platform (ISA/GIA only)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11991\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.457Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11991\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S014\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB37\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Quilter Personal Pensions Scheme\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11089\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.629Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11089\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"SKMUGB2A\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB38\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"R & D Wealth Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11207\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.802Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11207\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RBS\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12567\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:52.502Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431cb6ada50009796860\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12567\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB45\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RL360 SIPP (Hartley Pensions)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10894\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:56.144Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824320b6ada50009796869\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10894\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB46\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RLUM (CIS) Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"4794\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:56.315Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824320b6ada5000979686a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"4794\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC5H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RLUM (CIS) Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3852\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:49.709Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243cdb6ada5000979697e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"4794\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RPMI\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11140\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:59.724Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243235e1fdd00093f2cbf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11140\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD3B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"RPMI\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10614\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:24.470Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f05e1fdd00093f2d27\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11140\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB39\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rathbone Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5482\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:51.974Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431bb6ada5000979685d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5482\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rathbone Unit Trust Mgmt Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2663\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:52.143Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431cb6ada5000979685e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2663\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Raymond James Investment Services Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:52.321Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431cb6ada5000979685f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"133\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:52.780Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431cb6ada50009796861\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"133\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCBF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6423\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:01.796Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d9b6ada500097969cc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"133\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure (Ex-Guardian)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"31\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.109Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796863\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"31\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBHB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure (Ex-Guardian)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"34\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:32.054Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243bcb6ada5000979691a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"31\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure (SIPPS)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12194\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.284Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796864\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12194\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB3G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure (ex Barclays Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"506\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:52.950Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431cb6ada50009796862\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"506\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC1C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure (ex Barclays Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"237\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.951Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada5000979693a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"506\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB41\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ReAssure Life Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12036\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.460Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796865\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12036\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB42\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Redmayne Bentley\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11717\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.638Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796866\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11717\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB43\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rexigon Securities Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12186\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.804Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796867\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12186\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB44\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"River & Mercantile Asset Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2693\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:55.973Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182431fb6ada50009796868\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2693\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB47\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rossie House (platform securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11441\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:56.488Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824320b6ada5000979686b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11441\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB48\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rothschild Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12209\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:56.660Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824320b6ada5000979686c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12209\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB49\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rowan Dartington\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11993\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:56.831Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824320b6ada5000979686d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11993\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC62\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rowanmoor (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"4951\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:50.190Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ceb6ada50009796981\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5204\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Rowanmoor (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5204\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:57.006Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824321b6ada5000979686e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5204\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC63\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"4973\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:50.350Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ceb6ada50009796982\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5213\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5213\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:57.180Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824321b6ada5000979686f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5213\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London (ex Co-operative Financial Services)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"78\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:58.156Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824322b6ada50009796871\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"78\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBGF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London (ex Scottish Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"17\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:29.932Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b9b6ada5000979690d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London (ex Scottish Life)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"166\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:59.400Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824323b6ada50009796872\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London - Glasgow\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5456\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:57.344Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824321b6ada50009796870\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5456\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB4H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Royal London Unit Tst Mgrs Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2716\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:59.566Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824323b6ada50009796873\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2716\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB51\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Ruffer LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2719\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:59.918Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824323b6ada50009796874\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2719\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SCM Direct\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11208\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.563Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada5000979687e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11208\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD77\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SEI Master Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11093\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:34.206Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243fa5e1fdd00093f2d64\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11994\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB61\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SEI Master Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11994\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.568Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796884\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11994\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SLTC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12399\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:04.152Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824328b6ada5000979688d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12399\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SVM Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2957\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.260Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada5000979689f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2957\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"SWIP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2963\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.422Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada500097968a0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2963\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB52\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Saltus Partners LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2733\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.069Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada50009796875\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2733\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB53\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sandaire Investment Office\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12210\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.214Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada50009796876\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12210\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB54\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sanford DeLand Asset Management Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12231\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.388Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada50009796877\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12231\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB55\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sanlam Investments and Pensions\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3684\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.570Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada50009796878\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3684\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB56\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Santander Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2743\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.750Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada50009796879\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2743\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB57\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sarasin Investment Funds Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2750\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:00.905Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824324b6ada5000979687a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2750\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB58\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Saunderson House (platform Securities)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11440\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.094Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada5000979687b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11440\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC43\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Schroder UT Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2753\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:45.176Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c9b6ada50009796962\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2772\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB59\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Schroder UT Managers\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2772\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.249Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada5000979687c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2772\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Schroders Unit Trust Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12112\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.406Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada5000979687d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12112\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Friendly (Ex Mobius)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7560\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.716Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada5000979687f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7560\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD84\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Friendly Assurance Society Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11181\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:36.367Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243fc5e1fdd00093f2d71\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11998\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Friendly Assurance Society Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11998\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:01.871Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824325b6ada50009796880\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11998\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Widows\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"45\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.043Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796881\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"45\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBHG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Widows\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"38\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:32.680Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243bcb6ada5000979691e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"45\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Scottish Widows Schroder Personal Wealth (ACD) Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11870\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.225Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796882\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11870\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB5J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Seccl Custody Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11945\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.384Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796883\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11945\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB62\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Seneca Investment Managers Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5320\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.790Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796885\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5320\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB63\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Seven Investment Management LLP (Service Provider)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6951\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:02.975Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824326b6ada50009796886\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6951\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"SENGGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB65\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Signia Wealth\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12211\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.297Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada50009796888\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12211\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB66\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Silo (Killik Intelligent Savings)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11750\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.459Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada50009796889\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11750\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD75\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Silo (Killik Intelligent Savings)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11073\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:33.866Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243f95e1fdd00093f2d62\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11750\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB67\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Silverwood Money Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11209\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.612Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada5000979688a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11209\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB68\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sippdealxtra (A J Bell)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"366\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.783Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada5000979688b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"366\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB69\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Slater Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10075\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.973Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada5000979688c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10075\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJ6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Smart Pension\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10125\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:16.019Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e85e1fdd00093f2cf3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10163\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Smart Pension\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10163\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:04.328Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824328b6ada5000979688e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10163\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Smarter Financial Services LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11533\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:04.509Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824328b6ada5000979688f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11533\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Smith &Williamson Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:04.690Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824328b6ada50009796890\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10076\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sovereign Pension Services\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10285\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:04.847Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824328b6ada50009796891\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10285\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sovereign Pension Services\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10153\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:17.637Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e95e1fdd00093f2cfc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10285\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"St. James's Place\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12180\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.030Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796892\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12180\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBHH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"St. James's Place Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"44\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:33.177Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243bdb6ada5000979691f\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"237\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB6J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"St. James's Place Wealth Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"237\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.214Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796893\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"237\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBGC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"13\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:29.602Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243b9b6ada5000979690b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB71\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Standard Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"22\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.393Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796894\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"22\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB72\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Standard Life Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3527\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.555Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796895\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3527\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"STNDGB2S\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB73\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Stanhope Capital LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12212\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.720Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796896\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12212\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB74\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Stenham Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2930\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:05.903Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824329b6ada50009796897\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2930\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB75\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sterling (ISA and Investment Account)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5164\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.098Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada50009796898\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5164\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB76\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Stocktrade\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10921\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.252Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada50009796899\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10921\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB77\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Stonehage Fleming Investment Mgmt\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12213\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.433Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada5000979689a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12213\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB78\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Strabens Hall Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11211\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.594Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada5000979689b\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11211\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB79\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Strawberry Invest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11989\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.752Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada5000979689c\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11989\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC17\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Suffolk Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"163\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:38.261Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c2b6ada50009796936\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"329\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Suffolk Life\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"329\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:06.915Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432ab6ada5000979689d\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"329\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Sun Life Financial of Canada\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"601\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.100Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada5000979689e\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"601\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"T. Bailey Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6761\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.582Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada500097968a1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6761\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"T. Bailey Fund Managers Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2985\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.735Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada500097968a2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2985\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB7J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"T. Bailey Fund Srvs Ltd (ACD)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6713\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:07.894Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432bb6ada500097968a3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6713\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB81\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"T. Rowe Price\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2987\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.103Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2987\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB83\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TB Saracen Investment Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11708\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.443Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11708\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB84\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TB Wise Investment Funds\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11660\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.599Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11660\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB85\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TD SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"422\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.779Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"422\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB95\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TIME Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3041\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.232Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968b7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3041\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB96\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TPIO Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12214\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.386Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968b8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12214\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"TUTMAN LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6765\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.315Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968bd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6765\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCBD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Talbot and Muir\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6422\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:01.616Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d9b6ada500097969cb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6884\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB82\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Talbot and Muir\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6884\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.288Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6884\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB86\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Telford Mann\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10658\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:08.956Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432cb6ada500097968a9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10658\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB87\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Tenet Platform Services\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11145\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.113Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968aa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11145\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB88\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The AON MasterTrust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7557\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.321Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968ab\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7557\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCG5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The AON MasterTrust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6944\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:10.559Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e25e1fdd00093f2cd2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7557\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB89\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The Funds Network Pension\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3625\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.483Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968ac\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3625\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The GRSL SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7061\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.641Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968ad\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7061\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCC6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The GRSL SIPP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6551\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:03.207Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dbb6ada500097969d5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7061\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The Share Centre\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7530\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.815Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968ae\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7530\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The Share Centre - SI Capital Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7529\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:09.972Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432db6ada500097968af\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7529\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"The Share Centre - This is Money\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7515\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.129Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7515\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Thesis Unit Trust Management Ltd (RWC)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11666\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.291Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11666\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB8J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Thesis Unit Trust Managers (Crux)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11136\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.454Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11136\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB91\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Thesis Unit Trust Mgmt Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3028\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.608Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3028\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB92\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Thomas Heald\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11166\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.760Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11166\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB93\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Threadneedle Investment Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10550\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:10.920Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432eb6ada500097968b5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10550\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB94\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Tilney DIML Formally UKPM (SEI)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11290\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.078Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968b6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11290\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD2F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Transact\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10554\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:22.379Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ee5e1fdd00093f2d1a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10998\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB97\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Transact\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10998\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.649Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968b9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10998\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB98\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Troy Asset Management Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3074\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.804Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968ba\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3074\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB99\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"True Potential Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5268\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:11.953Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182432fb6ada500097968bb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5268\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC6C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"True Potential Investments\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5019\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:51.588Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243cfb6ada5000979698a\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5268\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9B\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"True Potential Investments LLP\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3693\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.134Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968bc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3693\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"TPILGB21\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9D\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Tutman LLP (Cavendish)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11909\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.486Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968be\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11909\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9F\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"UBS Asset Mgmt Funds Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6872\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.643Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968bf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6872\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"UK Private Bank (Barclays)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5628\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.796Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968c0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5628\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9H\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Unicorn Asset Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3095\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:12.972Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824330b6ada500097968c1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3095\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB9J\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Utmost\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7351\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.155Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7351\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Utmost Life and Pensions\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11900\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.322Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11900\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Utmost Life and Pensions Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"2678\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.471Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"2678\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"VT Gravis Funds ICVC\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11920\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.848Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968cc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11920\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"VT Munro Smart-Beta Fund\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11673\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.028Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968cd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11673\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"VT Seneca\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11615\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.188Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968ce\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11615\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"VT Tatton Oak\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12091\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.373Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968cf\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12091\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Valu-Trac Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6648\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.616Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6648\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC44\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3162\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:45.375Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243c9b6ada50009796963\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11229\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11229\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.795Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11229\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard Investments UK Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3136\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:13.983Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824331b6ada500097968c7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3136\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vanguard UK Nominees Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7478\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.142Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968c8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7478\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                },\n                {\n                    \"providerReference\": \"FNZWGB2S030\",\n                    \"PENSION\": {\n                        \"cashSupported\": false,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"GIA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"ISA\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": true,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"ATG\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Viewpoint Portfolio management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11165\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.302Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968c9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11165\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vitality Invest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10707\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.485Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968ca\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10707\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJ3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vitality Invest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10115\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:15.559Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e75e1fdd00093f2cf0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10707\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBB9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Vobis Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11213\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:14.686Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824332b6ada500097968cb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11213\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"W1 Investment Group UK Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11215\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.542Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968d0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11215\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"WH Ireland Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10086\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.210Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968da\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10086\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Waverton Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5246\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.701Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968d1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5246\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealth Management Group\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11214\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.040Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11214\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBBJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealth at Work Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12147\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:15.888Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824333b6ada500097968d2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12147\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FD97\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealth at Work Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11261\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:39.364Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243ff5e1fdd00093f2d84\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12147\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealthsimple (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10712\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.242Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10712\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealthsimple UK Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10087\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.396Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10087\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC89\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealthtime\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5298\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:56.199Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d4b6ada500097969a8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5754\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealthtime\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5754\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.558Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5754\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wealthtime Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10198\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.719Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10198\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wesleyan Assurance Society and Subsidiary Companies\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10140\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:16.876Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824334b6ada500097968d8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10140\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Westerby Trustee Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6205\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.041Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968d9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FC8C\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Westerby Trustee Services Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5301\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:09:56.506Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243d4b6ada500097969aa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"6205\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBC9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Willis Owen (Embark Group)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10713\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.394Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968db\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10713\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11886\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.549Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968dc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11886\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Amersham Festival Socity\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11977\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.717Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968dd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11977\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Archie Lloyd Chartabel Foundation\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11961\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:17.874Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824335b6ada500097968de\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11961\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Byzantine Studies\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11980\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.034Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968df\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11980\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - CAF\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11964\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.200Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968e0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11964\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - COATS\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11965\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.877Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968e4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11965\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Cambridge Eye Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11968\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.359Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968e1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11968\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBCJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Cambridge university musical society\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11974\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.540Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968e2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11974\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Charities Aid Foundation\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11957\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:18.724Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824336b6ada500097968e3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11957\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Contact 88\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11979\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.077Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968e5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11979\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Finhub\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11962\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.234Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968e6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11962\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Friends of St Mary's Church\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11978\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.389Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968e7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11978\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Karibuni\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11969\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.547Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968e8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11969\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Mary Joslin Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11975\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.703Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968e9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11975\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Moola\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11960\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:19.861Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824337b6ada500097968ea\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11960\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBD9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Moria Stewart Bursary\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11970\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.045Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968eb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11970\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Pebrand\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11952\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.193Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968ec\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11952\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Penhurst Church Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11967\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.368Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968ed\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11967\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Progeny\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11959\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.521Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968ee\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11959\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Scalable\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11955\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.691Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968ef\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11955\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Schuster Charitable Trust\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11971\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:20.876Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824338b6ada500097968f0\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11971\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Stafford & Stone Canoe Club\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11972\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.036Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f1\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11972\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBDJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Waggy Tails\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11966\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.194Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11966\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF1\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Wealth at Work\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11956\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.352Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f3\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11956\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF2\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Wealth at Work staff\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11958\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.510Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f4\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11958\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF4\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - WealthKernel\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11963\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.825Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11963\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF3\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Winterflood Securities Limited - Wealthify\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11954\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.665Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f5\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11954\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF5\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wombat Invest\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12125\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:21.987Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824339b6ada500097968f7\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12125\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF6\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Woodford Investment Management\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5454\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.175Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968f8\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5454\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF7\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Woolwich Plan Managers Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"3704\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.339Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968f9\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"3704\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF8\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Wren Investment Office\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"12215\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.501Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968fa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"12215\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFB\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"XPS Self Invested Pensions\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7156\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.816Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968fc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7156\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBF9\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Xafinity Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7155\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.656Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968fb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7155\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCCF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Xafinity Ltd\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6641\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:04.290Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243dcb6ada500097969dc\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7155\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Yorsipp Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10187\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:23.146Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433bb6ada500097968fe\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10187\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCJF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Yorsipp Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10148\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:17.297Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243e95e1fdd00093f2cfa\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10187\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFF\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Zurich Assurance Limited (Ex Allied Dunbar)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10958\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:23.323Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433bb6ada500097968ff\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10958\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFG\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Zurich Assurance Limited (ex Eagle Star)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11076\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:23.478Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433bb6ada50009796900\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11076\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FCDD\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Zurich Corporate Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"6697\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:10:06.592Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618243deb6ada500097969eb\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5196\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFH\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Zurich Corporate Savings\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"5196\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:23.637Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433bb6ada50009796901\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"5196\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFJ\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"Zurich SIPP (CB)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11802\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:23.809Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433bb6ada50009796902\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11802\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F99G\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"iPensions Group\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"7158\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:24.610Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824300b6ada500097967c2\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"7158\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021F992\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"ii SIPP (Interactive Investor)\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"10609\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:06:22.542Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"618242feb6ada500097967b6\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"10609\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FB64\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"shelleytest5\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11354\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:03.135Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"61824327b6ada50009796887\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11354\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        },\n        {\n            \"id\": \"021FBFC\",\n            \"firmId\": \"SECCL\",\n            \"name\": \"xxx Do not use Aberdeen Standard Fund Managers Limited\",\n            \"status\": \"Active\",\n            \"partyType\": \"Company\",\n            \"externalIds\": [\n                {\n                    \"idType\": \"Origo Provider ID\",\n                    \"value\": \"11172\"\n                }\n            ],\n            \"companyType\": [\n                \"Platform\"\n            ],\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-03T08:07:22.988Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3F3\",\n                \"version\": 1,\n                \"application\": \"CoreAPI\"\n            },\n            \"updateId\": \"6182433ab6ada500097968fd\",\n            \"transferProviders\": [\n                {\n                    \"providerReference\": \"11172\",\n                    \"PENSION\": {\n                        \"cashSupported\": true,\n                        \"inSpecieSupported\": false,\n                        \"accountReferenceHint\": \"\"\n                    },\n                    \"transferProviderName\": \"Origo\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 622\n    }\n}"}],"_postman_id":"4f787727-3f5f-41a2-bdf6-cfb1ff9f7825"},{"name":"Create a transfer in request for GIA/ISA","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)"],"type":"text/javascript","id":"4bf9b5c2-aa15-4c5a-814f-2c17f8fe725b"}}],"id":"1fb49fa2-fd59-4e35-84f2-5f4d1c8abfca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"accountId\": \"0352GDJ\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{pfolioUserFirmId}}\",\n            \"accountId\": \"0352GDJ\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"021FC19\",\n            \"previousProviderRef\": \"ABC324234234\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1231231\n        }\n    ]\n}"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup/","description":"<p>This creates a transfer in request, and returns a <code>linkId</code>.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction – this should be set to the <code>Product Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The sub-type of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>In Specie</code></td>\n<td>Transfer should take place in-specie</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Transfer should take place in cash</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>The movement of the assets and/or cash – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.previousProvider</code> string <strong>Required</strong></p>\n<p>The id of the ceding provider – this should be retrieved from the <code>masterparty/platform</code> endpoint</p>\n<hr />\n<p><code>transactions.previousProviderRef</code> string <strong>Required</strong></p>\n<p>The account reference number held by the ceding provider</p>\n<hr />\n<p><code>transactions.transferAccountAddress</code> array <strong>Required</strong></p>\n<p>Contains details of the client's address sent as part of the transfer instruction. This must match what the ceding provider has on their system for the transfer to proceed</p>\n<hr />\n<p><code>transactions.transferAccountAddress.flatNumber</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingName</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingNumber</code> string</p>\n<p>The number or name of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address1</code> string <strong>Required</strong></p>\n<p>The first line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address3</code> string</p>\n<p>The third line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address4</code> string</p>\n<p>The fourth line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.country</code> string <strong>Required</strong></p>\n<p>The country of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.postCode</code> string <strong>Required</strong></p>\n<p>The post code of the client's address</p>\n<hr />\n<p><code>transferValue</code> float <strong>Required</strong></p>\n<p>The estimated value of the transfer</p>\n<hr />\n<p><code>autoInvest</code> boolean</p>\n<p>Triggers automatically investing the transfer according to either a model set for the account or recurring orders, with model taking precedence if both are present. Orders get issued based on the the state of the account at the time the payment settles and a position is created. This option is only valid for cash transfers.</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d02b3429-c4a1-40ad-b411-3a9107251a02","name":"Create an auto-invest cash transfer in request for GIA/ISA","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC324234234\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1231231,\n            \"autoInvest\": true\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005FJP5\"\n    }\n}"}],"_postman_id":"1fb49fa2-fd59-4e35-84f2-5f4d1c8abfca"},{"name":"Create a transfer request in for pension","id":"496b0dcf-38be-4326-a410-f951b745be9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC12312412\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"isPensionTransfer\": false,\n            \"transferValue\": 1000,\n            \"productDrawdownStatus\": \"No Drawdown\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/","description":"<p>This command creates a transfer request and returns a <code>linkId.</code></p>\n<hr />\n<p><strong>A note on the</strong> <strong><code>isPensionTransfer</code></strong> <strong>field</strong></p>\n<p>This is a mandatory field. Please note, we will only accept transfers from pensions with Safeguarded Rights if a suitably qualified and authorised financial adviser has advised the client that the transfer is suitable for their personal circumstances.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction – this should be set to the <code>Product Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The sub-type of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>In Specie</code></td>\n<td>Transfer should take place in-specie</td>\n</tr>\n<tr>\n<td><code>Cash</code></td>\n<td>Transfer should take place in cash</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>The movement of the assets and/or cash – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.previousProvider</code> string <strong>Required</strong></p>\n<p>The <code>previousProvider</code> of the ceding provider – this should be retrieved from the <code>masterparty/platform</code> endpoint</p>\n<hr />\n<p><code>transactions.previousProviderRef</code> string <strong>Required</strong></p>\n<p>The account reference number held by the ceding provider</p>\n<hr />\n<p><code>transactions.transferAccountAddress</code> array <strong>Required</strong></p>\n<p>Contains details of the client's address sent as part of the transfer instruction – this must match what the ceding provider has on their system for the transfer to proceed</p>\n<hr />\n<p><code>transactions.transferAccountAddress.flatNumber</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingName</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingNumber</code> string</p>\n<p>The number or name of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address1</code> string <strong>Required</strong></p>\n<p>The first line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address3</code> string</p>\n<p>The third line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address4</code> string</p>\n<p>The fourth line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.country</code> string <strong>Required</strong></p>\n<p>The country of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.postCode</code> string <strong>Required</strong></p>\n<p>The post code of the client's address</p>\n<hr />\n<p><code>transferValue</code> float <strong>Required</strong></p>\n<p>The estimated value of the transfer</p>\n<hr />\n<p><code>productDrawdownStatus</code> string <strong>Required</strong></p>\n<p>The part of the pension account to be transferred – <code>No Drawdown</code> is the only option available for accumulation pensions</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>No Drawdown</code></td>\n<td>Uncrystallised portion only</td>\n</tr>\n<tr>\n<td><code>Full Drawdown</code></td>\n<td>Full and partially crystallised funds</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>isPensionTransfer</code> boolean <strong>Required for Seccl pension only</strong></p>\n<p>Indicates whether the pension being transferred contains Safeguarded Rights (as defined in Section 48(8) of the Pension Schemes Act 2015)</p>\n<hr />\n<p><code>fcaReference</code> string <strong>Required if</strong> <strong><code>isPensionTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The FCA reference number of the advice firm that provided the advice around transferring the pension with Safeguarded Rights.</p>\n<hr />\n<p><code>autoInvest</code> boolean</p>\n<p>Triggers automatically investing the transfer according to either a model set for the account or recurring orders, with model taking precedence if both are present. Orders get issued based on the the state of the account at the time the payment settles and a position is created. This option is only valid for cash transfers.</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"c2642b0e-0750-43a4-b030-6143505b3a3f","name":"Create a auto-invest cash transfer request in for pension","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC12312412\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"isPensionTransfer\": false,\n            \"transferValue\": 1000,\n            \"productDrawdownStatus\": \"No Drawdown\",\n            \"autoInvest\": true\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"496b0dcf-38be-4326-a410-f951b745be9c"},{"name":"Create a partial cash transfer request in for an accumulation pension","id":"390685ac-6c76-4785-abdb-0905a37b249d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC12312412\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1000,\n            \"isPensionTransfer\": true,\n            \"productDrawdownStatus\": \"No Drawdown\",\n            \"partialTransfer\": true,\n            \"amountToTake\": 1000\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/","description":"<p>This command creates a transfer request and returns a <code>linkId</code>.</p>\n<hr />\n<p><strong>A note on the</strong> <strong><code>isPensionTransfer</code></strong> <strong>field</strong></p>\n<p>This is a mandatory field to indicate whether the pension being transferred contains Safeguarded Rights (as defined in Section 48(8) of the Pension Schemes Act 2015). Please note, we will only accept transfers from pensions with Safeguarded Rights if a suitably qualified and authorised financial adviser has advised the client that the transfer is suitable for their personal circumstances.</p>\n<p><strong>A note on the</strong> <strong><code>amountToTake</code></strong> <strong>and</strong> <strong><code>amountToLeave</code></strong> <strong>fields</strong></p>\n<p>These fields are mutually exclusive. If <code>partialTransfer</code> is set to true, precisely one of these fields must be provided.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction – this should be set to <code>Product Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The sub-type of the transaction - this should be set to <code>Cash</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>The movement of the assets and/or cash – this should be set to <code>In</code></p>\n<hr />\n<p><code>transactions.previousProvider</code> string <strong>Required</strong></p>\n<p>The ID of the ceding provider – this should be retrieved from the <code>masterparty/platform</code> endpoint and the provider must support partial cash transfers into pensions</p>\n<hr />\n<p><code>transactions.previousProviderRef</code> string <strong>Required</strong></p>\n<p>The account reference number held by the ceding provider</p>\n<hr />\n<p><code>transactions.transferAccountAddress</code> array <strong>Required</strong></p>\n<p>Contains details of the client's address sent as part of the transfer instruction – this must match what the ceding provider has on their system for the transfer to proceed</p>\n<hr />\n<p><code>transactions.transferAccountAddress.flatNumber</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingName</code> or</p>\n<p><code>transactions.transferAccountAddress.buildingNumber</code> string</p>\n<p>The number or name of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address1</code> string <strong>Required</strong></p>\n<p>The first line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address3</code> string</p>\n<p>The third line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.address4</code> string</p>\n<p>The fourth line of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.country</code> string <strong>Required</strong></p>\n<p>The country of the client's address</p>\n<hr />\n<p><code>transactions.transferAccountAddress.postCode</code> string <strong>Required</strong></p>\n<p>The post code of the client's address</p>\n<hr />\n<p><code>transactions.transferValue</code> float <strong>Required</strong></p>\n<p>The estimated value of the transfer</p>\n<hr />\n<p><code>transactions.productDrawdownStatus</code> string <strong>Required</strong></p>\n<p>The part of the pension account to be transferred – <code>No Drawdown</code> is the only option available, because partial cash transfers in are only applicable to accumulation pensions</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>No Drawdown</code></td>\n<td>Uncrystallised portion only</td>\n</tr>\n<tr>\n<td><code>Partial Drawdown</code></td>\n<td>Crystallised portion only</td>\n</tr>\n<tr>\n<td><code>Full Drawdown</code></td>\n<td>Uncrystallised and crystallised portions only</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions.isPensionTransfer</code> boolean <strong>Required for Seccl pension only</strong></p>\n<p>Indicates whether the pension being transferred contains Safeguarded Rights (as defined in Section 48(8) of the Pension Schemes Act 2015)</p>\n<hr />\n<p><code>transactions.fcaReference</code> string <strong>Required if</strong> <strong><code>isPensionTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The FCA reference number of the advice firm that provided the advice around transferring the pension with Safeguarded Rights.</p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>Triggers automatically investing the transfer according to either a model set for the account or recurring orders, with model taking precedence if both are present. Orders get issued based on the the state of the account at the time the payment settles and a position is created. This option is only valid for cash transfers.</p>\n<hr />\n<p><code>transactions.partialTransfer</code> boolean</p>\n<p>Indicates whether the pension is a partial transfer. Only applicable for cash transfers into accumulation pension accounts.</p>\n<hr />\n<p><code>transactions.amountToTake</code> float <strong>Required if</strong> <strong><code>partialTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The amount to take from the ceding account. This should match <code>transferValue</code> above.</p>\n<p>If <code>amountToLeave</code> is present, this field <strong>must not</strong> be provided.</p>\n<hr />\n<p><code>transactions.amountToLeave</code> float <strong>Required if</strong> <strong><code>partialTransfer</code></strong> <strong>set to</strong> <strong><code>true</code></strong></p>\n<p>The amount to leave in the ceding account.</p>\n<p>If <code>amountToTake</code> is present, this field <strong>must not</strong> be provided.</p>\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"48ff2194-a1ba-4ad1-bbbc-9de57adb7fe9","name":"Create a partial cash transfer in request in for an accumulation pension","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"{{previousProviderId}}\",\n            \"previousProviderRef\": \"ABC12312412\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1000,\n            \"isPensionTransfer\": true,\n            \"productDrawdownStatus\": \"No Drawdown\",\n            \"partialTransfer\": true,\n            \"amountToTake\": 1000\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"390685ac-6c76-4785-abdb-0905a37b249d"}],"id":"767ceaac-60f9-4dc7-87b1-ab8f71acfa7f","description":"<p>To submit a transfer in instruction, you can use the following steps:</p>\n<ol>\n<li>Retrieve the list of ceding providers available – display this as a dropdown in your application</li>\n<li>Allow the user to select the ceding provider that they wish to transfer from – retrieve the ceding provider Id</li>\n<li>Instruct a product transfer in</li>\n</ol>\n<hr />\n<h4 id=\"some-helpful-hints\"><strong>Some helpful hints</strong></h4>\n<p>Transfer in instructions are validated on two things:</p>\n<ol>\n<li>The ceding account reference provided in the transfer instruction exactly matches the actual ceding account reference</li>\n<li>The client's address provided in the transfer instruction exactly matches the client address held by the ceding provider</li>\n</ol>\n<p>If either of these are incorrect, the transfer will be instantly rejected.</p>\n<p>Transfer instructions can also be rejected due to insufficient cash on the investment account or pending transactions.</p>\n<hr />\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"b1dff173-20b3-4c98-bc6a-3f9284313281"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c4119976-0116-40fb-baa9-b09761ee976d"}}],"_postman_id":"767ceaac-60f9-4dc7-87b1-ab8f71acfa7f"},{"name":"Update book costs","item":[{"name":"Retrieve stock transfers in the group","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.environment.set(`stockTransferTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"d378fe19-84c6-4f48-b98a-0aaaa261093b"}}],"id":"53da45a4-9d01-40dc-876f-cc808a0f1487","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}&transactionType=Stock Transfer","description":"<p>This command returns the linked stock transactions. It allows you to retrieve the stock transactions Ids and the stock transaction updateIds.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{linkId}}"},{"key":"transactionType","value":"Stock Transfer"}],"variable":[]}},"response":[],"_postman_id":"53da45a4-9d01-40dc-876f-cc808a0f1487"},{"name":"Update a single transfer's book value","id":"439cb599-ae0d-4a8a-8590-f1189fb09d4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"bookValue\": \"auto\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/bookvalue/{{firmId}}/{{StockTransferID1}}","description":"<p>You can update the book value of a single \"Stock Transfer - External/Migration\" transaction using this endpoint.</p>\n<p>If <code>bookValue</code> is set to <code>auto</code>, then it will be set to the current <code>transferValue</code>.</p>\n<p>If the transfer has not been completed, the <code>bookValue</code> will be re-calculated and set to <code>transferValue</code> when it does.</p>\n<p>When a float <code>bookValue</code> is provided, the transaction and corresponding account position will be updated to the new value.</p>\n<p>If successful, this request will trigger the below actions depending on the <code>status</code> of the transaction:</p>\n<ul>\n<li>For transactions at <code>status</code> <code>Pending</code> or <code>Completed</code>:<ul>\n<li>updates the <code>bookValue</code> of the Stock Transfer transaction to the value given in the request</li>\n<li>updates or adds the transaction's <code>autoSetBookValue</code> field to <code>true</code> or <code>false</code> depending on whether <code>auto</code> was passed as the <code>bookValue</code></li>\n</ul>\n</li>\n<li>And only if the transaction is at <code>status</code> <code>Completed</code>:<ul>\n<li>updates the related Portfolio Position transaction's <code>value</code> to the number given in the request (or the transfer value if <code>auto</code>)</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"parameters\">Parameters</h3>\n<hr />\n<p><code>bookValue</code> float | 'auto' <strong>Required</strong><br />The mechanism to use when updating bookValue. Accepts either a value or 'auto' to instruct the system to calculate the bookValue automatically.</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","action","bookvalue","{{firmId}}","{{StockTransferID1}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"eb7cac96-e3e9-448b-8963-a1dedf3efc2e","name":"Update book cost","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"bookValue\": 100\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/bookvalue/{{firmId}}/{{StockTransferID1}}"},"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"{{StockTransferID1}}\"\n}"}],"_postman_id":"439cb599-ae0d-4a8a-8590-f1189fb09d4d"},{"name":"Update multiple book values","id":"167d0309-c1a3-41b4-b458-e14d083386ba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"transactions\": [\n        {\n            \"id\": \"{{StockTransferID1}}\",\n            \"firmId\": \"{{firmId}}\",\n            \"bookValue\": 4500\n        },\n        {\n            \"id\": \"{{StockTransferID2}}\",\n            \"firmId\": \"{{firmId}}\",\n            \"bookValue\": \"auto\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/upload/bookvalue/","description":"<p>This command returns a successful array. You can update the book value of many stock transactions in a single request.</p>\n<p>Please see the documentation for updating the book value of a single transfer for more information on the effect of the <code>bookValue</code> parameter.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the stock transfer transactions to updated</p>\n<hr />\n<p><code>transactions.id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the stock transaction</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.bookValue</code> float | 'auto' <strong>Required</strong></p>\n<p>The book value of the asset</p>\n<hr />\n","urlObject":{"path":["upload","bookvalue",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"167d0309-c1a3-41b4-b458-e14d083386ba"},{"name":"[Legacy] Update a single transfer's book value","id":"1c91a643-058d-4ca4-b527-945ba66b2265","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateIdForST1}}\",\n    \"bookValue\": 5000\n}"},"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}/{{StockTransferID1}}","description":"<blockquote>\n<p><strong>WARNING</strong></p>\n<p>This endpoint's functionality is superseded by<br /><code>PUT /portfoliotransaction/action/bookvalue</code><br />We recommend using the new endpoint for new development.</p>\n</blockquote>\n<p>You can update the book value of a single \"Stock Transfer - External/Migration\" transaction using this endpoint.</p>\n<p>This command returns a blank <code>data</code> object if successful, and will trigger the below actions depending on the <code>status</code> of the transaction:</p>\n<ul>\n<li>For transactions at <code>status</code> <code>Pending</code> or <code>Completed</code>:<ul>\n<li>updates the <code>bookValue</code> of the Stock Transfer transaction to the number given in the request</li>\n<li>updates or adds the transaction's <code>autoSetBookValue</code> field to <code>false</code></li>\n</ul>\n</li>\n<li>And only if the transaction is at <code>status</code> <code>Completed</code>:<ul>\n<li>updates the related Portfolio Position transaction's <code>value</code> to the number given in the request</li>\n</ul>\n</li>\n</ul>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The unique identifier assigned to the stock transaction the last time it was updated</p>\n<hr />\n<p><code>bookValue</code> float <strong>Required</strong></p>\n<p>The book value of the asset</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","{{firmId}}","{{StockTransferID1}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c91a643-058d-4ca4-b527-945ba66b2265"}],"id":"52fdecb5-f94e-4bd4-bd82-bc0f4fb246dd","description":"<p>Book costs describe the the price the investor originally paid for the holding they have currently. Ceding providers don't always provide book costs of assets for in-specie transfers. This information is particularly important for GIAs, where any realised gains could be applicable for <a href=\"https://www.gov.uk/capital-gains-tax\">Capital Gains Tax.</a></p>\n<p><strong>Please note: book costs can only be amended when the</strong> <strong><code>Stock Transfer</code></strong> <strong>transaction is at</strong> <strong><code>Placed</code></strong> <strong>,</strong> <strong><code>Pending</code></strong> <strong>or</strong> <strong><code>Completed</code></strong> <strong>status.</strong></p>\n<p>To update the book value of stock transactions, you can follow the below steps:</p>\n<ol>\n<li>Retrieve stock transaction Ids and stock transaction updateIds</li>\n<li>Update the book values – this data must be provided by the investor, adviser or ceding provider.</li>\n</ol>\n","_postman_id":"52fdecb5-f94e-4bd4-bd82-bc0f4fb246dd"},{"name":"The product transfer out object","item":[],"id":"69663981-7f3d-4b30-9f7d-456354c08454","description":"<p>The product transfer out object represents a transfer request out from the system.</p>\n<p>The individual cash transactions or sell orders that make up the client's transfer are linked to the Product Transfer. When all linked orders and cash transactions are complete, the product transfer's <code>transferStatus</code> updates to <code>Completed</code>.</p>\n<p>There are three types of transfer in objects:</p>\n<ol>\n<li><code>Product Transfer:</code>An umbrella object that represents the whole transfer instruction</li>\n<li><code>Payment Transfer:</code>An object that represents the individual cash line within the transfer</li>\n<li><code>Order:</code>An object that represents the individual sell orders within the transfer (only applicable in a sell and transfer out group)</li>\n</ol>\n<p>Payment transfers and orders are actually just <code>portfoliotransaction</code> objects, like you will have found throughout the API. Later in this section we show how to create these.</p>\n<p>A <code>Product Transfer</code> can be made up of any combination of single <code>Payment Transfer</code> (standard cash transfer out) or single <code>Payment Transfer</code> and multiple sell <code>Order</code> (sell and transfer out)</p>\n<p>Directly below, we describe the <code>Product Transfer</code> object for transfer out only.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<p><code>id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction. This will be set to <code>Product Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Cash</code></td>\n<td>Transfer should take place in cash</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>movementType</code> string</p>\n<p>The movement of the cash. This should be set to <code>Out</code></p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>receivingProvider</code> string</p>\n<p>The unique identifier of the receiving provider</p>\n<hr />\n<p><code>receivingProviderRef</code> string</p>\n<p>The reference to denote the transfer</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the product transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Pending</code></td>\n<td>Transfer instruction created</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Transfer completed</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transfer instruction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferStatus</code> string</p>\n<p>The transfer status of the product transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Awaiting sell down</code></td>\n<td>Waiting for the linked sell orders to settle</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Transfer instruction created</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Transfer complete</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transfer instruction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the portfolio transaction group</p>\n<hr />\n<p><code>transferSystem</code> string</p>\n<p>The external system facilitating the transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Manual</code></td>\n<td>Transfers out are currently all set to Manual</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>receivingProviderName</code> string</p>\n<p>The name of the receiving provider</p>\n<hr />\n<p><code>transactionDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>statusChanges</code> array</p>\n<p>Contains details of the <code>status</code> and <code>transferStatus</code> updates</p>\n<hr />\n","_postman_id":"69663981-7f3d-4b30-9f7d-456354c08454"},{"name":"Create a transfer out request","item":[{"name":"Retrieve available transfer out receiving provider","id":"0422cdc8-c680-4e29-a26b-04093a137614","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/masterparty/transferoutprovider/{{firmId}}?productTransferType=Cash","description":"<p>This command returns all available receiving providers for transfer out. You can check the bank details of providers and get the correct id to create transfer out instructions.</p>\n<p>There is validation against <code>receivingProvider</code> when creating a cash transfer to check the given ID is an existing transfer out masterparty with bank details</p>\n<p>Therefore, to reduce the number of rejected transfer instructions, we suggest that you include the data available on this endpoint in your application.</p>\n<p>Query parameter <code>productTransferType</code> is required and only <code>Cash</code> is available now.</p>\n<hr />\n<h4 id=\"attributes\">Attributes</h4>\n<p>Listing only transfer out related attributes below. The response may show other attributes which details are listed on the retrieve available ceding providers section above.</p>\n<p><code>id</code> string</p>\n<p>The unique identifier of the receiving provider</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the receiving provider</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the receiving provider</p>\n<hr />\n<p><code>bankDetails</code> object</p>\n<p>The bank account number &amp; sort code of the receiving provider</p>\n<hr />\n<p><code>bankDetails.accountNumber</code> numeric string</p>\n<p>The bank account number of the receiving provider</p>\n<hr />\n<p><code>bankDetails.sortCode</code> numeric string</p>\n<p>The bank sort code of the receiving provider</p>\n<hr />\n<p><code>transferProviderOut</code> object</p>\n<p>An object to denote whether the receiving provider support cash / in specie transfer out</p>\n<hr />\n<p><code>transferProviderOut.cashSupported</code> boolean</p>\n<p>Flag to denote whether the receiving provider support cash transfer out.</p>\n<p>With query parameter <code>productTransferType</code> set to Cash would mean the receiving providers returned would be <code>true</code> for this field</p>\n<hr />\n<p><code>transferProviderOut.inSpecieSupported</code> boolean</p>\n<p>Flag to denote whether the receiving provider support in specie transfer out.</p>\n<p>It has been set to false for all providers at the moment as only cash transfer out is being introduced.</p>\n","urlObject":{"path":["masterparty","transferoutprovider","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"productTransferType","value":"Cash"}],"variable":[]}},"response":[],"_postman_id":"0422cdc8-c680-4e29-a26b-04093a137614"},{"name":"Create a transfer out request with product transfer","id":"a0bb454b-9cce-43f2-8c6f-2531c5b9a312","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Product Transfer\", \n            \"transactionSubType\": \"Cash\",    \n            \"movementType\": \"Out\",    \n            \"accountId\": \"{{accountId}}\",    \n            \"receivingProvider\": \"{{receivingProviderId}}\",  \n            \"receivingProviderRef\": \"ABC324234234\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\", \n            \"transactionSubType\": \"Transfer\",    \n            \"movementType\": \"Out\",    \n            \"accountId\": \"{{accountId}}\",    \n            \"bankRef\": \"Testing\",    \n            \"currency\": \"GBP\",    \n            \"amount\": 0.1,    \n            \"method\": \"BACS Credit\",\n            \"receivingProviderId\": \"{{receivingProviderId}}\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This creates a product transfer and a linked transfer out payment. The request returns a <code>linkId</code>. This functionality is available for accounts with a wrapper type of GIA or TPPENSION. To instruct a transfer out from accounts with other wrapper types, please contact Seccl’s transfers team to action.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request.</p>\n<p>For transfer out, we expect a product transfer out transaction and a payment transfer out transaction in the array.</p>\n<hr />\n<h5 id=\"product-transfer-out-transaction-object\">Product transfer out transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Product Transfer</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - Only <code>Cash</code> is applicable now</td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Out</code></td>\n</tr>\n<tr>\n<td><code>transactions.receivingProvider</code> string <strong>Required</strong></td>\n<td>The id of the receiving provider – this should be retrieved from the <code>/masterparty/transferoutprovider</code> endpoint</td>\n</tr>\n<tr>\n<td><code>transactions.receivingProviderRef</code> string <strong>Required</strong></td>\n<td>The reference provided by the receiving provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h5 id=\"payment-transfer-out-transaction-object\">Payment transfer out transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Payment</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - this should be set to the <code>Transfer</code></td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Out</code></td>\n</tr>\n<tr>\n<td><code>transactions.bankRef</code> string <strong>Required</strong></td>\n<td>The reference from transfer request</td>\n</tr>\n<tr>\n<td><code>transactions.currency</code> string <strong>Required</strong></td>\n<td>The currency of the payment transfer</td>\n</tr>\n<tr>\n<td><code>transactions.amount</code> float <strong>Required</strong></td>\n<td>The amount to transfer out</td>\n</tr>\n<tr>\n<td><code>transactions.method</code> string <strong>Required</strong></td>\n<td>The transfer out method - this should be set to <code>BACS Credit</code></td>\n</tr>\n<tr>\n<td><code>transactions.receivingProviderId</code> string <strong>Required</strong></td>\n<td>The id of the receiving provider. This should be the same as the <code>receivingProvider</code> given on the product transfer out transaction</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a0bb454b-9cce-43f2-8c6f-2531c5b9a312"}],"id":"45ecc407-9a39-47a3-802a-8bcef25b30d4","description":"<p>To submit a transfer out instruction, you can use the following steps:</p>\n<ol>\n<li>Retrieve the list of receiving providers available – display this as a dropdown in your application</li>\n<li>Allow the user to select the receiving provider that they wish to transfer to – retrieve the receiving provider Id</li>\n<li>Instruct a product transfer out with the payment transfer out</li>\n</ol>\n<hr />\n<h4 id=\"some-helpful-hints\"><strong>Some helpful hints</strong></h4>\n<p>The accountId must be the same in all transactions within the portfolio transaction group. If this is incorrect, the product transfer will be automatically rejected.</p>\n<p>Additionally, transfer out instructions can also be rejected due to:</p>\n<ol>\n<li>Insufficient cash on the investment account</li>\n<li>Pending transactions</li>\n<li>Invalid receivingProvider</li>\n<li>Non active account</li>\n</ol>\n<p>After instructing a transfer out, the account status is updated to “Transfer Out”. Other transactions cannot be posted to the account to ensure we do not use the cash position whilst the transfer out is in progress.</p>\n<p>The account status is <strong>automatically</strong> updated following the completion of the transfer out based on the account position.</p>\n<ul>\n<li>If the account still has cash / assets left after the transfer out, the account status will be reverted back to \"Active\"</li>\n<li>If no balance left in the account after transfering out, e.g. after instructing a full sell and transfer out, the account status will be updated to \"Suspended\".</li>\n</ul>\n<hr />\n","_postman_id":"45ecc407-9a39-47a3-802a-8bcef25b30d4"},{"name":"Create sell and transfer out request","item":[{"name":"Create a full transfer out request","id":"a22c07d6-0555-40d3-8a7c-d200bf8c0f92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"Out\",\n            \"receivingProviderRef\": \"test\",\n            \"receivingProvider\": \"{{receivingProviderId}}\",\n            \"autoDisinvest\": \"Full\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/","description":"<p>This full product transfer out request is sent to instruct a portfolio transaction group that will sell down positions to generate cash and transfer that cash to the new receiving provider. It returns a <code>linkId</code>.</p>\n<p>This functionality is available for accounts with a wrapper type of GIA or TPPENSION. To instruct a transfer out from accounts with other wrapper types, please contact Seccl’s transfers team to action.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request.</p>\n<p>For full product transfer out, we expect a product transfer out transaction that includes autodisinvest field set to <code>\"Full\"</code></p>\n<hr />\n<h5 id=\"product-transfer-out-transaction-object\">Product transfer out transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Product Transfer</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - <code>Cash</code></td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Out</code></td>\n</tr>\n<tr>\n<td><code>transactions.receivingProvider</code> string <strong>Required</strong></td>\n<td>The id of the receiving provider – this should be retrieved from the <code>/masterparty/transferoutprovider</code> endpoint</td>\n</tr>\n<tr>\n<td><code>transactions.receivingProviderRef</code> string <strong>Required</strong></td>\n<td>The reference provided by the receiving provider</td>\n</tr>\n<tr>\n<td><code>transactions.autoDisinvest</code>  <br />string <strong>Required</strong></td>\n<td>This should be set to the <code>Full</code> for full product transfer out</td>\n</tr>\n<tr>\n<td><code>transactions.method</code></td>\n<td>optional - if not provided, it defaults to \"BACS Credit\" on the automatically created payment transfer</td>\n</tr>\n<tr>\n<td><code>transactions.bankRef</code></td>\n<td>optional - if not provided, it defaults to <code>receivingProviderRef</code> on the automatically created payment transfer</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a22c07d6-0555-40d3-8a7c-d200bf8c0f92"},{"name":"Create a partial transfer out request","id":"d3581864-1e16-490a-b467-787b6bf80213","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"Out\",\n            \"receivingProviderRef\": \"test\",\n            \"receivingProvider\": \"{{receivingProviderId}}\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Transfer\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"bankRef\": \"Bank Ref\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"method\": \"BACS Credit\",\n            \"receivingProviderId\": \"{{receivingProviderId}}\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Sell\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{assetId}}\",\n            \"quantity\": 1\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup/","description":"<p>This creates a partial transfer out transaction group and it should include all required sell down orders to fullfil payment out amount specified, and it returns a <code>linkId</code>.</p>\n<p>This functionality is available for accounts with a wrapper type of GIA or TPPENSION. To instruct a transfer out from accounts with other wrapper types, please contact Seccl’s transfers team to action.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account to instruct the transfer</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transaction request.</p>\n<p>Partial transfer out transactions array includes:</p>\n<ul>\n<li>product transfer out transaction object</li>\n<li>payment transfer out transaction object</li>\n<li>order sell transaction object (single or multiple objects)</li>\n</ul>\n<hr />\n<h5 id=\"product-transfer-out-transaction-object\">Product transfer out transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Product Transfer</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - <code>Cash</code></td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Out</code></td>\n</tr>\n<tr>\n<td><code>transactions.receivingProvider</code> string <strong>Required</strong></td>\n<td>The id of the receiving provider – this should be retrieved from the <code>/masterparty/transferoutprovider</code> endpoint</td>\n</tr>\n<tr>\n<td><code>transactions.receivingProviderRef</code> string <strong>Required</strong></td>\n<td>The reference to denote the transfer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h5 id=\"payment-transfer-out-transaction-object\">Payment transfer out transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Payment</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - this should be set to the <code>Transfer</code></td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Out</code></td>\n</tr>\n<tr>\n<td><code>transactions.bankRef</code> string <strong>Required</strong></td>\n<td>The bank reference of the payment transfer</td>\n</tr>\n<tr>\n<td><code>transactions.currency</code> string <strong>Required</strong></td>\n<td>The currency of the payment transfer</td>\n</tr>\n<tr>\n<td><code>transactions.amount</code> float <strong>Required</strong></td>\n<td>The amount to transfer out</td>\n</tr>\n<tr>\n<td><code>transactions.method</code> string <strong>Required</strong></td>\n<td>The transfer out method - this should be set to <code>BACS Credit</code></td>\n</tr>\n<tr>\n<td><code>transactions.receivingProviderId</code> string <strong>Required</strong></td>\n<td>The id of the receiving provider. This should be the same as the <code>receivingProvider</code> given on the product transfer out transaction</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h5 id=\"sell-order-transaction-object\">Sell order transaction object</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field name</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transactions.firmId</code> string <strong>Required</strong></td>\n<td>The unique identifier for your firm</td>\n</tr>\n<tr>\n<td><code>transactions.accountId</code> string <strong>Required</strong></td>\n<td>The unique identifier of the investment account to instruct the transfer  <br />It should match with the <code>accountId</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionType</code> string <strong>Required</strong></td>\n<td>The type of transaction – this should be set to the <code>Order</code></td>\n</tr>\n<tr>\n<td><code>transactions.transactionSubType</code> string <strong>Required</strong></td>\n<td>The sub-type of the transaction - this should be set to the <code>At Best</code></td>\n</tr>\n<tr>\n<td><code>transactions.movementType</code> string <strong>Required</strong></td>\n<td>The movement of the cash – this should be set to <code>Sell</code></td>\n</tr>\n<tr>\n<td><code>transactions.currency</code> string <strong>Required</strong></td>\n<td>The currency of the payment transfer</td>\n</tr>\n<tr>\n<td><code>transactions.amount</code> float <strong>Required</strong></td>\n<td>The amount to transfer out</td>\n</tr>\n<tr>\n<td><code>transactions.quantity</code> decimal string <strong>Required</strong></td>\n<td>The share quantity of the asset sold down</td>\n</tr>\n<tr>\n<td><code>transactions.assetId</code> string <strong>Required</strong></td>\n<td>Unique identifier for a type of asset</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3581864-1e16-490a-b467-787b6bf80213"}],"id":"0fdd0115-5843-4d9a-9d37-7602c294254a","description":"<p>To submit sell and transfer out instruction, you can use the following steps:</p>\n<ol>\n<li>Retrieve the list of receiving providers available – display this as a dropdown in your application</li>\n<li>Allow the user to select the receiving provider that they wish to transfer to – retrieve the receiving provider Id</li>\n<li>Instruct the transfer out<ol>\n<li>full transfer out where full asset position of a portfolio is to be sold down and transferred out as cash and to do this include single product transfer out transaction with autodisinvest field set to \"Full\"</li>\n<li>or partial transfer out with the payment transfer out and sell orders included as part of transaction group, where both of the following are specified on request body. :<ol>\n<li>amount of transfer out</li>\n<li>and assets required to be sold down</li>\n</ol>\n</li>\n</ol>\n</li>\n</ol>\n<hr />\n<h4 id=\"some-helpful-hints\"><strong>Some helpful hints</strong></h4>\n<p>The accountId must be the same in all transactions within the portfolio transaction group. If this is incorrect, the product transfer will be automatically rejected.</p>\n<p>Additionally, transfer out instructions can also be rejected due to:</p>\n<ol>\n<li>Insufficient cash on the investment account</li>\n<li>Pending transactions</li>\n<li>Invalid receivingProvider</li>\n<li>Non active account</li>\n</ol>\n<p>After instructing a transfer out, the account status is updated to “Transfer Out”. Other transactions cannot be posted to the account to ensure we do not use the cash position whilst the transfer out is in progress.</p>\n<p>The account status is <strong>automatically</strong> updated following the completion of the transfer out based on the account position.</p>\n<ul>\n<li>If the account still has cash / assets left after the transfer out, the account status will be reverted back to \"Active\"</li>\n<li>If no balance left in the account after transfering out, e.g. after instructing a full sell and transfer out, the account status will be updated to \"Suspended\"<br />  It can be changed back to Active via the update account status endpoint if needed.</li>\n</ul>\n<hr />\n","_postman_id":"0fdd0115-5843-4d9a-9d37-7602c294254a"},{"name":"Transfers workbench","item":[{"name":"Retrieve all product transfers","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.environment.set(`stockTransferTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"b73d4c3f-92bf-4a4a-98bf-9aa25e0dec35"}}],"id":"5a1d1e2e-a581-4cec-81ad-5d227d2e86ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/producttransfer/{{firmId}}","description":"<p>This command returns the product transfer object of all transfers processed on the platform.</p>\n<p>The endpoint can be filtered by different parameters to allow you to build specific workflows to monitor transfers within your application.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the <code>Product Transfer</code></p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction - this will be set to <code>Product Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction - this will be set to <code>Cash</code> for cash transfers or <code>In Specie</code> for in-specie transfers</p>\n<hr />\n<p><code>movementType</code> string</p>\n<p>The movement of cash or assets - this will be set to <code>In</code></p>\n<hr />\n<p><code>transferAccountAddress</code> array</p>\n<p>Contains details of the address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.flatNumber</code> array</p>\n<p>The flat number of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.buildingName</code> string</p>\n<p>The building name of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.buildingNumber</code> string</p>\n<p>The building number of the client held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.address1</code> string</p>\n<p>The first line of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.address2</code> string</p>\n<p>The second line of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.country</code> string</p>\n<p>The country of the client's address held by the ceding provider</p>\n<hr />\n<p><code>transferAccountAddress.postCode</code> alphanumerical string</p>\n<p>The post code of the client's address held by the ceding provider</p>\n<hr />\n<p><code>previousProvider</code> alphanumerical string</p>\n<p>The unique code for the ceding provider as stored in Seccl's system</p>\n<hr />\n<p><code>previousProviderRef</code> alphanumerical string</p>\n<p>The account reference of the account held by the ceding provider</p>\n<hr />\n<p><code>transferValue</code> float</p>\n<p>The estimated value of the transfer as entered by the user instructing it</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The transaction status of the transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>All linked <code>Cash</code> and <code>Stock</code> transactions are complete</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Instruction created</td>\n</tr>\n<tr>\n<td><code>Placed</code></td>\n<td>Instruction successfully sent to the transfer provider – this is an automated flow and happens instantly</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Instruction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferStatus</code> string</p>\n<p>This can be used to show the progress of the transfer in your application</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>With Previous Provider</code></td>\n<td>Instruction sent to ceding provider and awaiting for them to accept</td>\n</tr>\n<tr>\n<td><code>Onboarding Assets</code></td>\n<td>Instruction accepted by ceding provider and re-registration requests sent for stock transfers - this only applies to in-specie transfers</td>\n</tr>\n<tr>\n<td><code>Completed</code></td>\n<td>Transfer completed - all stock and cash settled</td>\n</tr>\n<tr>\n<td><code>Rejected</code></td>\n<td>Instruction rejected by ceding provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of transactions in the group</p>\n<hr />\n<p><code>transactionDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node attached to the client</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>statusChanges</code> array</p>\n<p>Contains details of the each time the <code>transferStatus</code> is updated</p>\n<hr />\n<p><code>wrapperType</code> string</p>\n<p>The wrapper type of the account</p>\n<hr />\n<p><code>clientName</code> string</p>\n<p>The name of the client</p>\n<hr />\n<p><code>clientId</code> string</p>\n<p>The unique identifier of the client</p>\n<hr />\n<p><code>actionRequired</code> boolean</p>\n<p>Indicates whether book costs need to be added</p>\n<p>This will have a value of <code>true</code> when there are any<code>Stock Transfers In</code> (either <code>transactionSubType</code> <code>External</code> or <code>Migration</code>) linked to the Product Transfer by a linkId, that meet both of the following criteria:</p>\n<ul>\n<li>The <code>bookValue</code> is <code>0.00</code></li>\n<li>The <code>autoSetBookValue</code> is either <code>false</code> or <code>null</code></li>\n</ul>\n<p>In all other scenarios this will have a value of <code>false</code></p>\n<hr />\n<p><code>estimatedValue</code> float</p>\n<p>The estimated value based on the valuation provided by the ceding provider</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","producttransfer","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"clientName","value":"James"},{"disabled":true,"key":"wrapperType","value":"PENSION"},{"disabled":true,"key":"transferStatus","value":"Completed"},{"disabled":true,"key":"nodeId","value":"<nodeId>"}],"variable":[]}},"response":[{"id":"fca499ea-e203-435b-8398-b5c00ffea751","name":"Get All Product Transfers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/producttransfer/{{firmId}}?page=1&pageSize=5","host":["{{apiRoute}}"],"path":["portfoliotransaction","producttransfer","{{firmId}}"],"query":[{"key":"page","value":"1"},{"key":"pageSize","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00003RGSB\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"022CHG3\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"test\",\n                \"buildingNumber\": \"15\",\n                \"address1\": \"Nebular House\",\n                \"address2\": \"15 Waterloo Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"SK152AU\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 5000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003RGS9\",\n            \"transactionDate\": \"2021-11-05T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-11-05T15:47:33.182Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-05T15:47:33.397Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61855215afc29c00090f9531\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-05T15:47:33.394Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"PENSION\",\n            \"clientName\": \"Ms Testy McTesterson\",\n            \"clientId\": \"026495H\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003RGR2\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"022CHG3\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"test\",\n                \"buildingNumber\": \"15\",\n                \"address1\": \"Nebular House\",\n                \"address2\": \"15 Waterloo Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"SK152AU\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 2000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003RGR1\",\n            \"transactionDate\": \"2021-11-05T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-11-05T15:17:28.907Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-05T15:17:29.083Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61854b097aa9f700097d7f02\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-05T15:17:29.080Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"PENSION\",\n            \"clientName\": \"Ms Testy McTesterson\",\n            \"clientId\": \"026495H\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003MCPK\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"0224F6C\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"2\",\n                \"address1\": \"That Street\",\n                \"country\": \"GB\",\n                \"postCode\": \"TS1 1ST\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A30097866\",\n            \"productDrawdownStatus\": \"No Drawdown\",\n            \"transferValue\": 20000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003MCPJ\",\n            \"transactionDate\": \"2021-10-10T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-10-10T07:08:29.984Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-10-10T07:08:33.085Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61629171c2ae73000954edd1\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-10-10T07:08:33.082Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"PENSION\",\n            \"clientName\": \"Mr Geoff Capes\",\n            \"clientId\": \"0259313\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003LH2N\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"0223471\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"test\",\n                \"buildingNumber\": \"15\",\n                \"address1\": \"Nebular House\",\n                \"address2\": \"15 Waterloo Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"SK152AU\"\n            },\n            \"previousProvider\": \"025264B\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 20000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003LH2M\",\n            \"transactionDate\": \"2021-10-04T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-10-04T11:45:50.880Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-10-04T11:45:51.033Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"615ae96f1dc3aa0008fac240\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-10-04T11:45:51.031Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Ms Testy McTesterson\",\n            \"clientId\": \"0256B44\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003LH2L\",\n            \"firmId\": \"SECCI\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"0223471\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"test\",\n                \"buildingNumber\": \"15\",\n                \"address1\": \"Nebular House\",\n                \"address2\": \"15 Waterloo Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"SK152AU\"\n            },\n            \"previousProvider\": \"0252649\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 20000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003LH2K\",\n            \"transactionDate\": \"2021-10-04T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2021-10-04T11:45:15.311Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-10-04T11:45:15.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"615ae94b1dc3aa0008fac239\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-10-04T11:45:15.476Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Ms Testy McTesterson\",\n            \"clientId\": \"0256B44\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        }\n    ],\n    \"meta\": {\n        \"count\": 528,\n        \"page\": 1,\n        \"pageSize\": 5\n    }\n}"},{"id":"91ff08ac-6957-467c-a52f-d0a6617c3233","name":"Retrieve all product transfers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/producttransfer/SDEMO?clientName=Winston","host":["{{apiRoute}}"],"path":["portfoliotransaction","producttransfer","SDEMO"],"query":[{"key":"clientName","value":"James","disabled":true},{"key":"actionRequired","value":"true","disabled":true},{"key":"wrapperType","value":"PENSION","disabled":true},{"key":"transferStatus","value":"Completed","disabled":true},{"key":"nodeId","value":"<nodeId>","disabled":true},{"key":"clientName","value":"Winston"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25309"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 07:28:00 GMT"},{"key":"x-amzn-RequestId","value":"3e8e9343-29d4-4af0-aecb-0561522f2dd0"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25309"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQRwBE6SDoEFnDQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"62dd-8QMWu2FeqjWI7VOYuxxILDZ4F3c\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63032fff-5a211a61098767672552dec2;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 da1b51482b08b4548d36c4cddfb34c00.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"1hzX0zDwzT3ZtUazY45FRkHg1lmj_CU2_678uejNrMKAEE3lThSbOQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00004C1LM\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"ABC23123\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004C1LL\",\n            \"transactionDate\": \"2022-06-24T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-24T09:36:38.947Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-24T09:36:39.745Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b585a7212a2ba969a6d0b7\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-24T09:36:39.724Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00004BDD9\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"HL\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004BDD8\",\n            \"transactionDate\": \"2022-06-21T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-21T13:05:20.044Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-21T13:05:20.483Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b1c210dc6c3d738dfb2bc0\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-21T13:05:20.473Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00004B8F4\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"Hl12433\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004B8F3\",\n            \"transactionDate\": \"2022-06-20T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-20T12:00:08.753Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-20T12:00:09.245Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b06149a6059471f1120e03\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-20T12:00:09.227Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003PN19\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"ABC1234\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003PN18\",\n            \"transactionDate\": \"2022-03-21T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-03-21T13:25:16.269Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-21T13:25:16.446Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62387cbc3a06200009d1e345\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-03-21T13:25:16.443Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003LG8S\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A12341234\",\n            \"transferValue\": 55000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003LG8R\",\n            \"transactionDate\": \"2022-02-28T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-02-28T12:27:40.216Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-28T12:27:40.344Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"621cbfbc23c34a0009d97657\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-02-28T12:27:40.342Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003GPRR\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"HL123123\",\n            \"transferValue\": 35000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003GPRQ\",\n            \"transactionDate\": \"2022-02-07T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-02-07T10:11:09.582Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-07T10:11:10.059Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6200f03ec152470009b4cd97\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-02-07T10:11:10.047Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003FG5N\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DC\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"STNDGB2S\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003FG5M\",\n            \"transactionDate\": \"2022-01-24T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-01-24T16:16:12.089Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-01-24T16:16:12.246Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61eed0cc9408310009d7a9e0\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-01-24T16:16:12.242Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000038D6C\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000038D6B\",\n            \"transactionDate\": \"2021-12-08T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-12-08T10:08:03.357Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-12-08T10:08:04.045Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61b08404c28fba0009612612\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-12-08T10:08:04.032Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"0000374NL\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DC\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"AJB123\",\n            \"transferValue\": 150000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"0000374NK\",\n            \"transactionDate\": \"2021-12-01T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-12-01T10:41:26.078Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-12-01T10:41:26.479Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61a75156040ff7000876bd8e\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-12-01T10:41:26.477Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000035QRL\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CLAOGB2LTRA\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 14000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000035QRK\",\n            \"transactionDate\": \"2021-11-18T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-11-18T16:38:36.018Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-18T16:38:36.232Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6196818cac8a6b0009afc05b\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-18T16:38:36.229Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002RFBG\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"FNZWGB2S009\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002RFBF\",\n            \"transactionDate\": \"2021-09-30T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-30T13:44:56.302Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-30T13:44:56.710Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6155bf580780c80009600336\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-30T13:44:56.707Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002R669\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DC\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CODUGB21TBP\",\n            \"previousProviderRef\": \"12345\",\n            \"transferValue\": 14000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002R668\",\n            \"transactionDate\": \"2021-09-28T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-28T13:42:58.880Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-28T13:42:59.039Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61531be33976670008ae67dc\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-28T13:42:59.036Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002PK53\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"FNZWGB2S009\",\n            \"previousProviderRef\": \"1234567890\",\n            \"transferValue\": 15000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002PK52\",\n            \"transactionDate\": \"2021-09-16T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-16T11:18:45.953Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-16T11:18:46.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"614328163ea37c0009fa31c4\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-16T11:18:46.337Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002NL37\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DC\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"AECVGB21\",\n            \"previousProviderRef\": \"1234\",\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002NL36\",\n            \"transactionDate\": \"2021-09-09T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-09T10:48:41.352Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-09T10:48:41.937Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6139e689db9479000806b044\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-09T10:48:41.930Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002DQ4K\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DC\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A12341234\",\n            \"transferValue\": 150000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002DQ4J\",\n            \"transactionDate\": \"2021-07-30T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-07-30T12:23:24.792Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-07-30T12:23:24.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6103ef3cfe4fc40008f34fb2\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-07-30T12:23:24.960Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"GIA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002746J\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 123456,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002746H\",\n            \"transactionDate\": \"2021-06-14T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-06-14T11:53:24.570Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-14T11:53:24.720Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c74334db5ecd000817349a\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-06-14T11:53:24.717Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000022Q62\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"STNDGB2S\",\n            \"previousProviderRef\": \"SL12345\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"000022Q61\",\n            \"transactionDate\": \"2021-05-17T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-17T10:52:53.507Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-09T09:13:41.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 5,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c0864551c9dc00099ae602\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-17T10:52:53.862Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:40.936Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.118Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.295Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 568552.5\n        },\n        {\n            \"id\": \"000022CPB\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HUSCGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 123456,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"000022CP9\",\n            \"transactionDate\": \"2021-05-12T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-12T14:13:49.691Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-16T12:28:05.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c9ee552967f20009410a73\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-12T14:13:50.599Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-16T12:28:05.796Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-16T12:28:05.917Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 568552.5\n        },\n        {\n            \"id\": \"00000SLSJ\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000SLSH\",\n            \"transactionDate\": \"2021-05-05T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-05T13:40:08.528Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-05-05T13:40:08.694Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6092a0385717f400099ff36e\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-05T13:40:08.691Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000S583\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 150000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000S582\",\n            \"transactionDate\": \"2021-04-29T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-29T15:56:13.828Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-29T15:56:14.053Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"608ad71e581aee0009872f20\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-29T15:56:14.049Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000Q561\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CODUGB21TBP\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000Q55S\",\n            \"transactionDate\": \"2021-04-15T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-15T09:34:23.518Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-15T09:34:23.688Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6078089f167ad80008f50ec8\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-15T09:34:23.686Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000PL6R\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00G2611\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"234234\",\n            \"transferValue\": 200000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000PL6Q\",\n            \"transactionDate\": \"2021-04-09T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-09T13:18:28.048Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-09T13:18:28.257Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"607054248911e5000959e991\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-09T13:18:28.254Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000P243\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CLAOGB2LAVF\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 12500,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000P242\",\n            \"transactionDate\": \"2021-03-31T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-03-31T12:32:04.813Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-03-31T12:32:05.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60646bc5bef1d9000804beef\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-03-31T12:32:05.061Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000LPH3\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"123456\",\n            \"status\": \"Pending\",\n            \"linkId\": \"00000LPH2\",\n            \"transactionDate\": \"2021-02-24T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-02-24T11:48:20.934Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-02-24T11:48:20.938Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60363d04ecf8b80008dee70a\",\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        }\n    ],\n    \"meta\": {\n        \"count\": 24\n    }\n}"},{"id":"520302ae-f05e-4102-973c-18ab2a90216a","name":"Retrieve all product transfers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/producttransfer/SDEMO?wrapperType=ISA","host":["{{apiRoute}}"],"path":["portfoliotransaction","producttransfer","SDEMO"],"query":[{"key":"clientName","value":"James","disabled":true},{"key":"wrapperType","value":"PENSION","disabled":true},{"key":"transferStatus","value":"Completed","disabled":true},{"key":"nodeId","value":"<nodeId>","disabled":true},{"key":"wrapperType","value":"ISA"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"25554"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 07:29:02 GMT"},{"key":"x-amzn-RequestId","value":"35599af2-1d01-44b5-9db2-d368274c078b"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"25554"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQR5xHZbjoEF35Q="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"63d2-l9AFZW/p4mZgUiDgzgdst/vLkWU\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6303303e-2a15b8c424251ae45b1e5f97;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b17ae12a9b26d355791fb59ca965e382.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"K60XnbawMxnjxu3kqmsjBRueu34SeJQl7cPuybU5Y1tp6frhIsZrpA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"00004C1LM\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"ABC23123\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004C1LL\",\n            \"transactionDate\": \"2022-06-24T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-24T09:36:38.947Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-24T09:36:39.745Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b585a7212a2ba969a6d0b7\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-24T09:36:39.724Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00004BDD9\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"HL\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004BDD8\",\n            \"transactionDate\": \"2022-06-21T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-21T13:05:20.044Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-21T13:05:20.483Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b1c210dc6c3d738dfb2bc0\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-21T13:05:20.473Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00004B8F4\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"Hl12433\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00004B8F3\",\n            \"transactionDate\": \"2022-06-20T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-06-20T12:00:08.753Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-20T12:00:09.245Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62b06149a6059471f1120e03\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-20T12:00:09.227Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000047FS1\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"02442JH\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"40\",\n                \"address1\": \"ABINGER ROAD\",\n                \"address2\": \"LONDON\",\n                \"country\": \"GB\",\n                \"postCode\": \"W4 1EX\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"Hl1234512C\",\n            \"transferValue\": 150000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000047FRS\",\n            \"transactionDate\": \"2022-06-07T00:00:00.000Z\",\n            \"nodeId\": \"1\",\n            \"createdDate\": \"2022-06-07T14:54:48.982Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-06-07T14:54:49.136Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"629f66b9bd2d9422f790d824\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-06-07T14:54:49.133Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Miss James Holmes\",\n            \"clientId\": \"0252FHH\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003RB1L\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"022JB7G\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"address1\": \"160 Manchester Road\",\n                \"address2\": \"Doncaster\",\n                \"country\": \"GB\",\n                \"postCode\": \"DN11 6RJ\"\n            },\n            \"previousProvider\": \"RBOSGB2L\",\n            \"previousProviderRef\": \"A1234123\",\n            \"transferValue\": 45000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003RB1K\",\n            \"transactionDate\": \"2022-04-05T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2022-04-05T14:49:32.958Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-04-05T14:49:33.287Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"624c56fd5acc143be984bb13\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-04-05T14:49:33.279Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr John Jones\",\n            \"clientId\": \"023F8B8\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003PN19\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"ABC1234\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003PN18\",\n            \"transactionDate\": \"2022-03-21T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-03-21T13:25:16.269Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-21T13:25:16.446Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"62387cbc3a06200009d1e345\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-03-21T13:25:16.443Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003NH8M\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"023CBJ9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingNumber\": \"{{buildingNumber}}\",\n                \"address1\": \"160 Manchester Road\",\n                \"address2\": \"Doncaster\",\n                \"country\": \"GB\",\n                \"postCode\": \"DN11 6RJ\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A1234123\",\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"00003NH8K\",\n            \"transactionDate\": \"2022-03-11T00:00:00.000Z\",\n            \"nodeId\": \"0\",\n            \"createdDate\": \"2022-03-11T17:42:50.169Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-03-11T17:42:51.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"622b8a1b8ff69300098d3247\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-03-11T17:42:50.961Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2022-03-11T17:42:51.060Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2022-03-11T17:42:51.191Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Caldon Demo\",\n            \"clientId\": \"024B196\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 48031\n        },\n        {\n            \"id\": \"00003LG8S\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"A12341234\",\n            \"transferValue\": 55000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003LG8R\",\n            \"transactionDate\": \"2022-02-28T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-02-28T12:27:40.216Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-28T12:27:40.344Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"621cbfbc23c34a0009d97657\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-02-28T12:27:40.342Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00003GPRR\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"HL123123\",\n            \"transferValue\": 35000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00003GPRQ\",\n            \"transactionDate\": \"2022-02-07T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2022-02-07T10:11:09.582Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-07T10:11:10.059Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6200f03ec152470009b4cd97\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2022-02-07T10:11:10.047Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000038D6C\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000038D6B\",\n            \"transactionDate\": \"2021-12-08T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-12-08T10:08:03.357Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-12-08T10:08:04.045Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61b08404c28fba0009612612\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-12-08T10:08:04.032Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000035SL2\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2G9\",\n            \"transferAccountAddress\": {\n                \"buildingName\": \"1\",\n                \"address1\": \"West Virginia Road\",\n                \"country\": \"GB\",\n                \"postCode\": \"KT13 8RB\"\n            },\n            \"previousProvider\": \"HUSCGB21\",\n            \"previousProviderRef\": \"123456\",\n            \"transferValue\": 500000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000035SL1\",\n            \"transactionDate\": \"2021-11-19T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-11-19T11:57:03.961Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-19T11:57:04.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61979110666a470009e17cd8\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-19T11:57:04.363Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr John Denver\",\n            \"clientId\": \"00DCDG2\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000035QRL\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CLAOGB2LTRA\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 14000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000035QRK\",\n            \"transactionDate\": \"2021-11-18T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-11-18T16:38:36.018Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-18T16:38:36.232Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6196818cac8a6b0009afc05b\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-18T16:38:36.229Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000033BCS\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"02145B1\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"3\",\n                \"buildingNumber\": \"2\",\n                \"address1\": \"Fake street\",\n                \"country\": \"GB\",\n                \"postCode\": \"SW17 8RB\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"HL1234123\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"000033BCR\",\n            \"transactionDate\": \"2021-11-02T00:00:00.000Z\",\n            \"nodeId\": \"5\",\n            \"createdDate\": \"2021-11-02T15:50:11.595Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-02T15:50:11.800Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"61815e33749d81000934a776\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-11-02T15:50:11.797Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Dan Marsh\",\n            \"clientId\": \"00HB4DH\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002RFBG\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"FNZWGB2S009\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 50000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002RFBF\",\n            \"transactionDate\": \"2021-09-30T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-30T13:44:56.302Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-30T13:44:56.710Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6155bf580780c80009600336\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-30T13:44:56.707Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002PK53\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"FNZWGB2S009\",\n            \"previousProviderRef\": \"1234567890\",\n            \"transferValue\": 15000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002PK52\",\n            \"transactionDate\": \"2021-09-16T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-09-16T11:18:45.953Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-09-16T11:18:46.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"614328163ea37c0009fa31c4\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-09-16T11:18:46.337Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00002746J\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2DB\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 123456,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00002746H\",\n            \"transactionDate\": \"2021-06-14T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-06-14T11:53:24.570Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-14T11:53:24.720Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c74334db5ecd000817349a\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-06-14T11:53:24.717Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"000022Q62\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"STNDGB2S\",\n            \"previousProviderRef\": \"SL12345\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"000022Q61\",\n            \"transactionDate\": \"2021-05-17T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-17T10:52:53.507Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-09T09:13:41.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 5,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c0864551c9dc00099ae602\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-17T10:52:53.862Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:40.936Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.118Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.295Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 568552.5\n        },\n        {\n            \"id\": \"000022CPB\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HUSCGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 123456,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"000022CP9\",\n            \"transactionDate\": \"2021-05-12T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-12T14:13:49.691Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-16T12:28:05.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 4,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c9ee552967f20009410a73\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-12T14:13:50.599Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-16T12:28:05.796Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-16T12:28:05.917Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 568552.5\n        },\n        {\n            \"id\": \"00000SLSJ\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000SLSH\",\n            \"transactionDate\": \"2021-05-05T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-05T13:40:08.528Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-05-05T13:40:08.694Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6092a0385717f400099ff36e\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-05T13:40:08.691Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000S583\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"IFUDGB21\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 150000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000S582\",\n            \"transactionDate\": \"2021-04-29T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-29T15:56:13.828Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-29T15:56:14.053Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"608ad71e581aee0009872f20\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-29T15:56:14.049Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000Q561\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CODUGB21TBP\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 100000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000Q55S\",\n            \"transactionDate\": \"2021-04-15T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-15T09:34:23.518Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-15T09:34:23.688Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"6078089f167ad80008f50ec8\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-15T09:34:23.686Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000PL6R\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00G2611\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"LAWHGB21XXX\",\n            \"previousProviderRef\": \"234234\",\n            \"transferValue\": 200000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000PL6Q\",\n            \"transactionDate\": \"2021-04-09T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-04-09T13:18:28.048Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-04-09T13:18:28.257Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"607054248911e5000959e991\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-04-09T13:18:28.254Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000P243\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"CLAOGB2LAVF\",\n            \"previousProviderRef\": \"1234567\",\n            \"transferValue\": 12500,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"With Previous Provider\",\n            \"linkId\": \"00000P242\",\n            \"transactionDate\": \"2021-03-31T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-03-31T12:32:04.813Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-03-31T12:32:05.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60646bc5bef1d9000804beef\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-03-31T12:32:05.061Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                }\n            ],\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        },\n        {\n            \"id\": \"00000LPH3\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"HARLGB21\",\n            \"previousProviderRef\": \"123456\",\n            \"status\": \"Pending\",\n            \"linkId\": \"00000LPH2\",\n            \"transactionDate\": \"2021-02-24T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-02-24T11:48:20.934Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-02-24T11:48:20.938Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60363d04ecf8b80008dee70a\",\n            \"wrapperType\": \"ISA\",\n            \"clientName\": \"Mr Winston Churchill\",\n            \"clientId\": \"00DCDF3\",\n            \"actionRequired\": false,\n            \"estimatedValue\": 0\n        }\n    ],\n    \"meta\": {\n        \"count\": 24\n    }\n}"}],"_postman_id":"5a1d1e2e-a581-4cec-81ad-5d227d2e86ea"},{"name":"Retrieve stock transfers in the product transfer","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.environment.set(`stockTransferTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"a0db4420-cb1a-47a9-83ac-09f2ab590061"}}],"id":"ed32a442-8a53-49e5-8add-e178e86359f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}&transactionType=Stock Transfer","description":"<p>This command returns the stock transfer transactions of the product transfer under the given <code>linkId</code>.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> alphanumerical string</p>\n<p>The unique identifier of the stock transfer transaction</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node attached to the client object</p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction – this will be set to <code>Stock Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction – this will be set to <code>Migration</code></p>\n<hr />\n<p><code>movementType</code> string</p>\n<p>The movement of the – this will be set to <code>In</code></p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the group transaction that relates to all cash and stock transfers in the group</p>\n<hr />\n<p><code>quantity</code> float</p>\n<p>The number of units</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The inputted book cost of the asset</p>\n<hr />\n<p><code>autoSetBookValue</code> boolean</p>\n<p>If <code>true</code>: ensures the <code>bookValue</code> equals the <code>transferValue</code></p>\n<p>If <code>false|null</code>: <code>bookValue</code> has been set manually</p>\n<hr />\n<p><code>previousProvider</code> string</p>\n<p>The unique code for the ceding provider as stored in Seccl's system</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>Units posted to investment account</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Awaiting units</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transaction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>instrumentType</code> string</p>\n<p>The type of instrument</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Fund</td>\n</tr>\n<tr>\n<td>Investment Trust</td>\n</tr>\n<tr>\n<td>ETF</td>\n</tr>\n<tr>\n<td>Equity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferValue</code> float</p>\n<p>The estimated value of the transaction if inputted when created</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Contains audit details</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the transaction when it was last updated – this should be used when adding book costs</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{linkId}}"},{"key":"transactionType","value":"Stock Transfer"}],"variable":[]}},"response":[{"id":"60c1502c-044d-41cc-a5cd-9c43bfd9f51e","name":"Get stock transfers","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/SDEMO?linkId=000022Q61&transactionType=Stock Transfer","host":["{{apiRoute}}"],"path":["portfoliotransaction","SDEMO"],"query":[{"key":"linkId","value":"000022Q61"},{"key":"transactionType","value":"Stock Transfer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"2317"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 07:29:47 GMT"},{"key":"x-amzn-RequestId","value":"825aba16-83fa-494d-b903-1861a8376ddc"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"2317"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQSAxEj_DoEFUGg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"90d-LILjPJ/DXhrI/SNXvqbHiyPjN7k\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6303306b-6c01d5d507ebe7ef4d6ee103;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b17ae12a9b26d355791fb59ca965e382.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"rYQl6H3ybmHivQrhvL01wSbSkTR6BgWllM37yXHRXXjeUwxwl_b3rQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"000026M34\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"26R3G\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 1000,\n            \"bookValue\": 4500,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Pending\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Legal & General UT Mgr Ltd (N) Tracker F Acc\",\n            \"isin\": \"GB00B90TBZ18\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 167200,\n            \"createdDate\": \"2021-06-09T09:13:39.894Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-11T10:33:38.793Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"618cf182b7e93e0008c140c9\"\n        },\n        {\n            \"id\": \"000026M35\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"27DQN\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 500,\n            \"bookValue\": 6700,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Pending\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Liontrust Fund Partners LLP European Growth A Inc\",\n            \"isin\": \"GB00B7T92B14\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 70422.5,\n            \"createdDate\": \"2021-06-09T09:13:40.305Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-11T10:33:39.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"618cf183b7e93e0008c140cb\"\n        },\n        {\n            \"id\": \"000026M36\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"26MM1\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 9000,\n            \"bookValue\": 0,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Completed\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"isin\": \"GB0030720733\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 330930,\n            \"createdDate\": \"2021-06-09T09:13:40.627Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-09T09:24:52.201Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 3,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"60c088e481a1bd000928abc0\",\n            \"completedDate\": \"2021-06-09T09:24:52.171Z\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Completed\",\n                    \"statusDate\": \"2021-06-09T09:24:52.197Z\",\n                    \"description\": \"Payment received\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 3\n    }\n}"}],"_postman_id":"ed32a442-8a53-49e5-8add-e178e86359f7"},{"name":"Retrieve transactions in the product transfer","event":[{"listen":"test","script":{"exec":["let jsonData = pm.response.json().data","console.log(JSON.stringify(jsonData))","jsonData.map((txn, idx) => pm.environment.set(`stockTransferTransaction${idx}`, txn.id))"],"type":"text/javascript","id":"6c559b43-1b2f-4cbf-851f-59c088bd9029"}}],"id":"6cab2bbc-44af-429c-8f9c-8e57c2950d5a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?linkId={{linkId}}","description":"<p>This command will allow you to retrieve all linked stock transactions for the product transfer in question.</p>\n<p>Within the user interface, our flow for our advisors is:</p>\n<ul>\n<li>Get and display all product transfers</li>\n<li>If you click into one of the product transfers you then see all the stock transfers</li>\n<li>If the stock transfers are pending, you are able to update the book value (see the next request)</li>\n</ul>\n<p>Fields you might find on different transaction types returned by this endpoint:</p>\n<p>This command returns the stock transfer transactions of the product transfer under the given <code>linkId</code>.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> alphanumerical string</p>\n<p>The unique identifier of the stock transfer transaction</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>nodeId</code> numerical string</p>\n<p>The unique identifier of the node attached to the client object</p>\n<hr />\n<p><code>accountId</code> string</p>\n<p>The unique identifier of the investment account</p>\n<hr />\n<p><code>transactionType</code> string</p>\n<p>The type of transaction</p>\n<hr />\n<p><code>transactionSubType</code> string</p>\n<p>The sub-type of the transaction</p>\n<hr />\n<p><code>movementType</code> string</p>\n<p>The movement direction of the transaction</p>\n<hr />\n<p><code>currency</code> string</p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier of the group of transactions that relates to all cash and stock transfers in the group</p>\n<hr />\n<p><code>quantity</code> float</p>\n<p>The number of units (if a Stock transaction)</p>\n<hr />\n<p><code>amount</code> float</p>\n<p>The cash amount (if a Cash transaction)</p>\n<hr />\n<p><code>bookValue</code> float</p>\n<p>The inputted book cost of the asset</p>\n<hr />\n<p><code>autoSetBookValue</code> boolean</p>\n<p>If <code>true</code>: ensures the <code>bookValue</code> equals the <code>transferValue</code></p>\n<p>If <code>false|null</code>: <code>bookValue</code> has been set manually</p>\n<hr />\n<p><code>previousProvider</code> string</p>\n<p>The unique code for the ceding provider as stored in Seccl's system</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>Units posted to investment account</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Awaiting units</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transaction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferDate</code> numerical string</p>\n<p>The date the transaction was instructed</p>\n<hr />\n<p><code>assetName</code> string</p>\n<p>The name of the asset</p>\n<hr />\n<p><code>isin</code> string</p>\n<p>The ISIN of the asset</p>\n<hr />\n<p><code>instrumentType</code> string</p>\n<p>The type of instrument</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Fund</td>\n</tr>\n<tr>\n<td>Investment Trust</td>\n</tr>\n<tr>\n<td>ETF</td>\n</tr>\n<tr>\n<td>Equity</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferValue</code> float</p>\n<p>The estimated value of the transaction if inputted when created</p>\n<hr />\n<p><code>createdDate</code> numerical string</p>\n<p>The date and time the transaction was instructed</p>\n<hr />\n<p><code>clientProductActionId</code> string</p>\n<p>Action related to the clientProduct (e.g. Benefit Crystallisation)</p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Contains audit details</p>\n<hr />\n<p><code>updateId</code> string</p>\n<p>The unique identifier assigned to the transaction when it was last updated – this should be used when adding book costs</p>\n<hr />\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"linkId","value":"{{linkId}}"}],"variable":[]}},"response":[{"id":"8427dd14-fba9-4526-802f-ccbdaee3ff80","name":"Retrieve transactions in the product transfer","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":{"raw":"{{apiRoute}}/portfoliotransaction/SDEMO?linkId=000022Q61","host":["{{apiRoute}}"],"path":["portfoliotransaction","SDEMO"],"query":[{"key":"linkId","value":"000022Q61"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"3633"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 07:30:16 GMT"},{"key":"x-amzn-RequestId","value":"99c5a481-efd0-4c35-811e-673d358c6159"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"3633"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQSFUFJVjoEFimg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"e31-bxUXrCpZu31rdwqINZeilrKVcPo\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63033088-06ae00354394f0997109e1e3;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 b17ae12a9b26d355791fb59ca965e382.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"5hyKatrhCwJe6A1AAPbzdMvjrLgLF4mkb0DxCbWlfGq75g7Kr8EuxA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"000022Q62\",\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"In Specie\",\n            \"movementType\": \"In\",\n            \"accountId\": \"00DC2D9\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"1\",\n                \"buildingName\": \"1\",\n                \"buildingNumber\": \"1\",\n                \"address1\": \"Fake \",\n                \"country\": \"GB\",\n                \"postCode\": \"AB1C 2DE\"\n            },\n            \"previousProvider\": \"STNDGB2S\",\n            \"previousProviderRef\": \"SL12345\",\n            \"transferValue\": 10000,\n            \"status\": \"Pending\",\n            \"transferStatus\": \"Onboarding Assets\",\n            \"linkId\": \"000022Q61\",\n            \"transactionDate\": \"2021-05-17T00:00:00.000Z\",\n            \"nodeId\": \"4\",\n            \"createdDate\": \"2021-05-17T10:52:53.507Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-09T09:13:41.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 5,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"60c0864551c9dc00099ae602\",\n            \"statusChanges\": [\n                {\n                    \"transferStatus\": \"With Previous Provider\",\n                    \"statusDate\": \"2021-05-17T10:52:53.862Z\",\n                    \"description\": \"Transfers are with previous provider - awaiting upload\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:40.936Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.118Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                },\n                {\n                    \"transferStatus\": \"Onboarding Assets\",\n                    \"statusDate\": \"2021-06-09T09:13:41.295Z\",\n                    \"description\": \"Transfer group is now onboarding assets\"\n                }\n            ]\n        },\n        {\n            \"id\": \"000026M34\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"26R3G\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 1000,\n            \"bookValue\": 4500,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Pending\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Legal & General UT Mgr Ltd (N) Tracker F Acc\",\n            \"isin\": \"GB00B90TBZ18\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 167200,\n            \"createdDate\": \"2021-06-09T09:13:39.894Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-11T10:33:38.793Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"618cf182b7e93e0008c140c9\"\n        },\n        {\n            \"id\": \"000026M35\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"27DQN\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 500,\n            \"bookValue\": 6700,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Pending\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Liontrust Fund Partners LLP European Growth A Inc\",\n            \"isin\": \"GB00B7T92B14\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 70422.5,\n            \"createdDate\": \"2021-06-09T09:13:40.305Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-11-11T10:33:39.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 2,\n                \"application\": \"PortfolioProcessor\"\n            },\n            \"updateId\": \"618cf183b7e93e0008c140cb\"\n        },\n        {\n            \"id\": \"000026M36\",\n            \"firmId\": \"SDEMO\",\n            \"nodeId\": \"4\",\n            \"accountId\": \"00DC2D9\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Migration\",\n            \"movementType\": \"In\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"26MM1\",\n            \"linkId\": \"000022Q61\",\n            \"quantity\": 9000,\n            \"bookValue\": 0,\n            \"previousProvider\": \"00D9198\",\n            \"status\": \"Completed\",\n            \"transactionDate\": \"2021-06-09T00:00:00.000Z\",\n            \"assetName\": \"Royal Bank of Scotland Pacific Basin Equity 5 Inc\",\n            \"isin\": \"GB0030720733\",\n            \"mic\": \"XOFF\",\n            \"instrumentType\": \"Fund\",\n            \"transferValue\": 330930,\n            \"createdDate\": \"2021-06-09T09:13:40.627Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2021-06-09T09:24:52.201Z\",\n                \"userFirmId\": \"SECCL\",\n                \"userId\": \"029B3HD\",\n                \"version\": 3,\n                \"application\": \"PfolioAPI\"\n            },\n            \"updateId\": \"60c088e481a1bd000928abc0\",\n            \"completedDate\": \"2021-06-09T09:24:52.171Z\",\n            \"statusChanges\": [\n                {\n                    \"status\": \"Completed\",\n                    \"statusDate\": \"2021-06-09T09:24:52.197Z\",\n                    \"description\": \"Payment received\"\n                }\n            ]\n        }\n    ],\n    \"meta\": {\n        \"count\": 4\n    }\n}"}],"_postman_id":"6cab2bbc-44af-429c-8f9c-8e57c2950d5a"}],"id":"57cdcae0-da95-4ee3-84ef-2fbe9d4b0059","description":"<p>This section contains requests that can be used to build a transfers workbench in your application – whether it's for your operational team, platform users, or the end investor. This includes:</p>\n<ul>\n<li>Retrieving all product transfers</li>\n<li>Selecting a product transfer and viewing the linked cash or stock transfers</li>\n<li>Updating the book costs of stock holdings included in the transfer</li>\n</ul>\n<p>The Seccl transfers workbench aims to provide greater transparency of inflight cash and in-specie transfers instructed from other platforms (the ceding provider) to your platform.</p>\n<p>The status updates can be made available in your application to allow clients or platform users to monitor the progress of the product transfer from initial instruction through to completion.</p>\n<p>There are seven possible <code>transferStatus</code> for transfers</p>\n<ol>\n<li><p><code>With Previous Provider:</code>Transfer <em><strong>IN</strong></em> request has been sent to ceding provider and is awaiting acceptance and an account valuation (what assets or cash the account holds)</p>\n</li>\n<li><p><code>Onboarding Assets:</code>Transfer <em><strong>IN</strong></em> request accepted by ceding provider and re-registration of assets and/or cash is in progress</p>\n</li>\n<li><p><code>Pending</code>: Transfer <em><strong>OUT</strong></em> has been sent to receiving provider and is waiting for settlement</p>\n</li>\n<li><p><code>Awaiting sell down</code>: Sell and transfer out has been made, sell orders have been created but awaiting settlement.</p>\n</li>\n<li><p><code>Completed:</code>All stock and cash transfers have <code>Completed</code> and been allocated to the investment account</p>\n</li>\n<li><p><code>Rejected:</code>Transfer <em><strong>IN</strong></em> request has been rejected</p>\n</li>\n<li><p><code>Deleted</code>: Transfer <em><strong>OUT</strong></em> request has been cancelled</p>\n</li>\n</ol>\n<h4 id=\"understanding-the-operational-and-technical-flow\"><strong>Understanding the operational and technical flow</strong></h4>\n<p>There are three types of transfer objects:</p>\n<ol>\n<li><code>Product Transfer:</code>An object that represents the transfer instruction</li>\n<li><code>Stock Transfer:</code>An object that represents individual stock lines within the transfer (one per asset)</li>\n<li><code>Cash Transfer:</code>An object that represents the individual cash line within the transfer</li>\n</ol>\n<p>A <code>Product Transfer</code> can be made up of a single <code>Cash Transfer</code> transaction, a single <code>Stock Transfer</code> transaction and <code>Cash Transfer</code> transaction, or several <code>Stock Transfer</code> transactions and a single <code>Cash Transfer</code> transaction.</p>\n<p>The transfers workbench also has functionality to allow the client or platform user to update the book costs of assets transferred via an in-specie transfer.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/portfoliotransaction\n/portfoliotransaction/producttransfer\n/upload/bookvalue/\n\n</code></pre>\n","_postman_id":"57cdcae0-da95-4ee3-84ef-2fbe9d4b0059"},{"name":"Create a manual transfer in","item":[{"name":"Get available ceding providers","event":[{"listen":"test","script":{"id":"3451d69e-2e4b-4599-b2ff-c646167c46c5","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"masterPartyIdScanned\", data.data[0].id)"],"type":"text/javascript","packages":{}}}],"id":"8eb074fc-1ebf-460e-9ef5-6fbb2c941dfa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/masterparty/platform/{{firmId}}?supportsManuals=True","description":"<h3 id=\"retrieve-available-ceding-providers\">Retrieve Available Ceding Providers</h3>\n<p>This command returns a list of available ceding providers from:</p>\n<ul>\n<li><p>Origo</p>\n</li>\n<li><p>ATG</p>\n</li>\n<li><p>Seccl’s \"Golden List\" of manual ceding providers</p>\n</li>\n</ul>\n<p>Manual ceding providers can be identified by checking the following fields:</p>\n<ul>\n<li><p><code>transferProviders.${wrapperType}.manualCash</code> = <code>true</code> (for cash transfers), or</p>\n</li>\n<li><p><code>transferProviders.${wrapperType}.manualInSpecie</code> = <code>true</code> (for in-specie transfers)</p>\n</li>\n</ul>\n<p>By default the search will include all providers whether manual or non manual. For further filtering the query parameter <code>supportsManuals</code> can be used to retrieve only manual ceding providers or only non manual ceding providers.</p>\n<p>The <strong>signature type</strong> of each provider is available in:</p>\n<ul>\n<li><code>transferProviders.${wrapperType}.signatureType</code></li>\n</ul>\n<p><strong>Note:</strong> The list of ceding providers varies depending on the <code>wrapperType</code> and whether the transfer is <em>cash</em> or <em>in-specie</em>.</p>\n<h3 id=\"optional-query-parameters\">Optional Query Parameters</h3>\n<p>You can narrow your results by using the following query parameters:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>transferWrapperType</code></td>\n<td>The account’s wrapper type</td>\n</tr>\n<tr>\n<td><code>productTransferType</code></td>\n<td>Type of product transfer: <code>\"Cash\"</code> or <code>\"In Specie\"</code></td>\n</tr>\n<tr>\n<td><code>name</code></td>\n<td>Fuzzy match filter based on the provider’s name</td>\n</tr>\n<tr>\n<td><code>status</code></td>\n<td>Filters by the status of the ceding provider record</td>\n</tr>\n<tr>\n<td><code>id</code></td>\n<td>The unique identifier of a specific ceding provider</td>\n</tr>\n<tr>\n<td><code>supportsManuals</code></td>\n<td>Used to show only manual or non manual ceding providers:  <br /><code>True</code> (To show only manual ceding providers) or <code>False</code> (To show only non manual ceding providers)</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<hr />\n<h4 id=\"attributes\">Attributes</h4>\n<p><code>id</code> string</p>\n<p>The unique identifier of the ceding provider</p>\n<hr />\n<p><code>firmId</code> string</p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>name</code> string</p>\n<p>The name of the ceding provider</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the ceding provider</p>\n<hr />\n<p><code>partyType</code> string</p>\n<hr />\n<p><code>externalIds</code> array</p>\n<p>Contains details of the ceding provider's external Ids in Origo and/or ATG</p>\n<hr />\n<p><code>externalIds.idType</code> string</p>\n<p>The system that the identifier relates to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Origo Provider ID</code></td>\n<td>The ceding provider identifier in Origo</td>\n</tr>\n<tr>\n<td><code>ATG Reference</code></td>\n<td>The ceding provider identifier in ATG</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>externalIds.value</code> string</p>\n<p>The ceding provider's identifier in the external system</p>\n<hr />\n<p><code>companyType</code> string</p>\n<p>The type of company. This will be set to <code>Platform</code></p>\n<hr />\n<p><code>auditDetails</code> array</p>\n<p>Contains audit details of the object</p>\n<hr />\n<p><code>transferProviders</code> array</p>\n<p>Contains details of what the ceding provider can facilitate for each system. If this does not exist for a given masterparty object, then it is not available to request a transfer from electronically - please contact Seccl.</p>\n<hr />\n<p><code>transferProviders.providerReference</code> string</p>\n<p>The ceding provider's identifier in the external system</p>\n<hr />\n<p><code>transferProviders.transferProviderName</code> string</p>\n<p>The external transfer system that the information contained in the array relates to</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>ATG</code></td>\n<td>Altus Transfers Gateway. This includes both electronic transfers and manual ceding providers from Seccl’s “Golden List,” as these are processed through ATG internally.</td>\n</tr>\n<tr>\n<td><code>Origo</code></td>\n<td>Origo Transfers System</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferProviders.{{wrapperType}}</code> array</p>\n<p>Contains details of what type of transfers can be supported for that <code>wrapperType</code> – for ATG transfers, this will include <code>PENSION</code>, <code>GIA</code>, <code>ISA</code>, and <code>JISA</code>; and for Origo transfers, this will include <code>PENSION</code> only</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.cashSupported</code> boolean</p>\n<p>Indicates whether cash transfers are supported</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.inSpecieSupported</code> boolean</p>\n<p>Indicates whether in-specie transfers are supported</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.manualCash</code> boolean</p>\n<p>Indicates whether manual cash transfers are supported. Manual cash transfers are not supported if it is undefined / false</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.manualInSpecie</code> boolean</p>\n<p>Indicates whether manual in specie transfers are supported. Manual in specie transfers are not supported if it is undefined / false</p>\n<hr />\n<p><code>transferProviders.{{wrapperType}}.signatureType</code> string</p>\n<p>The type of documents to provide for a manual transfer</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Wet</code></td>\n<td>The supporting document needs to be sent via post to Seccl</td>\n</tr>\n<tr>\n<td><code>Scanned</code></td>\n<td>The supporting document needs to be uploaded to our system in prior to the creation of product transfer</td>\n</tr>\n<tr>\n<td><code>Electronic</code></td>\n<td>The supporting document needs to be uploaded to our system in prior to the creation of product transfer</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transferProviders.{{wrapperType}}.accountReferenceHint</code> string</p>\n<p>This can be used to indicate what the ceding provider account reference should look like</p>\n<hr />\n","urlObject":{"path":["masterparty","platform","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"name","value":"<Ceding provider name>"},{"disabled":true,"key":"productTransferType","value":"Cash"},{"disabled":true,"key":"transferWrapperType","value":"Pension"},{"key":"supportsManuals","value":"True"}],"variable":[]}},"response":[],"_postman_id":"8eb074fc-1ebf-460e-9ef5-6fbb2c941dfa"},{"name":"Create File Upload (get upload url)","event":[{"listen":"test","script":{"id":"29cc28b8-c162-42c6-8dd1-f6448e437336","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"fileUploadId\", data.data.id);","pm.environment.set(\"fileUploadContentType\", data.data.fields['Content-Type']);","pm.environment.set(\"fileUploadBucket\", data.data.fields['bucket']);","pm.environment.set(\"fileUploadXAmzAlgorithm\", data.data.fields['X-Amz-Algorithm']);","pm.environment.set(\"fileUploadXAmzCredential\", data.data.fields['X-Amz-Credential']);","pm.environment.set(\"fileUploadXAmzDate\", data.data.fields['X-Amz-Date']);","pm.environment.set(\"fileUploadXAmzSecurityToken\", data.data.fields['X-Amz-Security-Token']);","pm.environment.set(\"fileUploadKey\", data.data.fields['key']);","pm.environment.set(\"fileUploadPolicy\", data.data.fields['Policy']);","pm.environment.set(\"fileUploadXAmzSignature\", data.data.fields['X-Amz-Signature']);"],"type":"text/javascript","packages":{}}}],"id":"91c5db25-852f-4a57-b766-4d78c0d92cca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/filestore/manualtransferin","description":"<h3 id=\"endpoint-description\">Endpoint Description</h3>\n<p>This endpoint allows users to create a record for a file upload associated with a specific firm. It is designed to facilitate the integration of external file sources into the platform.</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>{{apiRoute}}/filestore/manualtransferin</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 parameter:</p>\n<ul>\n<li><strong>firmId</strong> (string): The unique identifier for the firm to which the files will be transferred. This parameter is required to associate the transfer with the correct firm.</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  \"firmId\": \"{{firmId}}\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The response body will contain a <code>data</code> object with the following fields:</p>\n<ul>\n<li><p><strong>id</strong> (string): The identifier for the refreshed file upload.</p>\n</li>\n<li><p><strong>url</strong> (string): The URL where the file can be accessed.</p>\n</li>\n<li><p><strong>fields</strong> (object): Contains additional fields related to the file upload, including:</p>\n<ul>\n<li><p><strong>Content-Type</strong> (string): The MIME type of the file.</p>\n</li>\n<li><p><strong>bucket</strong> (string): The storage bucket where the file is located.</p>\n</li>\n<li><p><strong>X-Amz-Algorithm</strong> (string): The algorithm used for the request.</p>\n</li>\n<li><p><strong>X-Amz-Credential</strong> (string): The credentials for the request.</p>\n</li>\n<li><p><strong>X-Amz-Date</strong> (string): The date of the request.</p>\n</li>\n<li><p><strong>X-Amz-Security-Token</strong> (string): The security token for the request.</p>\n</li>\n<li><p><strong>key</strong> (string): The key for accessing the file.</p>\n</li>\n<li><p><strong>Policy</strong> (string): The policy associated with the file upload.</p>\n</li>\n<li><p><strong>X-Amz-Signature</strong> (string): The signature for the request.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>These properties should be used to securely upload the file to AWS, as demonstrated in <strong>Create File upload (upload file).</strong></p>\n<p><a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html\">https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html</a></p>\n<p>Example response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"\",\n    \"url\": \"\",\n    \"fields\": {\n      \"Content-Type\": \"\",\n      \"bucket\": \"\",\n      \"X-Amz-Algorithm\": \"\",\n      \"X-Amz-Credential\": \"\",\n      \"X-Amz-Date\": \"\",\n      \"X-Amz-Security-Token\": \"\",\n      \"key\": \"\",\n      \"Policy\": \"\",\n      \"X-Amz-Signature\": \"\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["filestore","manualtransferin"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"91c5db25-852f-4a57-b766-4d78c0d92cca"},{"name":"Create File Upload (upload file)","id":"c653db8c-b27b-4aa2-b28f-544dd9281ddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"Content-Type","value":"{{fileUploadContentType}}","type":"text","uuid":"803aa9b2-6987-4a1c-8883-0960e24f6e03"},{"key":"bucket","value":"{{fileUploadBucket}}","type":"text","uuid":"1685b67e-c9ce-4f30-bfe9-798b9bdef2f4"},{"key":"X-Amz-Algorithm","value":"{{fileUploadXAmzAlgorithm}}","type":"text","uuid":"18f1f229-4f80-4662-bbbd-09956dd433c7"},{"key":"X-Amz-Credential","value":"{{fileUploadXAmzCredential}}","type":"text","uuid":"1b6f2f2e-fbd5-4790-bcec-8023f9fb2a3d"},{"key":"X-Amz-Date","value":"{{fileUploadXAmzDate}}","type":"text","uuid":"c8dc30ac-246b-4009-afde-bcb74559a23a"},{"key":"X-Amz-Security-Token","value":"{{fileUploadXAmzSecurityToken}}","type":"text","uuid":"5bc454b8-1ec4-4557-bef1-9137769df88a"},{"key":"key","value":"{{fileUploadKey}}","type":"text","uuid":"a9092ef9-d761-42e1-a17d-e87342562a28"},{"key":"Policy","value":"{{fileUploadPolicy}}","type":"text","uuid":"28379b31-b4c4-4b55-b674-34011e2c71e3"},{"key":"X-Amz-Signature","value":"{{fileUploadXAmzSignature}}","type":"text","uuid":"57429d1d-10f1-46d2-a8e5-458cb07a10a8"},{"key":"file","type":"file","uuid":"fab05494-bbad-4354-b63e-6f5addaf7a53","src":"postman-cloud:///1f03c748-2705-4c40-867d-463a5cb4e888"}]},"url":"https://{{environment}}-manual-transfers-in-file-store-temporary.s3.eu-west-1.amazonaws.com/","description":"<h2 id=\"file-upload-endpoint\">File Upload Endpoint</h2>\n<p>This endpoint allows users to upload files to a specified storage bucket. The request must be made using the HTTP POST method and includes a set of form-data parameters that provide necessary authentication and metadata for the upload process.</p>\n<p>{{environment}} must be one of these values:</p>\n<ul>\n<li><p><code>staging</code> (To access the staging environment)</p>\n</li>\n<li><p><code>prod</code> (To access the production environment</p>\n</li>\n</ul>\n<p>Note that this is an API call direct to AWS and not a SECCL.</p>\n<p><a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html\">https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html</a></p>\n<h3 id=\"request-parameters\">Request Parameters</h3>\n<ul>\n<li><p><strong>Content-Type</strong> (text): Specifies the media type of the resource being uploaded.</p>\n</li>\n<li><p><strong>bucket</strong> (text): The name of the storage bucket where the file will be uploaded.</p>\n</li>\n<li><p><strong>X-Amz-Algorithm</strong> (text): The algorithm used for signing the request.</p>\n</li>\n<li><p><strong>X-Amz-Credential</strong> (text): The credentials used for authentication.</p>\n</li>\n<li><p><strong>X-Amz-Date</strong> (text): The date and time when the request was made.</p>\n</li>\n<li><p><strong>X-Amz-Security-Token</strong> (text): A token used for temporary security credentials.</p>\n</li>\n<li><p><strong>key</strong> (text): The key under which the file will be stored in the bucket.</p>\n</li>\n<li><p><strong>Policy</strong> (text): The policy that defines the conditions for the upload.</p>\n</li>\n<li><p><strong>X-Amz-Signature</strong> (text): The signature that validates the request.</p>\n</li>\n<li><p><strong>file</strong> (file): The actual file to be uploaded.</p>\n</li>\n</ul>\n<h3 id=\"expected-outcome\">Expected Outcome</h3>\n<p>Upon successful execution of the request, the server will respond with a status code of <strong>204 No Content</strong>, indicating that the file was uploaded successfully without returning any additional content.</p>\n","urlObject":{"protocol":"https","path":[""],"host":["{{environment}}-manual-transfers-in-file-store-temporary","s3","eu-west-1","amazonaws","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c653db8c-b27b-4aa2-b28f-544dd9281ddf"},{"name":"Create manual transfer in (with file upload)","id":"937d219f-19ae-44fb-8c63-28ff4bc4f489","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{apiTestFirm}}\",\n    \"accountId\": \"{{pensionAccountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{apiTestFirm}}\",\n            \"transactionType\": \"Product Transfer\", \n            \"transactionSubType\": \"Cash\",    \n            \"movementType\": \"In\",    \n            \"accountId\": \"{{pensionAccountId}}\",\n            \"previousProvider\": \"{{masterPartyIdScanned}}\",  \n            \"uploadedFileDetailsId\": \"{{fileUploadId}}\",\n            \"previousProviderRef\": \"Testing Manual Transfer In Scanned Signature\",\n            \"transferAccountAddress\": {\n                \"flatNumber\": \"FIRST FLOOR FLAT\",\n                \"buildingNumber\": \"69\",\n                \"address1\": \"CORONATION ROAD\",\n                \"address2\": \"BRISTOL\",\n                \"country\": \"GB\",\n                \"postCode\": \"BS3 1AT\"\n            },\n            \"isPensionTransfer\": false\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<h2 id=\"portfolio-transaction-group-api\">Portfolio Transaction Group API</h2>\n<p>This endpoint allows users to create a new portfolio transaction group (in this example a manual product transfer in) by submitting transaction details associated with a specific firm and account.</p>\n<h3 id=\"http-method\">HTTP Method</h3>\n<p><code>POST</code></p>\n<h3 id=\"endpoint\">Endpoint</h3>\n<p><code>{{apiRoute}}/portfoliotransactiongroup</code></p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body must be in JSON format and include the following parameters:</p>\n<ul>\n<li><p><strong>firmId</strong> (string): The identifier for the firm associated with the transaction.</p>\n</li>\n<li><p><strong>accountId</strong> (string): The identifier for the account related to the transaction.</p>\n</li>\n<li><p><strong>transactions</strong> (array): An array of transaction objects, each containing:</p>\n<ul>\n<li><p><strong>firmId</strong> (string): The identifier for the firm related to the transaction.</p>\n</li>\n<li><p><strong>transactionType</strong> (string): The type of transaction (e.g., \"Product Transfer\").</p>\n</li>\n<li><p><strong>transactionSubType</strong> (string): The subtype of the transaction (e.g., \"Cash\").</p>\n</li>\n<li><p><strong>movementType</strong> (string): Indicates the direction of the transaction (e.g., \"In\").</p>\n</li>\n<li><p><strong>accountId</strong> (string): The identifier for the account involved in the transaction.</p>\n</li>\n<li><p><strong>previousProvider</strong> (string): The identifier for the previous provider. - the masterparty.</p>\n</li>\n<li><p><strong>uploadedFileDetailsId</strong> (string): The identifier for the uploaded file details. This is only required by manual transfers with an electronic / scanned supporting document needed</p>\n</li>\n<li><p><strong>previousProviderRef</strong> (string): A reference for the previous provider.</p>\n</li>\n<li><p><strong>transferAccountAddress</strong> (object): An object containing the address details for the transfer account:</p>\n<ul>\n<li><p><strong>flatNumber</strong> (string): The flat number of the address.</p>\n</li>\n<li><p><strong>buildingNumber</strong> (string): The building number of the address.</p>\n</li>\n<li><p><strong>address1</strong> (string): The first line of the address.</p>\n</li>\n<li><p><strong>address2</strong> (string): The second line of the address.</p>\n</li>\n<li><p><strong>country</strong> (string): The country code (e.g., \"GB\").</p>\n</li>\n<li><p><strong>postCode</strong> (string): The postal code.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>isPensionTransfer</strong> (boolean): Indicates whether the transaction is a pension transfer.</p>\n</li>\n</ul>\n</li>\n</ul>\n<h3 id=\"expected-response\">Expected Response</h3>\n<p>The API will return a JSON response including the transaction group ID.</p>\n<p>This will initiate the malware scanning of the associated file upload. If the file is found to be malware free, it will be available for download.</p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"937d219f-19ae-44fb-8c63-28ff4bc4f489"},{"name":"Download File (get download url)","id":"7891adaa-ad37-4ad8-a75a-abe04553a10e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/filestore/manualtransferin/{{firmId}}/{{fileUploadId}}","description":"<h3 id=\"api-endpoint-manual-transfer-in\">API Endpoint: Manual Transfer In</h3>\n<p>This endpoint allows the downloading of a file associated with a manual transfer (in).</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>{{apiRoute}}/filestore/manualtransferin/{{firmId}}/{{fileUploadId}}</code></p>\n</li>\n</ul>\n<h4 id=\"path-parameters\">Path Parameters</h4>\n<ul>\n<li><p><code>firmId</code> (string): The unique identifier for the firm requesting the manual file transfer.</p>\n</li>\n<li><p><code>fileUploadId</code> (string): The unique identifier for the file being uploaded.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>The response will return a secure download URL, valid for 1 minute, to download the file.</p>\n","urlObject":{"path":["filestore","manualtransferin","{{firmId}}","{{fileUploadId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7891adaa-ad37-4ad8-a75a-abe04553a10e"},{"name":"APPENDIX  Re-upload File (get upload url)","id":"2d2335a3-0abd-425d-99b2-dc69595c3a43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{fileUploadId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/filestore/manualtransferin/refresh","description":"<h2 id=\"refresh-manual-transfer-in\">Refresh Manual Transfer In</h2>\n<p>This endpoint is used to generate a new secure upload URL for an exist file upload resource.</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>{{apiRoute}}/filestore/manualtransferin/refresh</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 parameters:</p>\n<ul>\n<li><p><strong>firmId</strong> (string): The unique identifier for the firm associated with the file upload.</p>\n</li>\n<li><p><strong>id</strong> (string): The unique identifier for the file upload that needs to be refreshed.</p>\n</li>\n</ul>\n<p>Example request body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"firmId\": \"{{firmId}}\",\n  \"id\": \"{{fileUploadId}}\"\n}\n\n</code></pre>\n<h3 id=\"response\">Response</h3>\n<p>The response body will contain a <code>data</code> object with the following fields:</p>\n<ul>\n<li><p><strong>id</strong> (string): The identifier for the refreshed file upload.</p>\n</li>\n<li><p><strong>url</strong> (string): The URL where the file can be accessed.</p>\n</li>\n<li><p><strong>fields</strong> (object): Contains additional fields related to the file upload, including:</p>\n<ul>\n<li><p><strong>Content-Type</strong> (string): The MIME type of the file.</p>\n</li>\n<li><p><strong>bucket</strong> (string): The storage bucket where the file is located.</p>\n</li>\n<li><p><strong>X-Amz-Algorithm</strong> (string): The algorithm used for the request.</p>\n</li>\n<li><p><strong>X-Amz-Credential</strong> (string): The credentials for the request.</p>\n</li>\n<li><p><strong>X-Amz-Date</strong> (string): The date of the request.</p>\n</li>\n<li><p><strong>X-Amz-Security-Token</strong> (string): The security token for the request.</p>\n</li>\n<li><p><strong>key</strong> (string): The key for accessing the file.</p>\n</li>\n<li><p><strong>Policy</strong> (string): The policy associated with the file upload.</p>\n</li>\n<li><p><strong>X-Amz-Signature</strong> (string): The signature for the request.</p>\n</li>\n</ul>\n</li>\n</ul>\n<p>These properties should be used to securely upload the file to AWS, as demonstrated in <strong>2.a Create File upload (upload file).</strong></p>\n<p><a href=\"https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html\">https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-UsingHTTPPOST.html</a></p>\n<p>Example response body:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"data\": {\n    \"id\": \"\",\n    \"url\": \"\",\n    \"fields\": {\n      \"Content-Type\": \"\",\n      \"bucket\": \"\",\n      \"X-Amz-Algorithm\": \"\",\n      \"X-Amz-Credential\": \"\",\n      \"X-Amz-Date\": \"\",\n      \"X-Amz-Security-Token\": \"\",\n      \"key\": \"\",\n      \"Policy\": \"\",\n      \"X-Amz-Signature\": \"\"\n    }\n  }\n}\n\n</code></pre>\n","urlObject":{"path":["filestore","manualtransferin","refresh"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2d2335a3-0abd-425d-99b2-dc69595c3a43"}],"id":"71205a32-4249-490e-bca6-ec98045f0db7","description":"<h2 id=\"manual-transfer-in-file-upload-process\">Manual Transfer In: File Upload Process</h2>\n<p>This section explains how to use our file upload functionality—direct to S3 with integrated malware scanning—to support the creation of a <strong>manual transfer-in request</strong>.</p>\n<h3 id=\"what-is-a-manual-transfer\">What is a Manual Transfer?</h3>\n<p>A <em>manual transfer</em> occurs when the ceding scheme requires supporting documentation (e.g., signed discharge forms) to accompany the transfer request. Whether a transfer is considered manual, and what signature requirements are accepted, is determined by the <strong>masterparty</strong>—Seccl’s concept of a ceding scheme.</p>\n<p>Seccl maintains a “Golden List” of manual ceding schemes, categorized by their accepted <strong>signature type</strong>:</p>\n<hr />\n<h3 id=\"signature-types\">Signature Types</h3>\n<h4 id=\"1-electronic-signature\">1. <strong>Electronic Signature</strong></h4>\n<ul>\n<li><p>These ceding schemes accept digitally signed documents (e.g., via DocuSign).</p>\n</li>\n<li><p>The signature must include metadata such as the signatory’s email, IP address, and timestamp.</p>\n</li>\n<li><p>Once completed, the signed document is distributed as a read-only PDF and provided alongside the transfer in request.</p>\n</li>\n<li><p><strong>Important:</strong> Only one PDF document per transfer-in instruction is currently accepted.</p>\n</li>\n</ul>\n<h4 id=\"2-scanned-signature\">2. <strong>Scanned Signature</strong></h4>\n<ul>\n<li><p>These schemes accept a <strong>physical signature</strong> that is <strong>scanned and submitted electronically</strong>.</p>\n</li>\n<li><p><strong>Important:</strong> Only one PDF document per transfer-in instruction is currently accepted.</p>\n</li>\n</ul>\n<h4 id=\"3-wet-signature\">3. <strong>Wet Signature</strong></h4>\n<ul>\n<li><p>These schemes only accept <strong>original physical documents with a hand-written signature</strong>.</p>\n</li>\n<li><p>Documents must be sent <strong>by post</strong> to Seccl’s Bath office.</p>\n</li>\n<li><p><strong>Note:</strong> No file upload is required for wet-signature transfers.</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"api-workflow-manual-transfer-in---high-level\">API Workflow: Manual Transfer In - high level</h2>\n<p>To initiate a manual transfer via API, follow these steps (examples of each call are shown subsequently):</p>\n<h3 id=\"1-get-available-ceding-providers\">1. <code>GET</code> Available Ceding Providers</h3>\n<ul>\n<li><p>Check the signature type for each ceding provider.</p>\n</li>\n<li><p>If the signature type is <strong>wet</strong>, no file upload is required.</p>\n</li>\n<li><p>If the type is <strong>scanned</strong> or <strong>electronic</strong>, you will need to upload a document (see steps 2–4).</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"2-post-to-get-file-upload-url\">2. <code>POST</code> to Get File Upload URL</h3>\n<ul>\n<li><p>This request creates a file record in our system and returns:</p>\n<ul>\n<li><p>A <strong>pre-signed S3 URL</strong> (valid for 5 minutes)</p>\n</li>\n<li><p>Required form-data fields for the upload (<code>uploadFields</code>)</p>\n</li>\n</ul>\n</li>\n<li><p>Note: The URL allows uploads only via the <code>POST</code> method.</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"3-post-to-upload-the-file\">3. <code>POST</code> to Upload the File</h3>\n<ul>\n<li><p>Use the pre-signed S3 URL and form-data fields to upload the document directly to AWS S3.</p>\n</li>\n<li><p><strong>Important:</strong> This is a direct AWS API call—not a Seccl endpoint.</p>\n</li>\n<li><p>On success, you will receive an on success, you will receive a 204 response code.</p>\n</li>\n</ul>\n<hr />\n<h3 id=\"4-post-to-portfoliotransactiongroup-to-create-transfer\">4. <code>POST</code> to <code>portfoliotransactiongroup</code> to Create Transfer</h3>\n<ul>\n<li>Submit the transfer-in request, including the <code>uploadedFileDetailsId</code>.</li>\n</ul>\n<hr />\n<h2 id=\"appendix\">Appendix</h2>\n<p>You may <strong>re-upload a file</strong> (before submitting the transfer) by calling:</p>\n<p><code>{{apiRoute}}/filestore/manualtransferin/refresh</code></p>\n<p>This allows you to replace a previously uploaded file if needed, as long as the portfolio transaction group has not yet been created.</p>\n","_postman_id":"71205a32-4249-490e-bca6-ec98045f0db7"},{"name":"Adviser fee on transfer in","item":[{"name":"Create transfer in request with adviser fee","event":[{"listen":"test","script":{"id":"4bf9b5c2-aa15-4c5a-814f-2c17f8fe725b","exec":["var data = pm.response.json()","console.log(data)"],"type":"text/javascript","packages":{}}}],"id":"87896a38-68c7-467c-918f-80774237030a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"accountId\": \"0352GDJ\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{pfolioUserFirmId}}\",\n            \"accountId\": \"0352GDJ\",\n            \"transactionType\": \"Product Transfer\",\n            \"transactionSubType\": \"Cash\",\n            \"movementType\": \"In\",\n            \"previousProvider\": \"021FC19\",\n            \"previousProviderRef\": \"ABC324234234\",\n            \"transferAccountAddress\": {\n                \"buildingNumber\": \"22\",\n                \"address1\": \"Rocky Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"BD7 O77\"\n            },\n            \"transferValue\": 1231231,\n            \"transferFee\": {\n                \"feeType\": \"Adviser Initial Fee\",\n                \"ratePercentage\": 0.0456\n            }\n        }\n    ]\n}"},"url":"{{pfolioApiRoute}}/portfoliotransactiongroup/","description":"<p>This only concerns the additional <code>transferFee</code> object which can optionally be added to a transaction in a transaction group.</p>\n<p>If not specified, no fee shall be taken.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>transferFee.feeType</code> enum value <strong>Required</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Adviser Adhoc Fee</code></td>\n</tr>\n<tr>\n<td><code>Adviser Initial Fee</code></td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>ratePercentage</code> number <strong>Required</strong></p>\n<p>The percentage of the completed transfer value to be taken as a fee up to 5%, rounded down to the nearest pence.</p>\n<p>Value up to 4 decimal places representing a percentage between 0 and 1, i.e. 4.56% would be <code>\"ratePercentage\": 0.0456</code></p>\n","urlObject":{"path":["portfoliotransactiongroup",""],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87896a38-68c7-467c-918f-80774237030a"}],"id":"c17d41c1-10d3-458e-b355-47fc0c49939d","description":"<p>This is an extension to creating cash transfers via the <code>/portfoliotransactiongroup</code> API which allows you to specify a percentage fee to be charged on the value of the completed transfer.</p>\n<p>Pre-requisites:</p>\n<ul>\n<li><p>The <code>transactionSubType</code> must be <code>Cash</code></p>\n</li>\n<li><p>The account referenced by the <code>accountId</code> must be advised</p>\n</li>\n<li><p>The account referenced by the <code>accountId</code> cannot be of <code>wrapperType</code> <code>TPOFFBOND</code></p>\n</li>\n<li><p>If instructing a pension transfer, the <code>productDrawdownStatus</code> cannot be of value <code>Partial Drawdown</code></p>\n</li>\n</ul>\n","_postman_id":"c17d41c1-10d3-458e-b355-47fc0c49939d"},{"name":"Cancel a transfer in","item":[{"name":"Request cancellation of a transfer in","id":"729a5eb7-2f16-4fcd-bf38-97ae46a3381b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"00008F19P\",\n    \"firmId\": \"{{apiTestFirm}}\"\n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/requestCancellation/{{apiTestFirm}}/00008F19P","description":"<h2 id=\"request-cancellation-endpoint\">Request Cancellation Endpoint</h2>\n<p>This endpoint allows users to request the cancellation of a specific portfolio transaction (transfer in) identified by its unique ID. The request is sent via an HTTP PUT method to the specified URL.</p>\n<h3 id=\"request-url\">Request URL</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PUT {{apiRoute}}/portfoliotransaction/action/requestCancellation/{{apiTestFirm}}/{transactionId}\n\n</code></pre><ul>\n<li><p><code>{{apiRoute}}</code>: Base URL for the API.</p>\n</li>\n<li><p><code>{{apiTestFirm}}</code>: Identifier for the firm associated with the transaction.</p>\n</li>\n<li><p><code>{transactionId}</code>: The unique ID of the portfolio transaction to be canceled (e.g., <code>00008F19P</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 includes the following parameters:</p>\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>id</td>\n<td>string</td>\n<td>The unique identifier of the portfolio transaction to be canceled.</td>\n</tr>\n<tr>\n<td>firmId</td>\n<td>string</td>\n<td>The identifier for the firm associated with the transaction.</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>Example Request Body:</strong></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"id\": \"00008F19P\",\n  \"firmId\": \"{{apiTestFirm}}\"\n}\n\n</code></pre>\n<h3 id=\"response-structure\">Response Structure</h3>\n<p>Upon successfully processing the request, the API will return a 200 response code if successful, and an error code (with details in the response body) if not.</p>\n<h3 id=\"transfer-status\">Transfer status</h3>\n<ul>\n<li><p>Upon success the transferStatus of the product transfer will move to <code>Pending cancellation</code></p>\n</li>\n<li><p>When the Seccl operations team have confirmed the transfer cancelation with the ceding scheme they will confirm the cancellation in the Seccl system and the transferStatus will move to <code>Cancelled</code></p>\n</li>\n</ul>\n","urlObject":{"path":["portfoliotransaction","action","requestCancellation","{{apiTestFirm}}","00008F19P"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"729a5eb7-2f16-4fcd-bf38-97ae46a3381b"}],"id":"88b94dc7-90c5-4d2e-a8b4-7f2b84948fcd","description":"<p>We support the cancelation of transfers in when they are at a certain transferStatus:</p>\n<ul>\n<li><p>With previous provider</p>\n</li>\n<li><p>Awaiting documentation</p>\n</li>\n<li><p>Reviewing documentation</p>\n</li>\n<li><p>Verifying documentation</p>\n</li>\n</ul>\n","_postman_id":"88b94dc7-90c5-4d2e-a8b4-7f2b84948fcd"},{"name":"Add a transfer update event","item":[{"name":"Add transfer update event","id":"f01bdd28-89f9-455f-885d-ef5a5ccb8e46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"00008BM7P\",\n    \"firmId\": \"{{apiTestFirm}}\",\n    \"createdByFirm\": \"{{apiTestFirm}}\",\n    \"updateNote\": \"My Update Note\",\n    \"effectiveFrom\": \"2025-01-01\" \n }","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/firmTransferHistoryUpdate/{{apiTestFirm}}/00008BM7P","description":"<h3 id=\"update-firm-transfer-history\">Update Firm Transfer History</h3>\n<p>This endpoint allows users to update the transfer history of a transaction (product transfer in). It is used to add a, \"code\" (<code>Client action complete</code>) and a \"note\" (free text field) to the transfer signalling that a client action has been completed - which is then used in our chasing strategy for the transfer.</p>\n<h4 id=\"request\">Request</h4>\n<ul>\n<li><p><strong>Method</strong>: PUT</p>\n</li>\n<li><p><strong>Endpoint</strong>: <code>{{apiRoute}}/portfoliotransaction/action/firmTransferHistoryUpdate/{{apiTestFirm}}/{id}</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><strong>id</strong> (string): The unique identifier for the transfer record that is being updated.</p>\n</li>\n<li><p><strong>firmId</strong> (string): The identifier for the firm associated with the transfer record.</p>\n</li>\n<li><p><strong>createdByFirm</strong> (string): The identifier for the firm that created the transfer record.</p>\n</li>\n<li><p><strong>updateNote</strong> (string): A note describing the update being made to the transfer record.</p>\n</li>\n<li><p><strong>effectiveFrom</strong> (string, date): The date from which the update will take effect, formatted as <code>YYYY-MM-DD</code>.</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  \"id\": \"00008BM7P\",\n  \"firmId\": \"{{apiTestFirm}}\",\n  \"createdByFirm\": \"{{apiTestFirm}}\",\n  \"updateNote\": \"My Update Note\",\n  \"effectiveFrom\": \"2025-01-01\"\n}\n\n</code></pre>\n<p>This endpoint will add a record to the <code>transferUpdateEvents</code> property on the transaction record, like this, please note at this stage the only valid updateCode is Client action complete:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"transferUpdateEvents\": [\n    {\n        \"createdByFirm\": \"TEST1\",\n        \"historyType\": \"INFO\",\n        \"updateCode\": \"Client action complete\",\n        \"updateNote\": \"My Update Note\",\n        \"createdAt\": \"2025-09-02T08:00:34.950Z\",\n        \"effectiveFrom\": \"2025-01-01T00:00:00.000Z\"\n    }\n]\n\n</code></pre>\n","urlObject":{"path":["portfoliotransaction","action","firmTransferHistoryUpdate","{{apiTestFirm}}","00008BM7P"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f01bdd28-89f9-455f-885d-ef5a5ccb8e46"}],"id":"1c37b262-8bba-4296-906c-7bf177e4065e","description":"<p>The transferUpdateEvents array on the the product transfer history object can have enties added to it by seccl operations, the seccl system, and end firm users.</p>\n<p>This section describes how an end firm user can add to it.</p>\n","_postman_id":"1c37b262-8bba-4296-906c-7bf177e4065e"}],"id":"f63bcda1-a1a6-47b2-a626-7f0ec8ef4243","description":"<p>Transfers describe the process of moving the cash and stock of a client from one platform (or <a href=\"https://www.investopedia.com/terms/c/ceding-company.asp#:~:text=A%20ceding%20company%20is%20an,against%20undesired%20exposure%20to%20losses.\">ceding provider</a>) to another platform. Assets can be transferred <a href=\"https://www.investopedia.com/terms/i/in_specie.asp\">in-specie</a>, or as cash.</p>\n<p>Currently, the below set of endpoints only allow self serve of</p>\n<ol>\n<li><p>cash transfers in</p>\n</li>\n<li><p>in-specie transfers in</p>\n</li>\n<li><p>cash transfers out</p>\n</li>\n</ol>\n<p>If your client wants to do in-specie transfers out, Seccl will likely have been contacted by the other provider, and will contact your firm with the request.</p>\n<p>In this section, we will cover:</p>\n<ul>\n<li><p>The product transfer in object</p>\n</li>\n<li><p>The product transfer out object</p>\n</li>\n<li><p>Creating a transfer in request</p>\n</li>\n<li><p>Creating a transfer out request</p>\n</li>\n<li><p>Updating book costs of assets for an in-specie transfer</p>\n</li>\n<li><p>Creating a manual cash transfer expectation</p>\n</li>\n<li><p>Monitoring in-flight transfers using the transfers workbench</p>\n</li>\n</ul>\n<p>Seccl has a direct integration with two external systems for transfers in:</p>\n<ul>\n<li><p><strong>Altus Transfers Gateway (ATG):</strong> This facilitates the transfer of GIA, ISA, JISA, SIPP/pension assets as in-specie or cash</p>\n</li>\n<li><p><strong>Origo Transfers System (Origo):</strong> This facilitates the transfer of pension assets as cash only</p>\n</li>\n</ul>\n<p>Where a ceding provider isn't set up on ATG or Origo, the transfer can be facilitated manually.</p>\n<p>Transfers out are currently facilitated manually as well.</p>\n<h4 id=\"pre-requisites\"><strong>Pre-requisites</strong></h4>\n<p>Before submitting a transfer instruction, the client must have viewed and accepted the platform terms, and the product terms and declarations of the relevant wrapper. The investment account must also be at <code>Active</code> status.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/ portfoliotransactiongroup\n/ portfoliotransaction\n/ masterparty/platform\n/ masterparty/transferoutprovider\n/ portfoliotransaction/producttransfer\n\n</code></pre>\n","_postman_id":"f63bcda1-a1a6-47b2-a626-7f0ec8ef4243"},{"name":"Withdrawals","item":[{"name":"The withdrawal object","item":[],"id":"324c0c18-99ac-46f5-ae91-f494c766dea3","description":"<p>The withdrawals <code>portfoliotransaction</code> object is used to instruct and retrieve withdrawal transactions</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactionType</code> enum value<br />The type of transaction taking place – this will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactionSubType</code> enum value<br />The action to be performed on the account – this will be set to <code>Withdrawal</code></p>\n<hr />\n<p><code>movementType</code> string<br />Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>currency</code> string<br />Three-letter ISO code for the currency paid in or out of the account. This should be set to <code>GBP</code></p>\n<hr />\n<p><code>amount</code> float<br />The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>method</code> string<br />The payment method facilitating the withdrawal – this will be set to <code>BACS Credit</code></p>\n<hr />\n<p><code>transactionDate</code> string</p>\n<p>The date the payment transaction was instructed</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>Withdrawal complete – money available in client's bank account</td>\n</tr>\n<tr>\n<td><code>Pending</code></td>\n<td>Withdrawal being processed via BACS</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Expectation deleted</td>\n</tr>\n<tr>\n<td><code>Waiting</code></td>\n<td>Withdrawal is waiting on a linked transaction to complete</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>accountName</code> string</p>\n<p>The name of the investment account</p>\n<hr />\n<p><code>accountType</code></p>\n<p>The type of account</p>\n<hr />\n<p><code>statusChange</code> array</p>\n<p>Contains an object to detail the change in statuses of the transaction</p>\n<hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier that is contained in all the transactions within that portfolio transaction group</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client account</p>\n<hr />\n<p><code>createdDate</code> string</p>\n<p>The date the transaction was created</p>\n<hr />\n<p><code>completedDate</code> string</p>\n<p>The date the transaction switched to <code>Completed</code></p>\n<hr />\n","_postman_id":"324c0c18-99ac-46f5-ae91-f494c766dea3"},{"name":"Single withdrawal","item":[{"name":"Check the cash position on the account","id":"ff54d12d-3115-49ae-8b80-9ab18580b714","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/account/summary/{{firmId}}/{{accountId}}","description":"<p>This command returns the account summary of the investment account. You can use this request to confirm the available cash amount.</p>\n","urlObject":{"path":["account","summary","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ff54d12d-3115-49ae-8b80-9ab18580b714"},{"name":"Create a withdrawal from uninvested cash","id":"679fa2a1-dcc2-4635-aa50-816a80d8519f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"currency\": \"GBP\",\n            \"amount\": 1000,\n            \"method\": \"BACS Credit\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates a single withdrawal from available uninvested cash, and returns a <code>linkId.</code></p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client's investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction taking place – this will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The action to be performed on the account – this will be set to <code>Withdrawal</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Three-letter ISO code for the currency paid in or out of the account – this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>The payment method facilitating the withdrawal – this will be set to <code>BACS Credit</code></p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"679fa2a1-dcc2-4635-aa50-816a80d8519f"},{"name":"Create a withdrawal with auto-disinvest","id":"64556bb6-bc86-4c09-b99c-fefb610b739d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"autoDisinvest\": \"Proportional\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 400\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates a single withdrawal from with auto-disinvest, and returns a <code>linkId.</code></p>\n<p>Auto-disinvestment can be instructed either proportionally across the assets in the investment account, or from the largest holding in the investment account. All sell-downs include a 10% cash buffer to count for market movements.</p>\n<p>Withdrawals instructed with auto-disinvest take five working days from instruction to land in the client's bank account</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client's investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction taking place – this will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The action to be performed on the account – this will be set to <code>Withdrawal</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Three-letter ISO code for the currency paid in or out of the account – this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>The payment method facilitating the withdrawal – this will be set to <code>BACS Credit</code></p>\n<hr />\n<p><code>transactions.autoDisinvest</code> string <strong>Required</strong></p>\n<p>The type of auto-disinvestment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Proportional</code></td>\n<td>Instructs a sell-down proportionally across the investment account</td>\n</tr>\n<tr>\n<td><code>Largest</code></td>\n<td>Instructs a sell-down from the largest holding in the investment account</td>\n</tr>\n<tr>\n<td><code>Full</code></td>\n<td>Instructs a full sell-down with all the available stock in the investment account, and withdrawal the proceeds</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"64556bb6-bc86-4c09-b99c-fefb610b739d"},{"name":"Create a sell and withdraw","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"transactionGroupId\", data.data.id)"],"type":"text/javascript","id":"c3761f2a-fdc8-4706-90cf-47e6dd58ce05"}}],"id":"840ee4cb-2fc3-4ba8-be32-922d2c0b5046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Sell\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"26NHB\",\n            \"quantity\": 500.348\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Payment\",\n            \"transactionSubType\": \"Withdrawal\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"currency\": \"GBP\",\n            \"method\": \"BACS Credit\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates a sell and withdrawal, and returns a <code>linkId.</code></p>\n<p>You can instruct multiple sells linked to a withdrawal transaction. The withdrawal will automatically pay out the total cash raised from the sells once they complete.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactions</code> object <strong>Required</strong></p>\n<p>Contains details of transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client’s investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Order</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>At Best</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Sell</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three letter ISO currency code</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset to be sold down</p>\n<hr />\n<p><code>transactions.quantity</code> float <strong>Required</strong></p>\n<p>The number of units to be sold</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the client's investment account</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>The type of transaction taking place – this will be set to <code>Payment</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>The action to be performed on the account – this will be set to <code>Withdrawal</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>Three-letter ISO code for the currency paid in or out of the account – this should be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>The payment method facilitating the withdrawal – this will be set to <code>BACS Credit</code></p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"840ee4cb-2fc3-4ba8-be32-922d2c0b5046"}],"id":"dda0ea66-2b01-4567-876c-709b159d0601","description":"<p>This section shows you how to:</p>\n<ul>\n<li>Check the cash position of an investment account</li>\n<li>Instruct a single withdrawal from uninvested cash</li>\n<li>Instruct a single withdrawal with auto-disinvest</li>\n<li>Instruct a sell and withdraw transaction group</li>\n</ul>\n<h3 id=\"validation\">Validation</h3>\n<p>When using the <code>/portfoliotransactiongroup</code> endpoint to submit transaction groups, there are two types of validation error responses you can expect to observe, these are split between:</p>\n<ol>\n<li>API response errors<ol>\n<li>These are responses directly from the API after you send a request</li>\n</ol>\n</li>\n<li>Exception notifications<ol>\n<li>Asynchronous handling of errors that cannot be handled by the API response</li>\n</ol>\n</li>\n</ol>\n<h4 id=\"api-response-errors\">API response errors</h4>\n<p>These occur when the API can immediately validate the request. You can expect to find errors related to:</p>\n<ul>\n<li>The request format is not valid</li>\n<li>Cannot find the given accountId</li>\n<li>There is insufficient cash for the single withdrawal and no disinvestment has been instructed</li>\n</ul>\n<h4 id=\"exception-notifications\">Exception notifications</h4>\n<p>These occur when the system needs to validate the transactions asynchronously, such as when submitting a group of transactions. This applies whether submitting one or many transactions in a group - the validation of each transaction is processed asynchronously.</p>\n<p>You can find further information on viewing and managing exceptions in the <strong>Platform Management / Notifications</strong> section.</p>\n<p>You can expect to find exceptions related to:</p>\n<ul>\n<li>Transaction types not recognised</li>\n<li>There is insufficient cash when the withdrawal is triggered after some other transactions completing (e.g. linked sell orders)</li>\n</ul>\n","_postman_id":"dda0ea66-2b01-4567-876c-709b159d0601"},{"name":"Recurring withdrawal","item":[{"name":"Create account with a recurring withdrawal","id":"514291c3-71e9-430e-83a0-9d312ea248fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"1\",\n    \"name\": \"Future savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 28,\n            \"amount\": 150,\n            \"movementType\": \"Out\",\n            \"method\": \"BACS Credit\"\n        }\n    ],\n    \"autoDisinvest\": \"Largest\"\n}"},"url":"{{apiRoute}}/account","description":"<p>This command creates an investment account with a recurring withdrawal, and returns the unique identifier for the new investment account.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for your firm</p>\n<hr />\n<p><code>nodeId</code> string <strong>Required</strong></p>\n<p>The node identifier that the client is attached</p>\n<hr />\n<p><code>accountType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Wrapper</code></p>\n<hr />\n<p><code>name</code> string <strong>Required</strong></p>\n<p>The name of the account. This is an editable free text field</p>\n<hr />\n<p><code>status</code> enum value <strong>Required</strong></p>\n<p>The status of the account – this should be set as <code>Active</code>. It indicates that the investor has viewed and accepted the product terms and declaration</p>\n<hr />\n<p><code>adviserCharge</code> float</p>\n<p>The ongoing adviser charge taken against the account as a percentage</p>\n<hr />\n<p><code>discretionaryManagementCharge</code> float</p>\n<p>The ongoing discretionary management charge taken against the account as a percentage</p>\n<hr />\n<p><code>currency</code> enum value <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique client identifier</p>\n<hr />\n<p><code>wrapperDetail</code> array <strong>Required</strong></p>\n<hr />\n<p><code>wrapperDetail.wrapperType</code> enum value <strong>Required</strong></p>\n<p>The type of wrapper of the investment account</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>GIA</code></td>\n<td>General Investment Account</td>\n</tr>\n<tr>\n<td><code>ISA</code></td>\n<td>Individual Savings Account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>wrapperDetail.discretionary</code> boolean</p>\n<p>This indicates that the investment strategy is managed on a discretionary basis</p>\n<hr />\n<p><code>wrapperDetail.advised</code> boolean</p>\n<p>This indicates that the investment account is managed on an advised basis</p>\n<hr />\n<p><code>wrapperDetail.assetAllocationId</code> string</p>\n<p>This is the model identifier that is attached to the account</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be withdrawn on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the withdrawal is expected to land in the client's bank account – this can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to contribute. This should be set as <code>BACS Credit</code></p>\n<hr />\n<p><code>autoDisinvest</code> string</p>\n<p>This indicates whether an auto-disinvest should be instructed to raise the cash for the withdrawal</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Proportional</code></td>\n<td>Instructs a sell-down proportionally across the investment account</td>\n</tr>\n<tr>\n<td><code>Largest</code></td>\n<td>Instructs a sell-down from the largest holding in the investment account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>autoDisinvestSellType</code> string</p>\n<p>This indicates what method should be used when using the autoDisinvest feature on recurring withdrawals. This *cannot* be set unless <code>autoDisinvest</code>is also set</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Quantity</code></td>\n<td>(Default) Creates a sell trades based on a quantity value calculated to equate to approximately the desired withdrawal</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Creates a raise trades based on the monetary value required</td>\n</tr>\n<tr>\n<td><code>AmountFirst</code></td>\n<td>Will attempt to do Raise trades first, if these fail, it will fall back to quantity. (These can fail due to asset types not being able to be raise traded)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"5c4e819d-f88a-4d99-85b0-e7daa29c9846","name":"Recurring payment with auto-disinvest largest","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"1\",\n    \"name\": \"Future savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 28,\n            \"amount\": 150,\n            \"movementType\": \"Out\",\n            \"method\": \"BACS Credit\"\n        }\n    ],\n    \"autoDisinvest\": \"Largest\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null},{"id":"7f03831b-4fa1-4222-851f-73dc69dca7c1","name":"Recurring payment with auto-disinvest Proportional","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"nodeId\": \"1\",\n    \"name\": \"Future savings\",\n    \"currency\": \"GBP\",\n    \"accountType\": \"Wrapper\",\n    \"clientId\": \"{{clientId}}\",\n    \"status\": \"Active\",\n    \"wrapperDetail\": {\n        \"wrapperType\": \"GIA\"\n    },\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 28,\n            \"amount\": 150,\n            \"movementType\": \"Out\",\n            \"method\": \"BACS Credit\"\n        }\n    ],\n    \"autoDisinvest\": \"Proportional\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account"},"_postman_previewlanguage":"Text","header":null,"cookie":[],"responseTime":null,"body":null}],"_postman_id":"514291c3-71e9-430e-83a0-9d312ea248fb"},{"name":"Get account","event":[{"listen":"test","script":{"id":"b53ec0d2-ef4c-4617-a2c3-48cdc79db49e","exec":["pm.environment.set('updateId', pm.response.json().data.updateId)"],"type":"text/javascript","packages":{}}}],"id":"b981aa26-f27c-4808-800d-453b8fb30657","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{pfolioFirmId}}/{{accountId}}","urlObject":{"path":["account","{{pfolioFirmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"fc7103c3-007c-4539-aa47-ef8698339638","name":"Get account with recurring withdrawal GIA auto-disinvest largest","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{pfolioFirmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1130"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 05 Sep 2024 14:05:04 GMT"},{"key":"x-amzn-RequestId","value":"3fb983d6-af4b-4912-92be-6e4fd34b9cd9"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1130"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"dooWmFmkDoEETOA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"46a-8ktK+UrJCnMeKSkVK8zMulAcv0E\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66d9ba90-2940b8be5dcd784d6085c63e"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 14d757a67b913f1bc93427e69819362c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C1"},{"key":"X-Amz-Cf-Id","value":"4X9Dv9lH-o_2d3M9V5FIwcOPZK19bGIOvUoFhYsqndaKOFc6wq_TdA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00006GG\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"status\": \"Active\",\n        \"name\": \"Withdrawal account\",\n        \"nodeId\": \"1\",\n        \"clientId\": \"02F46F3\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"discretionary\": false,\n            \"advised\": true,\n            \"trust\": false,\n            \"assetAllocationId\": \"251GF\",\n            \"clientProductId\": \"65b7d524ffbd1849f9055bfc\",\n            \"assetAllocationName\": \"High-growth model \"\n        },\n        \"adviserCharge\": 0.01,\n        \"firmId\": \"SECCI\",\n        \"clientName\": \"Rachel Green\",\n        \"updateId\": \"66d9ba3725aaf6905c1f5543\",\n        \"recurringPayments\": [\n            {\n                \"paymentDay\": 7,\n                \"amount\": 10,\n                \"movementType\": \"Out\",\n                \"method\": \"BACS Credit\"\n            }\n        ],\n        \"autoDisinvest\": \"Largest\",\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateDate\": \"2024-09-05T14:03:35.889Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"recurringPayments\": [\n                            {\n                                \"paymentDay\": 7,\n                                \"amount\": 10,\n                                \"movementType\": \"Out\",\n                                \"method\": \"BACS Credit\"\n                            }\n                        ]\n                    }\n                },\n                \"updatedFields\": [\n                    \"recurringPayments[0]\"\n                ]\n            },\n            {\n                \"updateId\": 2,\n                \"updateDate\": \"2024-09-05T14:03:35.890Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"autoDisinvest\": \"Largest\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"autoDisinvest\"\n                ]\n            }\n        ],\n        \"_name\": \"WITHDRAWAL ACCOUNT\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-09-05T14:03:35.947Z\",\n            \"userFirmId\": \"SECCL\",\n            \"userId\": \"00031L\",\n            \"version\": 2,\n            \"application\": \"PfolioEventAPI\"\n        }\n    }\n}"},{"id":"f49204f3-47c9-44e7-a0e8-05e7016c9afa","name":"Get account with recurring withdrawal GIA auto-disinvest proportional","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/account/{{pfolioFirmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"1144"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 05 Sep 2024 14:37:12 GMT"},{"key":"x-amzn-RequestId","value":"35c6d1ce-be81-4c59-894d-f739cd380857"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"1144"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"dotD2GvXDoEEpwQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"478-x/n3QrWIDTEbiQFX7hz4T+F0AtY\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66d9c218-35b375e4548654011533edf6"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2e50d9b1ee017f302768660f02b7418e.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C1"},{"key":"X-Amz-Cf-Id","value":"oQgPUoIu7OtsP4Blrk8jji8dIm_5JmzO5lldedFDMpMz_q3-PxSyZA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00006GH\",\n        \"currency\": \"GBP\",\n        \"accountType\": \"Wrapper\",\n        \"status\": \"Active\",\n        \"name\": \"Withdrawal Type Account\",\n        \"nodeId\": \"1\",\n        \"clientId\": \"02F46F3\",\n        \"wrapperDetail\": {\n            \"wrapperType\": \"GIA\",\n            \"discretionary\": true,\n            \"advised\": true,\n            \"trust\": false,\n            \"assetAllocationId\": \"264GJ\",\n            \"clientProductId\": \"65b7d524ffbd1849f9055bfc\",\n            \"assetAllocationName\": \"High-growth model \"\n        },\n        \"adviserCharge\": 0.01,\n        \"firmId\": \"SECCI\",\n        \"clientName\": \"Rachel Green\",\n        \"updateId\": \"66d9c20e25aaf6905c1f5547\",\n        \"recurringPayments\": [\n            {\n                \"paymentDay\": 14,\n                \"amount\": 100,\n                \"movementType\": \"Out\",\n                \"method\": \"BACS Credit\"\n            }\n        ],\n        \"autoDisinvest\": \"Proportional\",\n        \"updateHistory\": [\n            {\n                \"updateId\": 1,\n                \"updateDate\": \"2024-09-05T14:37:02.800Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"recurringPayments\": [\n                            {\n                                \"paymentDay\": 14,\n                                \"amount\": 100,\n                                \"movementType\": \"Out\",\n                                \"method\": \"BACS Credit\"\n                            }\n                        ]\n                    }\n                },\n                \"updatedFields\": [\n                    \"recurringPayments[0]\"\n                ]\n            },\n            {\n                \"updateId\": 2,\n                \"updateDate\": \"2024-09-05T14:37:02.801Z\",\n                \"updateData\": {\n                    \"toData\": {\n                        \"autoDisinvest\": \"Proportional\"\n                    }\n                },\n                \"updatedFields\": [\n                    \"autoDisinvest\"\n                ]\n            }\n        ],\n        \"_name\": \"WITHDRAWAL TYPE ACCOUNT\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-09-05T14:37:02.913Z\",\n            \"userFirmId\": \"SECCL\",\n            \"userId\": \"019B3F3\",\n            \"version\": 2,\n            \"application\": \"PfolioEventAPI\"\n        }\n    }\n}"}],"_postman_id":"b981aa26-f27c-4808-800d-453b8fb30657"},{"name":"Update account with a recurring withdrawal","id":"770e4588-9348-4671-b1de-c248949b7492","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"autoDisinvest\": \"Largest\",\n    \"updateId\": \"{{updateId}}\"\n}"},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>This flow updates an existing investment account and creates a regular bank transfer expectation.</p>\n<p>The investor will need to set up a standing order for the relevant payment date and include the correct payment reference.</p>\n<p>When you create a recurring payment on an investment account, the payment expectation is generated at 8:00 am in the morning with a status of <code>Pending</code>. The <code>Pending</code> expectation remains until the money is allocated or it is manually deleted by Seccl on request.</p>\n<p>A single investment account can have multiple recurring payments within the <code>recurringPayment</code> array.</p>\n<p>This returns a successful array.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>updateId</code> string <strong>Required</strong></p>\n<p>The updated identifier to the record when it was last updated</p>\n<hr />\n<p><code>recurringPayment</code> array</p>\n<p>Contains of the regular payments in and out of the account</p>\n<hr />\n<p><code>recurringPayment.movementType</code> enum value <strong>Required</strong></p>\n<p>This should be set as <code>Out</code></p>\n<hr />\n<p><code>recurringPayment.amount</code> float <strong>Required</strong></p>\n<p>The amount to be withdrawn on a monthly basis</p>\n<hr />\n<p><code>recurringPayment.paymentDay</code> integer <strong>Required</strong></p>\n<p>The date that the withdrawal is expected to land in the client's bank account – this can be any day between 1 to 28</p>\n<hr />\n<p><code>recurringPayment.method</code> enum value <strong>Required</strong></p>\n<p>The payment method used to contribute. This should be set as <code>BACS Credit</code></p>\n<hr />\n<p><code>autoDisinvest</code> string</p>\n<p>The type of auto-disinvestment</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Proportional</code></td>\n<td>Instructs a sell-down proportionally across the investment account</td>\n</tr>\n<tr>\n<td><code>Largest</code></td>\n<td>Instructs a sell-down from the largest holding in the investment account</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>autoDisinvestSellType</code> string</p>\n<p>This indicates what method should be used when using the autoDisinvest feature on recurring withdrawals. This *cannot* be set unless <code>autoDisinvest</code>is also set</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Quantity</code></td>\n<td>(Default) Creates a sell trades based on a quantity value calculated to equate to approximately the desired withdrawal</td>\n</tr>\n<tr>\n<td><code>Amount</code></td>\n<td>Creates a raise trades based on the monetary value required</td>\n</tr>\n<tr>\n<td><code>AmountFirst</code></td>\n<td>Will attempt to do Raise trades first, if these fail, it will fall back to quantity. (These can fail due to asset types not being able to be raise traded)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"9c18defe-82e2-48a5-a935-6c213d1646e1","name":"Update account with a recurring withdrawal","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"recurringPayments\": [\n        {\n            \"paymentDay\": 14,\n            \"amount\": 100,\n            \"movementType\": \"Out\",\n            \"method\": \"BACS Credit\"\n        }\n    ],\n    \"autoDisinvest\": \"Proportional\",\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 05 Sep 2024 14:37:02 GMT"},{"key":"x-amzn-RequestId","value":"d7f743b8-9955-478f-a18b-de5d2c775e94"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"dotCSHgljoEEfSg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66d9c20e-15d7d31d0c847e8a1514aa91"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 417c242b19212928b079740e6dd8f54c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C1"},{"key":"X-Amz-Cf-Id","value":"jKIKcmu1To-6LvtMEvLifAtHVMHg_GnGekiAusF1fYGbr-YwRLYCsw=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"d109adb6-084d-4e42-af77-fb3f663eddb4","name":"Update account auto-disinvest value","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"autoDisinvest\": \"Largest\",\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Thu, 05 Sep 2024 14:48:02 GMT"},{"key":"x-amzn-RequestId","value":"a04a8e9d-99d6-414a-9585-adb3bf9a269e"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"doupSGHIDoEEXFg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-66d9c4a1-505961044eb6ce4a6e4e8d56"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 7f7e359e1c06a914d3d305785359b84c.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD89-C1"},{"key":"X-Amz-Cf-Id","value":"R5rz-Dh8mR5zeJrkGt-6U_pfbChRO1bHgEyhiDn_opQSW8R_JSdBZA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"770e4588-9348-4671-b1de-c248949b7492"}],"id":"ee9aa6bb-9ed6-427e-a279-e50de0ff72a8","description":"<p>Recurring withdrawals allow investors to take income from their investment accounts. A single investment account can have multiple recurring withdrawals, which can be instructed on any day. The value configured for auto-disinvest will apply to all recurring withdrawals on the account.</p>\n<p>Where a recurring withdrawal is set up with auto-disinvest, the disinvestments will occur five working days before the payment date. This means that any instruction will need to be requested six working days before the payment date if the client wishes to receive the cash that month.</p>\n<p>This flow shows you how to:</p>\n<ul>\n<li><p>Create an investment account with a recurring withdrawal</p>\n</li>\n<li><p>Update an investment account with a recurring withdrawal</p>\n</li>\n</ul>\n","_postman_id":"ee9aa6bb-9ed6-427e-a279-e50de0ff72a8"},{"name":"Taking income from a Gaudi pension","item":[{"name":"Download Gaudi drawdown request form","id":"f4add58f-4c6c-4601-a9c1-1ea2ea8f3518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/drawdownapplication","description":"<p>This returns a link to the Gaudi drawdown request form.</p>\n<p>This form needs to be completed and emailed to <a href=\"mailto:sipp@gaudiltd.co.uk\">sipp@gaudiltd.co.uk</a>, with the following wording:</p>\n<p><em>I can confirm that I have provided positive advice for the drawdown application.</em></p>\n","urlObject":{"path":["files","drawdownapplication"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4add58f-4c6c-4601-a9c1-1ea2ea8f3518"},{"name":"Retrieve the pension account","id":"db48465a-6a37-47e9-bc23-b31a1929d072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/account/{{firmId}}/{{accountId}}","description":"<p>This command returns the account object.</p>\n<p>This includes the <code>clientproduct</code> Id.</p>\n","urlObject":{"path":["account","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"db48465a-6a37-47e9-bc23-b31a1929d072"},{"name":"Retrieve the clientproduct","id":"b1103a15-9b7d-44dc-a20e-8dc16c039e6a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/account/summary/{{firmId}}/{{accountId}}","description":"<p>This command returns the client product object.</p>\n<p>You can use this to retrieve the <code>updateId</code> for the <code>clientproduct.</code></p>\n","urlObject":{"path":["account","summary","{{firmId}}","{{accountId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b1103a15-9b7d-44dc-a20e-8dc16c039e6a"},{"name":"Update the clientproduct status","id":"476b737a-8cc1-4092-b72a-9133aceeda62","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateReason\": \"Update the productStatus on the clientProduct to \\\"drawdownPending\\\"\",\n    \"productStatus\": \"drawdownPending\",\n    \"updateId\": \"{{updateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/clientproduct/{{firmId}}/{{clientProductId}}","urlObject":{"path":["clientproduct","{{firmId}}","{{clientProductId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"476b737a-8cc1-4092-b72a-9133aceeda62"}],"id":"136f476f-eb6b-4026-8e42-3a285f250157","description":"<p>Seccl provides a pension through Gaudi.</p>\n<p>To move a Gaudi accumulation pension into drawdown and request income from that pension, you can follow the below steps:</p>\n<p>User downloads and completes the drawdown request form</p>\n<ol>\n<li>User emails the drawdown request form to <a href=\"mailto:sipp@gaudiltd.co.uk\">sipp@gaudiltd.co.uk</a><ol>\n<li>Client product status should be updated to <code>drawdownRequested</code></li>\n</ol>\n</li>\n<li>Gaudi responds with a Benefit Agreement Letter</li>\n<li>User confirms that the details are correct</li>\n<li>Gaudi responds with a Benefit Confirmation Letter</li>\n<li>Gaudi processes payroll and sends Seccl the transaction details</li>\n<li>Seccl uploads the transaction details<ol>\n<li>Client product status is automatically updated to <code>drawdownConfirmed</code></li>\n</ol>\n</li>\n<li>Client payslip is available in the message hub</li>\n</ol>\n<p><strong>Please note: to update the client's income instruction, the above steps need to be followed.</strong></p>\n<p>To transfer a drawdown pension to Gaudi pension, you can follow these steps:</p>\n<ol>\n<li>User creates a pension account</li>\n<li>User indicates drawdown pension – the client product status should be updated to <code>drawdownRequested</code></li>\n<li>User instructs the transfer</li>\n<li>When the transfer completes, Seccl updates the client product status to <code>drawdownConfirmed</code></li>\n</ol>\n<p>If the client wants to take income from their pension once the transfer has completed, they will need to download and email Gaudi the completed drawdown request form.</p>\n<p><em><strong>{{ADD LINK TO TRANSFERRING A DRAWDOWN PENSION FLOW}}</strong></em></p>\n","_postman_id":"136f476f-eb6b-4026-8e42-3a285f250157"},{"name":"List withdrawals","item":[{"name":"List payments","event":[{"listen":"test","script":{"exec":[""],"type":"text/javascript","id":"199f9a37-5a44-4d9c-8e73-f40198e21068"}}],"id":"2bd7e72e-f3ff-4ad9-a133-f48e49eef361","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/portfoliotransaction/{{firmId}}?transactionSubType=Withdrawal","description":"<p>This command returns all withdrawals.</p>\n","urlObject":{"path":["portfoliotransaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"transactionSubType","value":"Withdrawal"},{"disabled":true,"key":"status","value":"Pending"},{"disabled":true,"key":"transactionDateFrom","value":"YYYY-MM-DD"},{"disabled":true,"key":"transactionDateTo","value":"YYYY-MM-DD"}],"variable":[]}},"response":[],"_postman_id":"2bd7e72e-f3ff-4ad9-a133-f48e49eef361"}],"id":"029509cf-8e0f-4d80-ab27-f94981606732","description":"<p>This section will show you how to return all withdrawals from a client's account in a list.</p>\n","_postman_id":"029509cf-8e0f-4d80-ab27-f94981606732"},{"name":"Cancel Pending Withdrawal","item":[{"name":"Delete Pending Withdrawal","event":[{"listen":"test","script":{"id":"f0b9d133-5e46-4b2d-9a4c-20c40e46459f","exec":["const response = pm.response.json()"],"type":"text/javascript","packages":{}}}],"id":"b08a92c9-b959-4118-a648-13483b7b0b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"transactionAction\": \"Request Deletion\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/requestdeletion/{{firmId}}/{{transactionId}}","urlObject":{"path":["portfoliotransaction","action","requestdeletion","{{firmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"ef30f34e-6ba0-4193-90f6-65d3ff54b653","name":"Delete Pending Withdrawal","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"transactionAction\": \"Request Deletion\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransaction/action/requestdeletion/{{firmId}}/{{transactionId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 09 Dec 2024 15:59:06 GMT"},{"key":"X-Amzn-Trace-Id","value":"Root=1-675713ca-024ac85b7c2b5557267196ca"},{"key":"x-amzn-RequestId","value":"dac33c7d-49bf-48bb-85c4-4e8e79198551"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"CiAHwHoxjoEEuJg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 2d6a842ce062743cb59760fe19c49a42.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"DUB56-P3"},{"key":"X-Amz-Cf-Id","value":"FUZ2ILFs58F1OPu-K2r684jfMNeMKjaJ0ka_l0KcItGiHoNbiL7RMA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"b08a92c9-b959-4118-a648-13483b7b0b6d"}],"id":"acdc5c94-bf70-4c3a-ba49-efeb602dc54c","description":"<p>Users can now use the Request Deletion Endpoint to self-service the cancellation of pending withdrawals via the API, giving firms greater control over client money, using the withdrawal Transaction ID.</p>\n<p>If the client no longer wishes to make a withdrawal, and it hasn’t been instructed, a request to cancel that withdrawal can be sent across.</p>\n<p>Below you can find details on the expected responses for this Endpoint:</p>\n<p>If the withdrawal has already been instructed (400 - Bad Request):</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"This withdrawal has been instructed and can no longer be deleted\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}\n\n</code></pre>\n<p>If the request was accepted (202):</p>\n<p>1.If it was succesfully deleted - Example of Notification received via Transaction Webhook:  </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\n{\n    \"events\": [\n        {\n            \"id\": \"000077771\",\n            \"firmId\": \"TEST1\",\n            \"transactionType\": \"Payment\",\n            \"status\": \"Deleted\",\n            \"updateDate\": \"2025-04-03T15:09:13.990Z\",\n        },\n    ],\n}\n\n</code></pre>\n<p>2.If it could not be deleted - Example of Notification received via Exceptions Webhook:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"events\": [\n        {\n            \"id\": \"00007QJ883\",\n            \"firmId\": \"TEST1\",\n            \"notification\": {\n                \"id\": \"00007QJ883\",\n                \"notificationType\": \"Exception\",\n                \"created\": \"2025-04-03T15:05:07.942Z\",\n                \"systemArea\": \"Transaction\",\n                \"exceptionFirmId\": \"TEST1\",\n                \"status\": \"Open\",\n                \"message\": \"Transaction deletion request failed\",\n                \"canBeRetried\": true,\n                \"firmId\": \"TEST1\",\n                \"queueMessage\": {\n                    \"schema_version\": 1,\n                    \"id\": \"000077770\",\n                    \"firmId\": \"TEST1\"\n                },\n                \"serviceName\": \"portfolio-workflow-manager\",\n                \"queueName\": \"background\",\n                \"method\": \"ExternalDeleteTransactionFailed\",\n                \"exceptionType\": \"Business\",\n            },\n            \"updateDate\": \"2025-04-03T15:05:08.276Z\",\n        },\n    ],\n}\n\n</code></pre>\n","_postman_id":"acdc5c94-bf70-4c3a-ba49-efeb602dc54c"},{"name":"Next Payment Date","item":[{"name":"Next Payment Date","id":"d1862f26-c970-44c8-9d93-0a170310bcfb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{apiRoute}}/v1/nextPaymentDate/{{firmId}}?currentDate=2025-10-28&dayOfMonth=3&paymentType=Regular+Crystallisation","urlObject":{"path":["v1","nextPaymentDate","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"currentDate","value":"2025-10-28"},{"key":"dayOfMonth","value":"3"},{"key":"paymentType","value":"Regular+Crystallisation"}],"variable":[]}},"response":[],"_postman_id":"d1862f26-c970-44c8-9d93-0a170310bcfb"}],"id":"c89ff0e3-fb14-499a-9136-f0db3937bc1a","description":"<p>You can use this endpoint to determine the date at which you can next expect to receive a recurring payment given the current date, the day of the month on which your recurring payment to occur and the payment type. Depending on these parameters, the next payment date could be this month, next month or the month after that.</p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">/ nextPaymentDate/{{firmId}}\n\n</code></pre>\n<h3 id=\"query-parameters\">Query parameters</h3>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>currentDate</code> string (optional)</p>\n<p>Date string (ISO 8601 format) indicating the date from which to calculate the next payment date. Defaults to today's date.</p>\n<hr />\n<p><code>dayOfMonth</code> string (required)</p>\n<p>An integer numeric string between 1 and 28 (inclusive) indicating the day of the month you wish to set up a recurring payment.</p>\n<hr />\n<p><code>paymentType</code> enum value (required)</p>\n<p>The type of payment. Different payment types require different processing times and consequently may affect which month you can next expect payment.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Processing Period</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Recurring Auto-Disinvest Withdrawal</code></td>\n<td>5</td>\n</tr>\n<tr>\n<td><code>Recurring Direct Debit Payment In</code></td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>Recurring Payment In</code></td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>Recurring Withdrawal</code></td>\n<td>3</td>\n</tr>\n<tr>\n<td><code>Regular Crystallisation</code></td>\n<td>6</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c89ff0e3-fb14-499a-9136-f0db3937bc1a"}],"id":"81932f17-f93a-4970-99ad-65b99075c3dc","description":"<p>This section shows you how to:</p>\n<ul>\n<li>Instruct a single withdrawal from uninvested cash</li>\n<li>Instruct a single withdrawal with auto-disinvest</li>\n<li>Create a recurring withdrawal on an investment account</li>\n<li>Take income from a Gaudi pension</li>\n<li>List withdrawals</li>\n</ul>\n<p>Withdrawals are processed using <a href=\"https://en.wikipedia.org/wiki/BACS\">BACS</a>. It takes between three and five working days from the point of instruction to land in the client's bank account.</p>\n<p>The money is paid out to the bank details held on the client record. Where bank details are stored on the investment account, for example in the case of a third-party product, withdrawals are paid out to those bank details.</p>\n<p>When a withdrawal is instructed:</p>\n<ul>\n<li>The <code>uninvestedCash</code> value decreases by the withdrawal amount</li>\n<li>The <code>cash</code> value in the positions array remains unchanged until the withdrawal completes</li>\n</ul>\n<p>Where a withdrawal is instructed with auto-disinvest:</p>\n<ul>\n<li>The withdrawal transaction is created at a status of <code>Waiting</code> and the sells are created with a status of <code>Pending</code></li>\n<li>When the sells move to <code>Completed</code>, the withdrawal transaction status updates to <code>Pending</code> and is processed</li>\n</ul>\n<p><strong>Please note: where a withdrawal is instructed within 90 days of an update to the bank details held on the client record, it is held at</strong> <strong><code>Checking</code></strong> <strong>status. For more information, please refer to the Suspicious Activity section.</strong></p>\n<h4 id=\"endpoints\"><strong>Endpoints</strong></h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/ portfoliotransactiongroup\n/ portfoliotransaction\n/ account\n\n</code></pre>","_postman_id":"81932f17-f93a-4970-99ad-65b99075c3dc"},{"name":"Cash interest","item":[{"name":"Update Client to Opt Out of cash interest","id":"06954658-4613-4084-89ae-4f9c1c0e60c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"cashInterestOptOut\": true\n}"},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId}}","description":"<p>This is the PATCH which can be used to update a client to be opted out from receiving cash interest.</p>\n<p>The value for<code>\"cashInterestOptOut\"</code> can also be specified when creating a client. This is an optional field.</p>\n","urlObject":{"path":["client","{{pfolioFirmId}}","{{clientId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"25511057-3aac-451a-ba52-b2535a675f57","name":"Update Client to Opt Out true","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"cashInterestOptOut\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 13 May 2024 07:55:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"f736f9f5-aa50-47af-997a-3defb1d274cf"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"XsweZG4sDoEEDzQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-6641c78f-16b400c56958892976743feb;Parent=2fff5ac69f05eba1;Sampled=0;lineage=8c3b91d1:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"e1d4e167-c610-4ee1-a7b5-2ea810b4df8e","name":"Update Client to Opt Out false","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"cashInterestOptOut\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 May 2024 14:46:04 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"e2e3389a-2ae2-4562-ac20-01fac31fcfc7"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Xjzu7GHzjoEEFmQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-663e332c-4ea3682c0f7736a95a2ca352;Parent=70f7a1503a624fc4;Sampled=0;lineage=8c3b91d1:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"c0325ee7-d7b8-43ba-9a7b-493aa4bb7b26","name":"Update Client to Opt Out not configured for firm error message","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"updateId\": \"{{updateId}}\",\n    \"cashInterestOptOut\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/client/{{pfolioFirmId}}/{{clientId}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 May 2024 14:32:37 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"158"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"d0c27619-8343-46e1-8842-55a8ae0ebe3f"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"158"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Xjxw3GdvjoEERvA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"9e-b2fjfzZtLqXVxtGHd8bE8NiyMh0\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-663e3005-1badaa862c4c690c502c54b8;Parent=07578755f0ac5001;Sampled=0;lineage=8c3b91d1:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"Opting out of receiving cash interest is not enabled for this firm\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"06954658-4613-4084-89ae-4f9c1c0e60c8"},{"name":"Get portfolio transaction Client opted out example","id":"fe8dc7c9-f250-42bb-aeeb-f30b97009b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{pfolioFirmId}}/{{transactionId}}","description":"<p>An example notional transaction where the client has been opted out from receiving cash interest on their account.</p>\n<p>Here they have the <code>\"cashInterestRetainedReason\": \"Client Opted Out\"</code></p>\n<p>The other retained reason which can be returned is</p>\n<p><code>\"cashInterestRetainedReason\": \"Firm Retained\"</code></p>\n","urlObject":{"path":["portfoliotransaction","{{pfolioFirmId}}","{{transactionId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"34af8f8c-75c1-417d-be04-d460dc51bf4a","name":"Get Portfolio Transaction","originalRequest":{"method":"GET","header":[{"key":"content-type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/portfoliotransaction/{{pfolioFirmId}}/{{transactionId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 10 May 2024 16:01:17 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"591"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"a971211f-4330-485d-9c4c-5e161b596135"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"591"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"Xj-wHHRHDoEECgA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"24f-4ZNJKtg9ouEYbTZNgtlQlGzgB9g\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-663e44cd-37c95f0b0172062c6fbfbe77;Parent=7488e8e85f112ff4;Sampled=0;lineage=8c3b91d1:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00008B18N\",\n        \"coreId\": \"00007828J\",\n        \"intendedSettlementDate\": \"2024-05-09T15:30:45.492Z\",\n        \"transactionDate\": \"2024-05-10T15:30:45.492Z\",\n        \"firmId\": \"TEST1\",\n        \"transactionType\": \"Notional\",\n        \"movementType\": \"In\",\n        \"accountId\": \"025JH5C\",\n        \"amount\": 25,\n        \"transactionSubType\": \"Cash Interest\",\n        \"information\": {\n            \"cashInterestRetainedReason\": \"Client Opted Out\"\n        },\n        \"status\": \"Completed\",\n        \"nodeId\": \"1\",\n        \"createdDate\": \"2024-05-10T16:01:02.582Z\",\n        \"auditDetails\": {\n            \"updateDate\": \"2024-05-10T16:01:02.596Z\",\n            \"userFirmId\": \"SECCL\",\n            \"userId\": \"029B3F3\",\n            \"version\": 1,\n            \"application\": \"PfolioAPI\"\n        },\n        \"updateId\": \"663e44be35118a170aaa5187\"\n    }\n}"}],"_postman_id":"fe8dc7c9-f250-42bb-aeeb-f30b97009b43"}],"id":"136650f8-d7e2-4703-8fa5-b55215dc1d7a","description":"<p>Seccl provides 3 ways of handling cash interest earned on cash holdings.</p>\n<p>Default - Cash interest earned on a client's cash deposits is credited on the client's accounts.</p>\n<p>Firm retained - Cash interest earned on cash holdings is witheld from the client's accounts and paid out to the firm.</p>\n<p>Default with cash interest opt out enabled - Cash interest earned on a client's cash deposits is credited to the client's accounts unless the client has been opted out. For clients who have been opted out the cash interest earned will be paid to the firm. A use case for this functionality is that a client has religious beliefs whereby they do not want to receive interest earned on cash holdings.</p>\n<p>If you are interested in using an option other than the deafult functionality then please contact your Account Manager for more information.</p>\n","_postman_id":"136650f8-d7e2-4703-8fa5-b55215dc1d7a"},{"name":"Internal stock transfer","item":[{"name":"The internal stock transfer object","item":[],"id":"bb3d007d-732e-459c-aafc-03e3275302e0","description":"<p>The inter-account stock movement <code>portfoliotransaction</code> object is used to instruct a stock movement between two accounts in a client portfolio.</p>\n<p>This is a singular transaction that describes the movement from the <code>accountId</code> to the <code>destinationAccountId</code>.</p>\n<p>Cannot be used with an Internal Cash Transfer in the same portfolio transaction group.</p>\n<p><strong>Validation and rules</strong></p>\n<p>The following validation points will be checked upon submitting your internal stock transfer. You should pre-validate these rules before submitting your instruction.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Validation point</strong></th>\n<th><strong>Outcome if breached</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Transaction's <code>quantity</code> must be &lt;= the account's available quantity (use the GET Live Account Summary endpoint in /Balances and values/Account/ folder)</td>\n<td>API error response for insufficient quantity</td>\n</tr>\n<tr>\n<td>Transaction's <code>quantity</code> must be &gt;= the asset's <code>minimumTransferUnit</code> (use the GET asset endpoint in /Platform management/Assets and prices/ folder)</td>\n<td>Async notification</td>\n</tr>\n<tr>\n<td>Transaction's <code>accountId</code> and <code>destinationAccountId</code> must belong to the same:  <br />- clientId  <br />- wrapperType (e.g. cannot transfer GIA to ISA)  <br />- clientProductId  <br />- schemeProductId  <br />- portfolioGroup.id</td>\n<td>Async notification</td>\n</tr>\n</tbody>\n</table>\n</div><p><strong>When retrieving internal transfers</strong></p>\n<p>When using the <code>GET /portfolioTransaction</code> endpoint, you will not find the internal cash transfer if you query for all transactions on the destination account ID.</p>\n<p>For example:</p>\n<ul>\n<li><p>Internal cash transfer is instructed to move cash from <code>accountA</code> to <code>accountB</code></p>\n<ul>\n<li><p>Transaction created with ID <code>ist1</code></p>\n</li>\n<li><p>A negative stock movement is recorded on <code>accountA</code></p>\n</li>\n<li><p>A positive stock movement is recorded on <code>accountB</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId=accountA</code></p>\n<ul>\n<li>This will return the <code>ict1</code> transaction</li>\n</ul>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId=accountB</code></p>\n<ul>\n<li>This will <strong>NOT</strong> return the <code>ict1</code> transaction (because the <code>accountId</code> is <code>accountA</code>, not <code>accountB</code>)</li>\n</ul>\n</li>\n</ul>\n<p>Instead, you should query for <code>?destinationAccount=accountB</code>. Generally we recommend you make two calls to retrieve transactions for each account and merge the results:</p>\n<ol>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId={{accountId}}</code></p>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?destinationAccount={{accountId}}</code></p>\n</li>\n</ol>\n<p>Alternatively, to find the specific movements on a given account, use the Postings endpoints in the <strong>Balances and valuations / Cash and stock postings</strong> folder.</p>\n","_postman_id":"bb3d007d-732e-459c-aafc-03e3275302e0"},{"name":"Create an internal stock transfer","id":"f70099e5-c164-4b30-bb4e-8572e8b62559","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Stock Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"method\": \"Transfer\",\n            \"movementType\": \"Out\",\n            \"accountId\": \"{{accountId}}\",\n            \"destinationAccount\": \"{{destinationAccount}}\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{assetId}}\",\n            \"quantity\": {{quantity}}\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates an internal account transfer between investment accounts in a client's portfolio, and returns a <code>linkId.</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th></th>\n<th></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Stock Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Internal</code></p>\n<hr />\n<p><code>transactions.method</code> string <strong>Required</strong></p>\n<p>This should be set to Transfer</p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the stock is being transferred from</p>\n<hr />\n<p><code>transactions.destinationAccount</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the stock is being transferred to</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<p>The assetId of the asset to be transferred</p>\n<hr />\n<p><code>transactions.quantity</code> float <strong>Required</strong></p>\n<p>The amount to be transferred – this must be available as uninvested cash</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f70099e5-c164-4b30-bb4e-8572e8b62559"}],"id":"68fe5250-8cd4-48b8-8dff-af74f1274d44","_postman_id":"68fe5250-8cd4-48b8-8dff-af74f1274d44","description":""},{"name":"Internal cash transfer","item":[{"name":"The internal cash movement object","item":[],"id":"6b4defc2-2554-4d2b-bc59-3539ba5ba77f","description":"<p>The inter-account cash movement <code>portfoliotransaction</code> object is used to instruct a cash movement between two accounts in a client portfolio.</p>\n<p>This is a singular transaction that describes the movement from the <code>accountId</code> to the <code>destinationAccountId</code>.</p>\n<p>When using the <code>GET /portfolioTransaction</code> endpoint, you will not find the internal cash transfer if you query for all transactions on the destination account ID.</p>\n<p>For example:</p>\n<ul>\n<li><p>Internal cash transfer is instructed to move cash from <code>accountA</code> to <code>accountB</code></p>\n<ul>\n<li><p>Transaction created with ID <code>ict1</code></p>\n</li>\n<li><p>A negative cash movement is recorded on <code>accountA</code></p>\n</li>\n<li><p>A positive cash movement is recorded on <code>accountB</code></p>\n</li>\n</ul>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId=accountA</code></p>\n<ul>\n<li>This will return the <code>ict1</code> transaction</li>\n</ul>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId=accountB</code></p>\n<ul>\n<li>This will <strong>NOT</strong> return the <code>ict1</code> transaction (because the <code>accountId</code> is <code>accountA</code>, not <code>accountB</code>)</li>\n</ul>\n</li>\n</ul>\n<p>Instead, you should query for <code>?destinationAccount=accountB</code>. Generally we recommend you make two calls to retrieve transactions for each account and merge the results:</p>\n<ol>\n<li><p><code>GET /portfolioTransaction/{firmId}?accountId={{accountId}}</code></p>\n</li>\n<li><p><code>GET /portfolioTransaction/{firmId}?destinationAccount={{accountId}}</code></p>\n</li>\n</ol>\n<p>Alternatively, to find the specific movements on a given account, use the Postings endpoints in the <strong>Balances and valuations / Cash and stock postings</strong> folder.</p>\n<h4 id=\"attributes\">Attributes</h4>\n<hr />\n<p><code>id</code> string</p>\n<p>The unique identifier of the transaction</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> string<br />The unique identifier for the client’s investment account where the cash is transferring from</p>\n<hr />\n<p><code>destinationAccount</code> string</p>\n<p>The unique identifier for the client's investment account where the cash is transferring to</p>\n<hr />\n<p><code>transactionType</code> enum value<br />The type of transaction taking place – this will be set to <code>Cash Transfer</code></p>\n<hr />\n<p><code>transactionSubType</code> enum value<br />The action to be performed on the account – this will be set to <code>Internal</code></p>\n<hr />\n<p><code>movementType</code> string<br />Whether the cash is travelling in or out of the investment account – this will be set to <code>Out</code></p>\n<hr />\n<p><code>currency</code> string<br />Three-letter ISO code for the currency paid in or out of the account – this will be set to <code>GBP</code></p>\n<hr />\n<p><code>amount</code> float<br />The amount that the investor is contributing to their investment account</p>\n<hr />\n<p><code>transactionDate</code> string</p>\n<p>The date the inter-account cash movement was instructed</p>\n<hr />\n<p><code>status</code> string</p>\n<p>The status of the transaction</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Completed</code></td>\n<td>Transaction completed – cash available in the destination account</td>\n</tr>\n<tr>\n<td><code>Deleted</code></td>\n<td>Transaction deleted</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>linkId</code> string</p>\n<p>The unique identifier that is contained in all the transactions within that portfolio transaction group</p>\n<hr />\n<p><code>nodeId</code> string</p>\n<p>The unique identifier of the node attached to the client account</p>\n<hr />\n<p><code>createdDate</code> string</p>\n<p>The date and time that the transaction was created</p>\n<hr />\n","_postman_id":"6b4defc2-2554-4d2b-bc59-3539ba5ba77f"},{"name":"Internal cash movement keep as cash","id":"a4ab0524-b6ce-4b31-9d86-e320034b2131","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"{{accountId}}\",\n            \"destinationAccount\": \"{{destinationAccount}}\",\n            \"currency\": \"GBP\",\n            \"amount\": 3000,\n            \"movementType\": \"Out\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates an inter-account cash movement between investment accounts in a client's portfolio, and returns a <code>linkId.</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Cash Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Internal</code></p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions.destinationAccount</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred to</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount to be transferred – this must be available as uninvested cash</p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"b656cf65-6f83-45b8-b00c-597457027b42","name":"Internal cash movement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"00DC2DC\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"00DC2DC\",\n            \"destinationAccount\": \"00DC2DB\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 12:28:50 GMT"},{"key":"x-amzn-RequestId","value":"0d51fe36-b4c0-4a3a-a328-da499d1cc0c5"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQ90VGuGjoEF2QA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-+J9cAkPnfaqLXUK74YIbncVbjkU\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63037681-330c472113381d9f6f24ad54;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c46a92c66fe21525310bd5d2f471e46.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"gfT1UnEfSr8VAZMi_WEXOVIcQj4nYW1uZAbteMld3nHM9_uU0pIZXQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005KH49\"\n    }\n}"}],"_postman_id":"a4ab0524-b6ce-4b31-9d86-e320034b2131"},{"name":"Internal cash movement invest to recurring orders","id":"0f6312c3-827d-46a6-b549-39f709aab518","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"{{accountId}}\",\n            \"destinationAccount\": \"{{destinationAccount}}\",\n            \"currency\": \"GBP\",\n            \"autoInvest\": true,\n            \"amount\": 3000,\n            \"movementType\": \"Out\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates an inter-account cash movement between investment accounts in a client's portfolio. The cash is then invested to the <code>recurringOrders</code> allocation attached to the <code>destinationAccount.</code>This returns a <code>linkId</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Cash Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Internal</code></p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions.destinationAccount</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred to</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount to be transferred – this must be available as uninvested cash</p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>Indicates whether the money should be auto-invested to the asset allocation attached to the <code>destinationAccount</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"6e77dfff-4f75-4e89-a842-e2988f06793b","name":"Internal cash movement","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"00DC2DC\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"00DC2DC\",\n            \"destinationAccount\": \"00DC2DB\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"27"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Mon, 22 Aug 2022 12:28:50 GMT"},{"key":"x-amzn-RequestId","value":"0d51fe36-b4c0-4a3a-a328-da499d1cc0c5"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"27"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XQ90VGuGjoEF2QA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"1b-+J9cAkPnfaqLXUK74YIbncVbjkU\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63037681-330c472113381d9f6f24ad54;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 9c46a92c66fe21525310bd5d2f471e46.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR61-C2"},{"key":"X-Amz-Cf-Id","value":"gfT1UnEfSr8VAZMi_WEXOVIcQj4nYW1uZAbteMld3nHM9_uU0pIZXQ=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005KH49\"\n    }\n}"}],"_postman_id":"0f6312c3-827d-46a6-b549-39f709aab518"},{"name":"Internal cash movement invest to asset","id":"582b315d-4007-4e9f-b36a-8ae7e1401315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{accountId}}\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"destinationAccount\": \"{{destinationAccount}}\",\n            \"amount\": 20000,\n            \"currency\": \"GBP\",\n            \"movementType\": \"Out\"\n        },\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"accountId\": \"{{destinationAccount}}\",\n            \"transactionType\": \"Order\",\n            \"transactionSubType\": \"At Best\",\n            \"movementType\": \"Invest\",\n            \"currency\": \"GBP\",\n            \"assetId\": \"{{assetId}}\",\n            \"amount\": 20000\n        }\n    ]\n}"},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates an inter-account cash movement between investment accounts in a client's portfolio. It returns a <code>linkId.</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Cash Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Internal</code></p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions.destinationAccount</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred to</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount to be transferred – this must be available as uninvested cash</p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n<hr />\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the destination account – this is where the order is created</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Order</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>At Best</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Invest</code></p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.amount</code> integer <strong>Required</strong></p>\n<p>The amount to be invested</p>\n<hr />\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"582b315d-4007-4e9f-b36a-8ae7e1401315"},{"name":"Disinvest, internal cash movement, auto invest","id":"1e52b22d-cbc5-433c-be29-4fc9a65896c1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"transactions\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"{{accountId}}\",\n            \"destinationAccount\": \"{{destinationAccount}}\",\n            \"currency\": \"GBP\",\n            \"autoDisinvest\": \"Largest\",\n            \"autoInvest\": true,\n            \"amount\": 3000,\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup","description":"<p>This command creates an inter-account cash movement between investment accounts in a client's portfolio.</p>\n<p>By utilising the autoDisinvest and autoInvest options, it allows one transaction to be sent that will raise cash to transfer for the cash movement, and automatically invest the cash transfer amount in the model on the destinationAccount, also known as Bed + ISA or Bed + SIPP.</p>\n<p>Note: The autoDisinvest will check the amount of available cash and only sell down the difference (plus a 10% buffer to capture any market movement).</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the transactions within the group</p>\n<hr />\n<p><code>transactions.firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>transactions.transactionType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Cash Transfer</code></p>\n<hr />\n<p><code>transactions.transactionSubType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>Internal</code></p>\n<hr />\n<p><code>transactions.accountId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred from</p>\n<hr />\n<p><code>transactions.destinationAccount</code> string <strong>Required</strong></p>\n<p>The unique identifier of the investment account where the cash is being transferred to</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code</p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The value (amount) to be transferred between accounts. Amounts larger than the available cash balance will require the autoDisinvest flag to be set.</p>\n<p><code>transactions.autoDisinvest</code> string</p>\n<p>Disinvest method, either 'Largest' or 'Proportional'</p>\n<hr />\n<p><code>transactions.autoInvest</code> boolean</p>\n<p>Indicates whether the money should be auto-invested to the model attached to the <code>destinationAccount</code></p>\n<hr />\n<p><code>transactions.movementType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Out</code></p>\n","urlObject":{"path":["portfoliotransactiongroup"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"e94f01e8-91a8-4c4b-8cfe-3c8956198c74","name":"Disinvest, internal cash movement, auto invest","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"SDEMO\",\n    \"accountId\": \"00DC2DC\",\n    \"transactions\": [\n        {\n            \"firmId\": \"SDEMO\",\n            \"transactionType\": \"Cash Transfer\",\n            \"transactionSubType\": \"Internal\",\n            \"accountId\": \"00DC2DC\",\n            \"destinationAccount\": \"00DC2DB\",\n            \"currency\": \"GBP\",\n            \"amount\": 100,\n            \"movementType\": \"Out\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/portfoliotransactiongroup"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00005KH49\"\n    }\n}"}],"_postman_id":"1e52b22d-cbc5-433c-be29-4fc9a65896c1"}],"id":"b23c6146-cef0-4822-b0a4-5752ce2cacd4","description":"<p>Inter-account cash transfers allow the user to move cash from one investment account to another in the same client portfolio. The transaction will take place immediately, and this creates a single transaction out of the specified account.</p>\n<p>We allow inter-account transfers between the following investment accounts:</p>\n<ul>\n<li><p>GIA to GIA</p>\n</li>\n<li><p>GIA to ISA</p>\n</li>\n<li><p>GIA to SIPP</p>\n</li>\n<li><p>GIA to JISA</p>\n</li>\n<li><p>ISA to ISA</p>\n</li>\n<li><p>SIPP to SIPP</p>\n</li>\n<li><p>SSAS to SSAS</p>\n</li>\n</ul>\n<p>This section shows you how to:</p>\n<ul>\n<li><p>Instruct a cash movement and keep as cash</p>\n</li>\n<li><p>Instruct a cash movement and invest to model</p>\n</li>\n<li><p>Instruct a cash movement and invest to a recurring order allocation</p>\n</li>\n<li><p>Instruct a cash movement and invest to an asset</p>\n</li>\n</ul>\n<h3 id=\"validation\">Validation</h3>\n<p>When using the <code>/portfoliotransactiongroup</code> endpoint to submit transaction groups, there are two types of validation error responses you can expect to observe, these are split between:</p>\n<ol>\n<li><p>API response errors</p>\n<ol>\n<li>These are responses directly from the API after you send a request</li>\n</ol>\n</li>\n<li><p>Exception notifications</p>\n<ol>\n<li>Asynchronous handling of errors that cannot be handled by the API response</li>\n</ol>\n</li>\n</ol>\n<h4 id=\"api-response-errors\">API response errors</h4>\n<p>These occur when the API can immediately validate the request. You can expect to find errors related to:</p>\n<ul>\n<li><p>The request format is not valid</p>\n</li>\n<li><p>Cannot find the given accountId</p>\n</li>\n<li><p>There is insufficient cash in the ceding account for the transfer and no disinvestment has been instructed</p>\n</li>\n</ul>\n<h4 id=\"exception-notifications\">Exception notifications</h4>\n<p>These occur when the system needs to validate the transactions asynchronously, such as when submitting a group of transactions. This applies whether submitting one or many transactions in a group - the validation of each transaction is processed asynchronously.</p>\n<p>You can find further information on viewing and managing exceptions in the <strong>Platform Management / Notifications</strong> section.</p>\n<p>You can expect to find exceptions related to:</p>\n<ul>\n<li><p>Transaction types not recognised</p>\n</li>\n<li><p>There is insufficient cash when the cash transfer is triggered after some other transactions completing (e.g. linked sell orders)</p>\n</li>\n</ul>\n","_postman_id":"b23c6146-cef0-4822-b0a4-5752ce2cacd4"},{"name":"Node Switching","item":[{"name":"Request node switch","id":"2c558391-8976-45b7-8ba7-bf04cd3d706e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"api-token","value":"{{apiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"clients\": [\"client1\", \"client2\"],\n    \"targetNode\": \"50\",\n    \"sourceNode\": \"2\"\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/client/node/{{firmId}}","description":"<p>You can create a node switch request via the API</p>\n<p>This request begins the process of moving clients to a new designated node.</p>\n<p>This request will move the client, accounts and clientProducts to a new node.</p>\n<h5 id=\"requirements\">Requirements</h5>\n<p>To be able to instruct node switches, users must have access to the current node clients are members of, and the target node clients are to be moved to.</p>\n<p>In addition, users instructing node switch requests must have the <code>Node Switch</code> scope.</p>\n<p>Clients cannot be moved to a new node if:</p>\n<ul>\n<li><p>Clients have accounts invested in assets not available to the target node.</p>\n</li>\n<li><p>Clients that have jointly owned accounts, or JISA accounts, must have all clients listed in within the node switch request.</p>\n</li>\n<li><p>The client belongs to a client fee group and all members of the group are not included in the request.</p>\n</li>\n<li><p>Client is of the corporate or trust type or the client is a stakeholder of a corporate or trust client</p>\n</li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>clients</code></td>\n<td>string[]</td>\n<td>Yes</td>\n<td>List of client IDs to be updated.</td>\n</tr>\n<tr>\n<td><code>sourceNode</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The node clients are currently</td>\n</tr>\n<tr>\n<td><code>targetNode</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>The node where clients should be moved.</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-request\">Example Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>PATCH /v1/client/node/SECCI\nContent-Type: application/json\n{\n  \"clients\": [\"client-101\", \"client-102\"],\n  \"sourceNode\": \"1\",\n  \"targetNode\": \"2\"\n}\n\n</code></pre><h4 id=\"example-response-202-ok\">Example Response (202 OK)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  batchId: \"5f4553af-d001-47a0-b30f-eb75e1be8a01\"\n}\n\n</code></pre>","urlObject":{"path":["v1","client","node","{{firmId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2c558391-8976-45b7-8ba7-bf04cd3d706e"},{"name":"Get processing node switch","id":"b09cd17c-a788-401e-ad2a-dd8c684c620b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/client/node/{{firmId}}/{{batchId}}","description":"<p>You can create a node switch request via the API</p>\n<p>This request allows retrival of the status of a processing node switch request.</p>\n<p>This request will output the status of the overall node switch request instructed.</p>\n<h5 id=\"requirements\">Requirements</h5>\n<p>In addition to required params, users accessing node switch request status must have the applicable access scope.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>string</td>\n<td>Yes</td>\n<td>Unique identifier of the firm.</td>\n</tr>\n<tr>\n<td><code>batchId</code></td>\n<td>uuid</td>\n<td>Yes</td>\n<td>The ID returned from instructing a node switch request</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"example-request\">Example Request</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /v1/client/node/SECCI/batchId HTTP/1.1\n\n</code></pre><h4 id=\"example-response-200-ok\">Example Response (200 OK)</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n   batchId: uuid, \n   status: 'pending'\n}\n\n</code></pre>","urlObject":{"path":["v1","client","node","{{firmId}}","{{batchId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b09cd17c-a788-401e-ad2a-dd8c684c620b"}],"id":"666c4d2c-bc3d-46a9-bc12-324c4bae31c5","description":"<p>Node switching enables you to migrate clients between nodes in your system without manual intervention from our support team.</p>\n<p>When you switch a client to a new node, we perform a complete migration of all their data to ensure continuity:</p>\n<ul>\n<li><p>Client</p>\n</li>\n<li><p>Accounts</p>\n</li>\n<li><p>Client Products</p>\n</li>\n<li><p>Messages</p>\n</li>\n<li><p>Illustrations</p>\n</li>\n<li><p>Portfolio positions</p>\n</li>\n<li><p>Portfolio groups</p>\n</li>\n<li><p>Portfolio transactions</p>\n</li>\n<li><p>Valuation snapshots</p>\n</li>\n</ul>\n","_postman_id":"666c4d2c-bc3d-46a9-bc12-324c4bae31c5"},{"name":"Client reporting","item":[{"name":"Trade illustration","item":[{"name":"Create a trade illustration","id":"f2308547-549d-4de1-9ab0-74c8955ee7ab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"accountId\": \"{{accountId}}\",\n    \"period\": 60,\n    \"growthPercentage\": 0.05,\n    \"illustrationType\": \"Trade\",\n    \"periodType\": \"MONTHS\",\n    \"transactions\": [\n        {\n            \"assetId\": \"{{assetId}}\",\n            \"amount\": 750,\n            \"currency\": \"GBP\"\n        },\n        {\n            \"assetId\": \"{{assetId}}\",\n            \"amount\": 750,\n            \"currency\": \"GBP\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/illustration/trade","description":"<p>This command creates a trade illustration, and returns the following data that can be made available in your application:</p>\n<ul>\n<li>Summary of initial charges</li>\n<li>Summary of charges for each period</li>\n<li>Final amount at end of period</li>\n<li>Total initial charges</li>\n<li>Total ongoing charges</li>\n<li>Total transaction charges</li>\n<li>Total overall charges</li>\n</ul>\n<h4 id=\"parameters\"><strong>Parameters</strong></h4>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>accountId</code> alpha-numerical string <strong>Required</strong></p>\n<p>The unique identifier for a client's account.</p>\n<hr />\n<p><code>period</code> integer <strong>Required</strong></p>\n<p>Should be set to 60, this equates to 60 months (5 year illustration).</p>\n<hr />\n<p><code>growthPercentage</code> float <strong>Required</strong></p>\n<p>This should be 5% as per MiFID II requirements</p>\n<hr />\n<p><code>illustrationType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>MIFID</code></p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>MONTHS</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Required</strong></p>\n<p>Contains details of the trades to be submitted</p>\n<hr />\n<p><code>transactions.amount</code> float <strong>Required</strong></p>\n<p>The amount to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string <strong>Required</strong></p>\n<p>The three-letter ISO currency code – this will be set to <code>GBP</code></p>\n<hr />\n<p><code>transactions.assetId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the asset to be invested in</p>\n<hr />\n","urlObject":{"path":["illustration","trade"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"95352679-c1d9-4c0c-bab7-d07600434b03","name":"Create a trade illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n      \"firmId\": \"SDEMO\",\n      \"accountId\": \"00GBDC9\",\n      \"period\": 60,\n      \"growthPercentage\": 0.05,\n      \"illustrationType\": \"Trade\",\n      \"periodType\": \"MONTHS\",\n      \"transactions\": [\n          {\n              \"assetId\": \"286D7\",\n              \"amount\": 750,\n              \"currency\": \"GBP\"\n          },\n          {\n              \"assetId\": \"286D8\",\n              \"amount\": 750,\n              \"currency\": \"GBP\"\n          }, {\n              \"assetId\": \"286D9\",\n              \"amount\": 750,\n              \"currency\": \"GBP\"\n          }\n      ]\n  }"},"url":"{{apiRoute}}/illustration/trade"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"40675"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Tue, 23 Aug 2022 16:12:01 GMT"},{"key":"x-amzn-RequestId","value":"0a29f6fb-b022-4b07-a3f8-d8d134b0d7a5"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"40675"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XUxcsGkajoEF4FA="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"9ee3-lXxThYsLsOnJiihSc7tHqSH4IQQ\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-6304fc51-6e164bea7f44c12c7531ff28;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 f960e36cae6548ee1a3142e3d61bcba8.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"LHR50-C1"},{"key":"X-Amz-Cf-Id","value":"7QFrtGbS1UZtYzIAXw42R_Yr_hC850Y4pHQuTzrykR2jLzLT9W-oWA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"firmId\": \"SDEMO\",\n        \"accountId\": \"00GBDC9\",\n        \"accountName\": \"1\",\n        \"currency\": \"GBP\",\n        \"initialCharges\": [\n            {\n                \"assetId\": \"286D7\",\n                \"assetName\": \"WH Smith PLC\",\n                \"charges\": [],\n                \"totalCharges\": 0\n            },\n            {\n                \"assetId\": \"286D8\",\n                \"assetName\": \"\",\n                \"charges\": [],\n                \"totalCharges\": 0\n            },\n            {\n                \"assetId\": \"286D9\",\n                \"assetName\": \"\",\n                \"charges\": [],\n                \"totalCharges\": 0\n            }\n        ],\n        \"ongoingCharges\": {\n            \"portfolioCharges\": [],\n            \"assetCharges\": [\n                {\n                    \"assetId\": \"286D7\",\n                    \"assetName\": \"WH Smith PLC\",\n                    \"charges\": [],\n                    \"totalCharges\": 0\n                },\n                {\n                    \"assetId\": \"286D8\",\n                    \"assetName\": \"\",\n                    \"charges\": [],\n                    \"totalCharges\": 0\n                },\n                {\n                    \"assetId\": \"286D9\",\n                    \"assetName\": \"\",\n                    \"charges\": [],\n                    \"totalCharges\": 0\n                }\n            ]\n        },\n        \"calculationsAfterEachPeriod\": [\n            {\n                \"periodIndex\": 0,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2250,\n                \"growthAmount\": 0,\n                \"ongoingCharges\": {\n                    \"portfolioCharges\": [],\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ]\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2250,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                }\n            },\n            {\n                \"periodIndex\": 1,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2246.25,\n                \"growthAmount\": 9.15,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2255.4,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 3.75\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 3.75\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 746.25,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 750,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 750,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 2,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2255.4,\n                \"growthAmount\": 9.19,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2264.59,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 749.29,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 753.06,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 753.06,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 3,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2264.59,\n                \"growthAmount\": 9.23,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2273.82,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 752.34,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 756.12,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 756.12,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 4,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2273.82,\n                \"growthAmount\": 9.26,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2283.08,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 755.41,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 759.2,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 759.2,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 5,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2283.08,\n                \"growthAmount\": 9.3,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2292.38,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 758.49,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 762.3,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 762.3,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 6,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2292.38,\n                \"growthAmount\": 9.34,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2301.72,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 761.58,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 765.4,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 765.4,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 7,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2301.72,\n                \"growthAmount\": 9.38,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2311.1,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 764.68,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 768.52,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 768.52,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 8,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2311.1,\n                \"growthAmount\": 9.42,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2320.51,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 767.79,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 771.65,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 771.65,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 9,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2320.51,\n                \"growthAmount\": 9.45,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2329.97,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 770.92,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 774.8,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 774.8,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 10,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2329.97,\n                \"growthAmount\": 9.49,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2339.46,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 774.06,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 777.95,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 777.95,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 11,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2339.46,\n                \"growthAmount\": 9.53,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2348.99,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 777.22,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 781.12,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 781.12,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 12,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2348.99,\n                \"growthAmount\": 9.57,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2358.56,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 780.38,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 784.3,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 784.3,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 13,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2358.56,\n                \"growthAmount\": 9.61,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2368.17,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 783.56,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 787.5,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 787.5,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 14,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2368.17,\n                \"growthAmount\": 9.65,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2377.82,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 786.75,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 790.71,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 790.71,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 15,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2377.82,\n                \"growthAmount\": 9.69,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2387.51,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 789.96,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 793.93,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 793.93,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 16,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2387.51,\n                \"growthAmount\": 9.73,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2397.23,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 793.18,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 797.16,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 797.16,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 17,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2397.23,\n                \"growthAmount\": 9.77,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2407,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 796.41,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 800.41,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 800.41,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 18,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2407,\n                \"growthAmount\": 9.81,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2416.81,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 799.65,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 803.67,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 803.67,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 19,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2416.81,\n                \"growthAmount\": 9.85,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2426.65,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 802.91,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 806.95,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 806.95,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 20,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2426.65,\n                \"growthAmount\": 9.89,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2436.54,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 806.18,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 810.23,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 810.23,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 21,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2436.54,\n                \"growthAmount\": 9.93,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2446.47,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 809.47,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 813.54,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 813.54,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 22,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2446.47,\n                \"growthAmount\": 9.97,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2456.43,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 812.77,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 816.85,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 816.85,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 23,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2456.43,\n                \"growthAmount\": 10.01,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2466.44,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 816.08,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 820.18,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 820.18,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 24,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2466.44,\n                \"growthAmount\": 10.05,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2476.49,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 819.4,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 823.52,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 823.52,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 25,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2476.49,\n                \"growthAmount\": 10.09,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2486.58,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 822.74,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 826.87,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 826.87,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 26,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2486.58,\n                \"growthAmount\": 10.13,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2496.71,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 826.09,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 830.24,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 830.24,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 27,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2496.71,\n                \"growthAmount\": 10.17,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2506.88,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 829.46,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 833.63,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 833.63,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 28,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2506.88,\n                \"growthAmount\": 10.21,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2517.1,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 832.84,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 837.02,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 837.02,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 29,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2517.1,\n                \"growthAmount\": 10.25,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2527.35,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 836.23,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 840.43,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 840.43,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 30,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2527.35,\n                \"growthAmount\": 10.3,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2537.65,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 839.64,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 843.86,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 843.86,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 31,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2537.65,\n                \"growthAmount\": 10.34,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2547.99,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 843.06,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 847.29,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 847.29,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 32,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2547.99,\n                \"growthAmount\": 10.38,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2558.37,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 846.49,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 850.75,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 850.75,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 33,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2558.37,\n                \"growthAmount\": 10.42,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2568.79,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 849.94,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 854.21,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 854.21,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 34,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2568.79,\n                \"growthAmount\": 10.47,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2579.26,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 853.4,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 857.69,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 857.69,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 35,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2579.26,\n                \"growthAmount\": 10.51,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2589.76,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 856.88,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 861.19,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 861.19,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 36,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2589.76,\n                \"growthAmount\": 10.55,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2600.32,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 860.37,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 864.7,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 864.7,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 37,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2600.32,\n                \"growthAmount\": 10.59,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2610.91,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 863.88,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 868.22,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 868.22,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 38,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2610.91,\n                \"growthAmount\": 10.64,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2621.55,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 867.4,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 871.76,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 871.76,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 39,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2621.55,\n                \"growthAmount\": 10.68,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2632.23,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 870.93,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 875.31,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 875.31,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 40,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2632.23,\n                \"growthAmount\": 10.72,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2642.95,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 874.48,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 878.87,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 878.87,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 41,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2642.95,\n                \"growthAmount\": 10.77,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2653.72,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 878.04,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 882.45,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 882.45,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 42,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2653.72,\n                \"growthAmount\": 10.81,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2664.53,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 881.62,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 886.05,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 886.05,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 43,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2664.53,\n                \"growthAmount\": 10.86,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2675.39,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 885.21,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 889.66,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 889.66,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 44,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2675.39,\n                \"growthAmount\": 10.9,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2686.29,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 888.82,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 893.28,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 893.28,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 45,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2686.29,\n                \"growthAmount\": 10.94,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2697.23,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 892.44,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 896.92,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 896.92,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 46,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2697.23,\n                \"growthAmount\": 10.99,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2708.22,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 896.07,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 900.58,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 900.58,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 47,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2708.22,\n                \"growthAmount\": 11.03,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2719.25,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 899.73,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 904.25,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 904.25,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 48,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2719.25,\n                \"growthAmount\": 11.08,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2730.33,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 903.39,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 907.93,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 907.93,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 49,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2730.33,\n                \"growthAmount\": 11.12,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2741.45,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 907.07,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 911.63,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 911.63,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 50,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2741.45,\n                \"growthAmount\": 11.17,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2752.62,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 910.77,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 915.34,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 915.34,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 51,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2752.62,\n                \"growthAmount\": 11.21,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2763.84,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 914.48,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 919.07,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 919.07,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 52,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2763.84,\n                \"growthAmount\": 11.26,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2775.1,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 918.2,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 922.82,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 922.82,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 53,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2775.1,\n                \"growthAmount\": 11.31,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2786.4,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 921.94,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 926.58,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 926.58,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 54,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2786.4,\n                \"growthAmount\": 11.35,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2797.76,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 925.7,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 930.35,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 930.35,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 55,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2797.76,\n                \"growthAmount\": 11.4,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2809.16,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 929.47,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 934.14,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 934.14,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 56,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2809.16,\n                \"growthAmount\": 11.44,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2820.6,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 933.26,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 937.95,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 937.95,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 57,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2820.6,\n                \"growthAmount\": 11.49,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2832.09,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 937.06,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 941.77,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 941.77,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 58,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2832.09,\n                \"growthAmount\": 11.54,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2843.63,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 940.88,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 945.61,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 945.61,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 59,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2843.63,\n                \"growthAmount\": 11.59,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2855.21,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 944.71,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 949.46,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 949.46,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            },\n            {\n                \"periodIndex\": 60,\n                \"currency\": \"GBP\",\n                \"openingAmount\": 2855.21,\n                \"growthAmount\": 11.63,\n                \"ongoingCharges\": {\n                    \"assetCharges\": [\n                        {\n                            \"assetId\": \"286D7\",\n                            \"assetName\": \"WH Smith PLC\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D8\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        },\n                        {\n                            \"assetId\": \"286D9\",\n                            \"assetName\": \"\",\n                            \"charges\": [],\n                            \"totalCharges\": 0\n                        }\n                    ],\n                    \"portfolioCharges\": []\n                },\n                \"totalCharges\": 0,\n                \"closingAmount\": 2866.85,\n                \"transactionCharges\": {\n                    \"Stamp\": {\n                        \"GBP\": 0\n                    },\n                    \"Dealing\": {\n                        \"GBP\": 0\n                    },\n                    \"PTM\": {\n                        \"GBP\": 0\n                    },\n                    \"total\": {\n                        \"GBP\": 0\n                    }\n                },\n                \"transactions\": [\n                    {\n                        \"assetId\": \"286D7\",\n                        \"amount\": 948.56,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D8\",\n                        \"amount\": 953.33,\n                        \"currency\": \"GBP\"\n                    },\n                    {\n                        \"assetId\": \"286D9\",\n                        \"amount\": 953.33,\n                        \"currency\": \"GBP\"\n                    }\n                ]\n            }\n        ],\n        \"investmentAmount\": 2250,\n        \"finalAmount\": 2866.85,\n        \"totalInitialCharges\": 0,\n        \"totalOngoingCharges\": 0,\n        \"totalTransactionCharges\": 3.75,\n        \"totalCharges\": 3.75,\n        \"totalChargesPercent\": 0,\n        \"totalGrowth\": 620.6\n    }\n}"}],"_postman_id":"f2308547-549d-4de1-9ab0-74c8955ee7ab"}],"id":"576bf830-56fd-4b00-a4ad-169de7be21da","description":"<p>A trade illustration is a summary of the cost and charges the investor can expect to pay based on the amount invested.</p>\n<p>You can generate a trade illustration for a single trade or group of trades using the below request. This will calculate the accumulated charges and growth over the specified period.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"83c101f9-e5ab-4f4b-92d8-9ecf3504825a"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"f3b94598-290d-4a85-b6c6-69b6d13c43c2"}}],"_postman_id":"576bf830-56fd-4b00-a4ad-169de7be21da"},{"name":"Product illustrations","item":[{"name":"GIA and ISA illustration","item":[{"name":"GIA and ISA illustration","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"illustrationId\", data.data.id);","pm.environment.set(\"clientId\", data.data.clientId)",""],"type":"text/javascript","id":"309906c9-9085-4d10-8c07-cb12f49d4bc5"}}],"id":"a3f6d7f3-ea10-4f4a-9b39-d71f35943378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"New Home\",\n    \"firmId\": \"SDEMO\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Jane Adviser\",\n        \"FCANumber\": \"290920\",\n        \"company\": \"ABC Advice Ltd\"\n    },\n    \"clientInfo\": {\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Flintstone\",\n        \"email\": \"wilmaflintstone56@gmail.com\",\n        \"dateOfBirth\": \"1983-10-01T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-08-23\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"ISA\",\n    \"withdrawals\": {\n        \"singleWithdrawals\": [],\n        \"regularWithdrawals\": []\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"adviserFixedCharge\": 0,\n        \"initialAdviserCharge\": {},\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 10000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2022-09-16\",\n                \"paymentAmount\": 23000,\n                \"contributor\": \"Transfer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2022-08-30\",\n                \"toDate\": \"2032-08-30\",\n                \"paymentAmount\": 600,\n                \"percentageGrowth\": 0.02,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/illustration/product","description":"<p>This command creates an illustration for a GIA or ISA, and returns an <code>illustrationId.</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>clientInfo</code> array <strong>Required</strong></p>\n<p>Contains details of the client</p>\n<hr />\n<p><code>clientInfo.id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the existing client account</p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>planLengthYear</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in years</p>\n<hr />\n<p><code>periods</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in months</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>GIA</code> or <code>ISA</code></p>\n<hr />\n<p><code>withdrawals</code> array</p>\n<p>Contains details of withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals</code> array</p>\n<p>Contains details of single withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.date</code> numerical string</p>\n<p>The date of the withdrawal is expected to be instructed</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.amount</code> float</p>\n<p>The withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals</code> array</p>\n<p>Contains details of regular withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.date</code> numerical string</p>\n<p>The first date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.endDate</code> numerical string</p>\n<p>The end date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.amount</code> float</p>\n<p>The regular withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.frequency</code></p>\n<p>The frequency of the regular withdrawal – this should be set to <code>Monthly</code></p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set <code>Monthly</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> array</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the adviser – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.discretionaryManagementFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the DFM – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> array</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.applyAdviserChargeAcrossPortfolio</code> boolean</p>\n<p>If true, amends the adviser charge to take into account otherPlatformHoldings when calculated on a monthly basis</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> array <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the payment amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Optional, but if present</strong> <strong><code>modelId</code></strong> <strong>must not be present</strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Optional, but if present</strong> <strong><code>transactions</code></strong> <strong>array must not be present</strong></p>\n<p>The unique identifier of the model the account will invested in</p>\n<hr />\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"de96d366-277a-4c46-8206-6c3706e5bae2","name":"GIA & ISA illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's ISA\",\n    \"firmId\": \"SECCI\",\n    \"clientInfo\": {\n        \"title\": \" \",\n        \"firstName\": \"Barney\",\n        \"surname\": \"Rubble\",\n        \"email\": \"barney.rubbbbble@email.com\",\n        \"dateOfBirth\": \"1975-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"startDate\": \"2022-08-29\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"ISA\",\n    \n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 5000\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 24 Aug 2022 13:54:49 GMT"},{"key":"x-amzn-RequestId","value":"64c55799-5165-480e-9b59-3f17cdade83c"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XXwSbEfcjoEF7Ew="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-Z5ay7+1cjuq2DOJ6LIZhf6U5+P4\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63062da8-007390575cb52cd30574701c;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 16f689172b396b7e266a396b6b5d6754.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD50-C2"},{"key":"X-Amz-Cf-Id","value":"3ja66DPkWeeRsBf3JwGiCOW3yY7deoTdEfDJMEVRCDjzjqIYQ98zcA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"63062da95dbd28be9107cce1\",\n        \"clientId\": \"026933B\",\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"}],"_postman_id":"a3f6d7f3-ea10-4f4a-9b39-d71f35943378"},{"name":"Joint GIA illustration","event":[{"listen":"test","script":{"id":"309906c9-9085-4d10-8c07-cb12f49d4bc5","exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"illustrationId\", data.data.id);","pm.environment.set(\"clientId\", data.data.clientId)",""],"type":"text/javascript","packages":{}}}],"id":"2214343f-49e0-4c48-9c33-d8e7a54c8aa3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"clientInfo\": {\n        \"title\": \"Mr\",\n        \"firstName\": \"Jake\",\n        \"surname\": \"Flintstone\",\n        \"email\": \"jakeflintstone1@example.com\",\n        \"dateOfBirth\": \"1986-10-01T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"additionalClientsInfo\": [{\n        \"title\": \"Mrs\",\n        \"firstName\": \"Joanna\",\n        \"surname\": \"Flintstone\",\n        \"email\": \"joannaflintstone@example.com\",\n        \"dateOfBirth\": \"1985-10-01T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    }],\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"GIA\",\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Adviser A\",\n        \"FCANumber\": \"12345\",\n        \"company\": \"Company A\"\n    },\n    \"startDate\": \"2022-08-23\",\n    \"nodeId\": \"0\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"GIA\",\n    \"withdrawals\": {\n        \"singleWithdrawals\": [\n            {\n                \"date\": \"2025-12-01\",\n                \"amount\": 1000\n            }\n        ],\n        \"regularWithdrawals\": [\n            {\n                \"date\": \"2025-12-01\",\n                \"endDate\": \"2028-12-01\",\n                \"amount\": 100,\n                \"percentageGrowth\": 0.001,\n                \"frequency\": \"Monthly\"\n            }\n        ]\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"adviserCharge\": 0.005,\n        \"discretionaryManagementCharge\": 0.0025,\n        \"initialAdviserCharge\": {\n            \"amount\": 10\n        },\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"otherPlatformHoldings\": 1000,\n    \"payments\": {\n        \"initialPayment\": 1000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"{{currentdate}}\",\n                \"paymentAmount\": 2000,\n                \"contributor\": \"Employee\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"{{currentdate}}\",\n                \"toDate\": \"2025-12-01\",\n                \"paymentAmount\": 250,\n                \"percentageGrowth\": 0.001,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"284JP\",\n            \"percentage\": 0.45,\n            \"currency\": \"GBP\"\n        },\n        {\n            \"assetId\": \"26MNS\",\n            \"percentage\": 0.35,\n            \"currency\": \"GBP\"\n        }\n    ]\n}"},"url":"{{apiRoute}}/illustration/product","description":"<p>This command creates an illustration for a Joint GIA, and returns an <code>illustrationId.</code></p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>clientInfo</code> array <strong>Required</strong></p>\n<p>Contains details of the client</p>\n<hr />\n<p><code>clientInfo.id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the existing client account</p>\n<hr />\n<p><code>additionalClientsInfo</code> array of <code>clientInfo</code> objects</p>\n<p>Contains details of the additional client/s. An existing client ID can be used as the <code>id</code> in any of the <code>additionalClientsInfo</code> objects.</p>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>planLengthYear</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in years</p>\n<hr />\n<p><code>periods</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in months</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>GIA</code></p>\n<hr />\n<p><code>withdrawals</code> array</p>\n<p>Contains details of withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals</code> array</p>\n<p>Contains details of single withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.date</code> numerical string</p>\n<p>The date of the withdrawal is expected to be instructed</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.amount</code> float</p>\n<p>The withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals</code> array</p>\n<p>Contains details of regular withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.date</code> numerical string</p>\n<p>The first date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.endDate</code> numerical string</p>\n<p>The end date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.amount</code> float</p>\n<p>The regular withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.frequency</code></p>\n<p>The frequency of the regular withdrawal – this should be set to <code>Monthly</code></p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set <code>Monthly</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> array</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the adviser – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.discretionaryManagementFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the DFM – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> array</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.applyAdviserChargeAcrossPortfolio</code> boolean</p>\n<p>If true, amends the adviser charge to take into account otherPlatformHoldings when calculated on a monthly basis</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> array <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Optional, but if present</strong> <strong><code>modelId</code></strong> <strong>must not be present</strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Optional, but if present</strong> <strong><code>transactions</code></strong> <strong>array must not be present</strong></p>\n<p>The unique identifier of the model the account will invested in</p>\n<hr />\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"213ac309-219a-461c-ad8b-d68079f14735","name":"Joint GIA illustration","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's Joint GIA\",\n    \"firmId\": \"SECCI\",\n    \"clientInfo\": {\n        \"title\": \"Mr\",\n        \"firstName\": \"Barney\",\n        \"surname\": \"Rubble\",\n        \"email\": \"barney.rubbbbble@email.com\",\n        \"dateOfBirth\": \"1975-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"additionalClientsInfo\": [{\n        \"title\": \"Mrs\",\n        \"firstName\": \"Wilma\",\n        \"surname\": \"Rubble\",\n        \"email\": \"wilma.rubbbbble@email.com\",\n        \"dateOfBirth\": \"1975-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    }],\n    \"startDate\": \"2022-08-29\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"GIA\",\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 5000\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 24 Aug 2022 13:54:49 GMT"},{"key":"x-amzn-RequestId","value":"64c55799-5165-480e-9b59-3f17cdade83c"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XXwSbEfcjoEF7Ew="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-Z5ay7+1cjuq2DOJ6LIZhf6U5+P4\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63062da8-007390575cb52cd30574701c;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 16f689172b396b7e266a396b6b5d6754.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD50-C2"},{"key":"X-Amz-Cf-Id","value":"3ja66DPkWeeRsBf3JwGiCOW3yY7deoTdEfDJMEVRCDjzjqIYQ98zcA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"63062da95dbd28be9107cce1\",\n        \"clientId\": \"026933B\",\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"},{"id":"c269bd31-3610-41c3-a34e-6e329dfa333f","name":"Joint GIA illustration using client ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"illustrationName\": \"Barney's Joint GIA\",\n    \"firmId\": \"SECCI\",\n    \"clientInfo\": {\n        \"title\": \"Mr\",\n        \"firstName\": \"Barney\",\n        \"surname\": \"Rubble\",\n        \"email\": \"barney.rubbbbble@email.com\",\n        \"dateOfBirth\": \"1975-07-23T00:00:00.000Z\",\n        \"clientType\": \"Individual\",\n        \"language\": \"en-GB\"\n    },\n    \"additionalClientsInfo\": [{\n        \"id\": \"C06XH3C\"\n    }],\n    \"startDate\": \"2022-08-29\",\n    \"nodeId\": \"11\",\n    \"planLengthYears\": 10,\n    \"periods\": 120,\n    \"wrapperType\": \"GIA\",\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"otherPlatformHoldings\": 0,\n    \"payments\": {\n        \"initialPayment\": 5000\n    },\n    \"transactions\": [\n        {\n            \"assetId\": \"27426\",\n            \"percentage\": 0.98,\n            \"currency\": \"GBP\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/illustration/product"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"103"},{"key":"Connection","value":"keep-alive"},{"key":"Date","value":"Wed, 24 Aug 2022 13:54:49 GMT"},{"key":"x-amzn-RequestId","value":"64c55799-5165-480e-9b59-3f17cdade83c"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"103"},{"key":"x-download-options","value":"noopen"},{"key":"x-amz-apigw-id","value":"XXwSbEfcjoEF7Ew="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"67-Z5ay7+1cjuq2DOJ6LIZhf6U5+P4\""},{"key":"X-Amzn-Trace-Id","value":"Root=1-63062da8-007390575cb52cd30574701c;Sampled=0"},{"key":"X-Cache","value":"Miss from cloudfront"},{"key":"Via","value":"1.1 16f689172b396b7e266a396b6b5d6754.cloudfront.net (CloudFront)"},{"key":"X-Amz-Cf-Pop","value":"IAD50-C2"},{"key":"X-Amz-Cf-Id","value":"3ja66DPkWeeRsBf3JwGiCOW3yY7deoTdEfDJMEVRCDjzjqIYQ98zcA=="}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"63062da95dbd28be9107cce1\",\n        \"clientId\": \"026933B\",\n        \"additionalClientIds\": [\n            \"C06DTYT\"\n        ],\n        \"firmId\": \"SECCI\",\n        \"status\": \"Calculating\"\n    }\n}"}],"_postman_id":"2214343f-49e0-4c48-9c33-d8e7a54c8aa3"},{"name":"Generate the illustration PDF","id":"e844a747-7f9a-4591-83db-2086b987330e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{illustrationId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"GENERATE_ILLUSTRATION_DOC\",\n    \"fileType\": \"ILLUSTRATION\"\n}"},"url":"{{apiRoute}}/files/generate","description":"<p>This command returns a successful array. It converts the projections calculated by the provided information into a PDF document that you can make available to the client or include in their suitability pack.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GENERATE_ILLUSTRATION_DOC</code></p>\n<hr />\n<p><code>fileType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ILLUSTRATION</code></p>\n<hr />\n","urlObject":{"path":["files","generate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e844a747-7f9a-4591-83db-2086b987330e"},{"name":"Download the illustration PDF","id":"d62a622d-d713-49a2-82e1-efbf7372505d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"clientId\": \"{{clientId}}\",\n  \"firmId\": \"{{firmId}}\",\n  \"id\": \"{{illustrationId}}\"\n}"},"url":"{{apiRoute}}/files/illustration","description":"<p>This command returns the <code>illustrationId</code> and the link to the PDF URL.</p>\n<p><strong>Please note: This should only be requested AFTER the \"generate illustration\" request has been made</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client that the illustration was generated for</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your platform</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n","urlObject":{"path":["files","illustration"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d62a622d-d713-49a2-82e1-efbf7372505d"}],"id":"b8a3dda6-29d6-41b8-8644-167d54aeeea2","description":"<p>You can use the illustration to show the potential returns on investments in a General Investment Account (GIA) and Individual Savings Account (ISA).</p>\n<p>The flow works as follows:</p>\n<ul>\n<li>Enter the product illustration details</li>\n<li>Create the <code>illustrationId</code></li>\n<li>Generate the illustration PDF</li>\n<li>Download the illustration PDF</li>\n</ul>\n","_postman_id":"b8a3dda6-29d6-41b8-8644-167d54aeeea2"},{"name":"Accumulation pension illustration","item":[{"name":"Accumulation illustration","id":"d1979ad5-1a00-4dab-90ca-df56c80506a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"illustrationName\": \"Pension Illustration\",\n    \"firmId\": \"{{firmId}}\",\n    \"adviserInfo\": {\n        \"adviserName\": \"Tom Jones\",\n        \"FCANumber\": \"123123\",\n        \"company\": \"Advisor Firm\"\n    },\n    \"clientInfo\": {\n        \"id\": \"{{clientId}}\"\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"startDate\": \"2020-06-17\",\n    \"nodeId\": \"0\",\n    \"retirementAge\": 75,\n    \"schemeProductId\": \"00002\", \n    \"wrapperType\": \"PENSION\",\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"periodType\": \"Monthly\",\n    \"currency\": \"GBP\",\n    \"fees\": {\n        \"enableTieredCharging\": false,\n        \"adviserCharge\": 0.0025,\n        \"adviserFixedCharge\": 0,\n        \"applyAdviserChargeAcrossPortfolio\": false,\n        \"discretionaryManagementCharge\": 0.0025,\n        \"discretionaryManagementFixedCharge\": 0,\n        \"initialAdviserCharge\": {\n            \"amount\": 500\n        },\n        \"initialDiscretionaryManagementCharge\": {}\n    },\n    \"payments\": {\n        \"initialPayment\": 150000,\n        \"singlePayments\": [\n            {\n                \"paymentDate\": \"2020-06-18\",\n                \"paymentAmount\": 10000,\n                \"contributor\": \"Employer\",\n                \"movementType\": \"In\"\n            }\n        ],\n        \"regularPayments\": [\n            {\n                \"frequency\": \"Monthly\",\n                \"fromDate\": \"2020-06-17\",\n                \"toDate\": \"2030-06-24\",\n                \"paymentAmount\": 312.5,\n                \"contributor\": \"Personal\",\n                \"percentageGrowth\": 0.01,\n                \"movementType\": \"In\"\n            }\n        ]\n    },\n    \"modelId\": \"{{modelId}}\"\n}"},"url":"{{apiRoute}}/illustration/product","description":"<p>This command creates an illustration Id to generate an illustration PDF and a skeletal client record. It returns an illustration Id and client Id.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>clientInfo</code> array <strong>Required</strong></p>\n<p>Contains details of the client – this is stored on the client skeletal client record</p>\n<hr />\n<p><code>clientInfo.clientId</code> string</p>\n<p>The unique identifier of the client that the illustrates relates to</p>\n<hr />\n<p><code>clientInfo.title</code> string</p>\n<p>The title of the client</p>\n<hr />\n<p><code>clientInfo.firstName</code> string <strong>Required</strong></p>\n<p>The first name of the client</p>\n<hr />\n<p><code>clientInfo.surname</code> string <strong>Required</strong></p>\n<p>The surname of the client</p>\n<hr />\n<p><code>clientInfo.email</code> string <strong>Required</strong></p>\n<p>The email of the client – this must be unique to other email addresses on the platform</p>\n<hr />\n<p><code>clientInfo.dateOfBirth</code> numerical string <strong>Required</strong></p>\n<p>The date of birth of the client</p>\n<hr />\n<p><code>clientInfo.clientType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Individual</code></p>\n<hr />\n<p><code>clientInfo.language</code> string <strong>Required</strong></p>\n<p>This should be set to <code>en-GB</code></p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>planLengthYear</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in years</p>\n<hr />\n<p><code>periods</code> integer <strong>Required</strong></p>\n<p>The length of the illustration in months</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>PENSION</code></p>\n<hr />\n<p><code>retirementAge</code> integer <strong>Required</strong></p>\n<p>The age the client is expected to retire</p>\n<hr />\n<p><code>schemeProductId</code> alphanumerical string <strong>Required</strong></p>\n<p>The unique identifier of the scheme product</p>\n<hr />\n<p><code>charges</code> array</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>periodType</code> string <strong>Required</strong></p>\n<p>This should be set <code>Monthly</code></p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> array</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.applyAdviserChargeAcrossPortfolio</code> boolean</p>\n<p>If true, amends the adviser charge to take into account otherPlatformHoldings when calculated on a monthly basis</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.adviserFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the adviser – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.discretionaryManagementFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the DFM – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> array</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> array <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Employer</code></td>\n<td>Payment made by the client's employer</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>transactions</code> array <strong>Optional, but if present</strong> <strong><code>modelId</code></strong> <strong>must not be present</strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Optional, but if present</strong> <strong><code>transactions</code></strong> <strong>array must not be present</strong></p>\n<p>The unique identifier of the model the account will be invested in</p>\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d1979ad5-1a00-4dab-90ca-df56c80506a0"},{"name":"Generate the illustration PDF","id":"1ac8d676-1000-466d-aa4e-60e6fc384517","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{illustrationId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"GENERATE_ILLUSTRATION_DOC\",\n    \"fileType\": \"ILLUSTRATION\"\n}"},"url":"{{apiRoute}}/files/generate","description":"<p>This command returns a successful array. It converts the projections calculated by the provided information into a PDF document that you can make available to the client or include in their suitability pack.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GENERATE_ILLUSTRATION_DOC</code></p>\n<hr />\n<p><code>fileType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ILLUSTRATION</code></p>\n<hr />\n","urlObject":{"path":["files","generate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1ac8d676-1000-466d-aa4e-60e6fc384517"},{"name":"Download the illustration PDF","id":"575e1ac1-ffdd-4829-93e8-429180fc8378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"clientId\": \"{{clientId}}\",\n  \"firmId\": \"{{firmId}}\",\n  \"id\": \"{{illustrationId}}\"\n}"},"url":"{{apiRoute}}/files/illustration","description":"<p>This command returns the <code>illustrationId</code> and the link to the PDF URL.</p>\n<p><strong>Please note: This should only be requested AFTER the generate illustration request has been made.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client that the illustration was generated for</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your platform</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n","urlObject":{"path":["files","illustration"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"575e1ac1-ffdd-4829-93e8-429180fc8378"}],"id":"44993752-63eb-4afe-83f6-cd96e5dc9d2f","description":"<p>This section shows you how to generate an accumulation pension illustration.</p>\n","_postman_id":"44993752-63eb-4afe-83f6-cd96e5dc9d2f"},{"name":"Drawdown pension illustration","item":[{"name":"Drawdown illustration","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"illustrationId\", data.data.id)"],"type":"text/javascript","id":"623e843b-eb18-4cf4-8733-1685ac7c506a"}},{"listen":"prerequest","script":{"exec":["pm.environment.set(\"clientEmail\", 'adultClient' + Math.floor(100000 + Math.random() * 900000) + '@example.com')","pm.environment.set(\"clientNiNumber\", 'AB' + Math.floor(100000 + Math.random() * 900000) + 'C')"],"type":"text/javascript","id":"aa106419-d684-4a1b-b54d-00af107d625d"}}],"id":"43a70fc1-67c7-478c-8c76-24917487f434","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{        \n\t\"illustrationName\": \"Drawdown Illustration\",\n\t\"firmId\": \"{{firmId}}\",\n\t\"nodeId\": \"0\",\n    \"schemeProductId\": \"00002\",\n\t\"wrapperType\": \"PENSION\",\n    \"wrapperStatus\": \"DRAWDOWN\",\n    \"calculating\": \"ASYNCHRONOUS\",\n    \"drawdown\": {\n        \"fundsNotInDrawdown\": 10000,\n        \"drawdownMethod\": \"FAD\"\n    },\n    \"charges\": {\n        \"tradingCharge\": true,\n        \"platformCharge\": true,\n        \"productCharge\": true\n    },\n    \"withdrawals\": {\n        \"singleWithdrawals\": [{\n            \"date\": \"2020-01-01\",\n            \"amount\": 1000,\n            \"type\": \"PCLS\"\n        }],\n        \"regularWithdrawals\": [{\n            \"date\": \"2022-01-01\",\n            \"amount\": 100,\n            \"type\": \"FAD\",\n            \"frequency\": \"Monthly\",\n            \"percentageGrowth\": 0\n        }] \n    },\n\t\"currency\": \"GBP\",\n\t\"startDate\": \"2020-01-01\",\n\t\"salary\": 30000,\n\t\"salaryGrowth\": 0.05,\n\t\"fees\": {\n\t    \"adviserCharge\": 0.05,\n        \"adviserFixedCharge\": 0,\n        \"applyAdviserChargeAcrossPortfolio\": false,\n\t    \"discretionaryManagementCharge\": 0.03,\n\t    \"initialDiscretionaryManagementCharge\": {\n            \"amount\": 100\n\t    },\n\t    \"initialAdviserCharge\": {\n\t        \"percent\": 0.04\n\t    }\n\t},\n\t\"payments\": {\n\t  \"initialPayment\": 100000,\n\t  \"singlePayments\": [\n\t    {\n\t      \"paymentDate\": \"2021-01-02\",\n\t      \"paymentAmount\": 20000,\n\t      \"contributor\": \"Employee\",\n\t      \"movementType\": \"In\"\n\t    }\n\t  ],\n\t  \"regularPayments\": [\n\t    {\n\t      \"fromDate\": \"2020-01-12\",\n\t      \"toDate\": \"2030-01-12\",\n\t      \"percentageGrowth\": 0.02,\n\t      \"paymentAmount\": 500,\n\t      \"frequency\": \"Monthly\",\n\t      \"contributor\": \"Employee\",\n\t      \"movementType\": \"In\"\n\t    }\n\t  ]\n\t},\n\t\"transactions\": [\n\t  {\n\t    \"assetId\": \"26MLS\",\n\t    \"amount\": 1000,\n\t    \"currency\": \"GBP\"\n\t  }, {\n\t    \"assetId\": \"27MLS\",\n\t    \"amount\": 1000,\n\t    \"currency\": \"GBP\"\n\t  }, {\n\t    \"assetId\": \"28MLS\",\n\t    \"amount\": 1000,\n\t    \"currency\": \"GBP\"\n\t  }\n\t],\n\t\"clientInfo\": {\n\t  \"title\": \"Mr\",\n\t  \"firstName\": \"Colin\",\n\t  \"surname\": \"Potato\",\n\t  \"email\": \"{{clientEmail}}\",\n\t  \"dateOfBirth\": \"1960-01-01\",\n\t  \"language\": \"en-GB\",\n\t  \"clientType\": \"Client\"\n\t},\n\t\"retirementAge\": 60\n}"},"url":"{{apiRoute}}/illustration/product","description":"<p>This command creates an illustration Id to generate an illustration PDF and a skeletal client record. It returns an illustration Id and client Id.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>calculating</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ASYNCHRONOUS</code></p>\n<hr />\n<p><code>illustrationName</code> string <strong>Required</strong></p>\n<p>The name of the illustration – this will show on the PDF title page</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier for the firm</p>\n<hr />\n<p><code>adviserInfo</code> array</p>\n<p>Contains information of the adviser – this will show on the PDF title page</p>\n<hr />\n<p><code>adviserInfo.adviserName</code> string</p>\n<p>The name of the adviser</p>\n<hr />\n<p><code>adviserInfo.FCANumber</code> numerical string</p>\n<p>The Financial Reference Number of the advice firm</p>\n<hr />\n<p><code>adviserInfo.company</code> string</p>\n<p>The name of the advice firm</p>\n<hr />\n<p><code>clientInfo</code> object <strong>Required</strong></p>\n<p>Contains details of the client – this is stored on the client skeletal client record.</p>\n<p>Either the <code>id</code> is provided if the illustration is for an existing client,<br />Or the other client data if this is for a new client (this will generate a skeletal client record)</p>\n<hr />\n<p><code>clientInfo.id</code> string</p>\n<p>The unique identifier of the client that the illustrates relates to</p>\n<hr />\n<p><code>clientInfo.title</code> string</p>\n<p>The title of the client</p>\n<hr />\n<p><code>clientInfo.firstName</code> string <strong>Required</strong></p>\n<p>The first name of the client</p>\n<hr />\n<p><code>clientInfo.surname</code> string <strong>Required</strong></p>\n<p>The surname of the client</p>\n<hr />\n<p><code>clientInfo.email</code> string <strong>Required</strong></p>\n<p>The email of the client – this must be unique to other email addresses on the platform</p>\n<hr />\n<p><code>clientInfo.dateOfBirth</code> numerical string <strong>Required</strong></p>\n<p>The date of birth of the client</p>\n<hr />\n<p><code>clientInfo.clientType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>Individual</code></p>\n<hr />\n<p><code>clientInfo.language</code> string <strong>Required</strong></p>\n<p>This should be set to <code>en-GB</code></p>\n<hr />\n<p><code>startDate</code> numerical string <strong>Required</strong></p>\n<p>The start date of the illustration</p>\n<hr />\n<p><code>nodeId</code> numerical string <strong>Required</strong></p>\n<p>The unique identifier of the node the client record is attached</p>\n<hr />\n<p><code>wrapperType</code> string <strong>Required</strong></p>\n<p>This will be set to <code>PENSION</code></p>\n<hr />\n<p><code>wrapperStatus</code> string <strong>Required</strong></p>\n<p>The is to be set to <code>DRAWDOWN</code></p>\n<hr />\n<p><code>drawdown</code> object <strong>Required</strong></p>\n<p>Contains details pertaining to the drawdown.</p>\n<hr />\n<p><code>drawdown.drawdownMethod</code> string <strong>Required</strong></p>\n<p>The method of drawdown being taken.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>FAD</code></td>\n<td>Flexi access drawdown</td>\n</tr>\n<tr>\n<td><code>UFPLS</code></td>\n<td>Uncrystallised funds pension lump sum</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>drawdown.fundsNotInDrawdown</code></p>\n<p>The amount of the illustrated amount that begins uncrystallised. This must be less than or equal to <code>payments.initialPayment</code></p>\n<hr />\n<p><code>retirementAge</code> integer <strong>Required</strong></p>\n<p>The field is required but the illustration will run to 99th birthday or when funds are depleted.</p>\n<hr />\n<p><code>schemeProductId</code> alphanumerical string <strong>Required</strong></p>\n<p>The unique identifier of the scheme product</p>\n<hr />\n<p><code>charges</code> object</p>\n<p>Contains details of charges taken against the plan – default to <code>true</code> if not included</p>\n<hr />\n<p><code>charges.tradingCharge</code> boolean</p>\n<p>Indicates whether you want the charges trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.platformCharge</code> boolean</p>\n<p>Indicates whether you want the charges platform charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>charges.productCharge</code> boolean</p>\n<p>Indicates whether you want the product trading charges set against the node applied to the illustration – <code>true</code> means charges apply</p>\n<hr />\n<p><code>currency</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GBP</code></p>\n<hr />\n<p><code>fees</code> object</p>\n<p>Contains details of adviser and DFM fees applied to the account</p>\n<hr />\n<p><code>fees.enableTieredCharging</code> boolean</p>\n<p>Indicates whether the ongoing adviser charge is tiered</p>\n<hr />\n<p><code>fees.adviserTieredCharges</code> array</p>\n<p>Contains details of tiered ongoing adviser charge</p>\n<hr />\n<p><code>fees.applyAdviserChargeAcrossPortfolio</code> boolean</p>\n<p>If true, amends the adviser charge to take into account otherPlatformHoldings when calculated on a monthly basis</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers</code> array</p>\n<p>Contains details of the tiers for the ongoing adviser charge – each tier will have a separate object within the array</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.toAmount</code> float</p>\n<p>The top amount of the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.rate</code> float</p>\n<p>The adviser charge to be applied to the tier</p>\n<hr />\n<p><code>fees.adviserTieredCharges.tiers.fromAmount</code> float</p>\n<p>The start amount of the tier – this should be set to <code>0</code> for the first tier</p>\n<hr />\n<p><code>fees.adviserFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the adviser – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.discretionaryManagementCharge</code> float</p>\n<p>The DFM charge applied – note this does not pre-populate from the selected model</p>\n<hr />\n<p><code>fees.discretionaryManagementFixedCharge</code> float</p>\n<p>The annual fixed charge applied by the DFM – this is an optional field, can be left at 0 or left out if not required</p>\n<hr />\n<p><code>fees.initialAdviserCharge</code> object</p>\n<p>Contains details of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.amount</code> float</p>\n<p>The monetary amount of the initial adviser charge</p>\n<hr />\n<p><code>fees.initialAdviserCharge.percent</code> float</p>\n<p>The percentage amount of the initial adviser charge</p>\n<hr />\n<p><code>otherPlatformHoldings</code> float</p>\n<p>This refers to other assets held on the platform not in this wrapper, which will be factored into the platform charge applied</p>\n<hr />\n<p><code>payments</code> object <strong>Required</strong></p>\n<p>Contains details of payment contributions</p>\n<hr />\n<p><code>payments.initialPayment</code> float <strong>Required</strong></p>\n<p>The initial amount in the opening assets</p>\n<hr />\n<p><code>payments.singlePayments</code> array</p>\n<p>Contains details of single payments – each payment will have an object within the array</p>\n<hr />\n<p><code>payments.singlePayments.paymentDate</code> numerical string</p>\n<p>The date the single payment is made</p>\n<hr />\n<p><code>payments.singlePayments.paymentAmount</code> float</p>\n<p>The single payment amount</p>\n<hr />\n<p><code>payments.singlePayments.contributor</code> string</p>\n<p>The type of contribution</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>Employee</code></td>\n<td>Payment made by the client</td>\n</tr>\n<tr>\n<td><code>Employer</code></td>\n<td>Payment made by the client's employer</td>\n</tr>\n<tr>\n<td><code>Transfer</code></td>\n<td>Transfer made from an external provider</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>payments.singlePayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>payments.regularPayments</code> array</p>\n<p>Contains details of regular payments</p>\n<hr />\n<p><code>payments.regularPayments.frequency</code> string</p>\n<p>This will be set to <code>Monthly</code></p>\n<hr />\n<p><code>payments.regularPayments.fromDate</code> numerical string</p>\n<p>The first date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.toDate</code> numerical string</p>\n<p>The end date of the regular payment</p>\n<hr />\n<p><code>payments.regularPayments.paymentAmount</code> float</p>\n<p>The regular payment amount</p>\n<hr />\n<p><code>payments.regularPayments.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>payments.regularPayments.movementType</code> string</p>\n<p>This will be set to <code>In</code></p>\n<hr />\n<p><code>withdrawals</code> object <strong>required</strong></p>\n<p>Contains details of withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals</code> array</p>\n<p>Contains details of single withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.date</code> numerical string</p>\n<p>The date of the withdrawal is expected to be instructed</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.amount</code> float</p>\n<p>The withdrawal amount</p>\n<hr />\n<p><code>withdrawals.singleWithdrawals.type</code> string</p>\n<p>The type of withdrawal.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>FAD</code></td>\n<td>Gross taxable income to the client</td>\n</tr>\n<tr>\n<td><code>PCLS</code></td>\n<td>Tax free pension commencement lump sum to the client</td>\n</tr>\n<tr>\n<td><code>UFPLS</code></td>\n<td>Gross uncrystallised funds pension lump sum to the client</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>withdrawals.regularWithdrawals</code> array</p>\n<p>Contains details of regular withdrawals anticipated</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.date</code> numerical string</p>\n<p>The first date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.endDate</code> numerical string</p>\n<p>The end date of the regular withdrawal</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.amount</code> float</p>\n<p>The regular withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.percentageGrowth</code> float</p>\n<p>The expected percentage growth of the withdrawal amount</p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.frequency</code></p>\n<p>The frequency of the regular withdrawal – this should be set to <code>Monthly</code></p>\n<hr />\n<p><code>withdrawals.regularWithdrawals.type</code> string</p>\n<p>The type of withdrawal.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Enum value</strong></th>\n<th><strong>Description</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>FAD</code></td>\n<td>Gross taxable income to the client</td>\n</tr>\n<tr>\n<td><code>PCLS</code></td>\n<td>Tax free pension commencement lump sum to the client</td>\n</tr>\n<tr>\n<td><code>UFPLS</code></td>\n<td>Gross uncrystallised funds pension lump sum to the client</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<p><code>transactions</code> array <strong>Optional, but if present</strong> <strong><code>modelId</code></strong> <strong>must not be present</strong></p>\n<p>Contains details of the assets the account will be invested in – each asset to be invested should have an object within the array</p>\n<hr />\n<p><code>transactions.assetId</code> string</p>\n<p>The unique identifier of the asset</p>\n<hr />\n<p><code>transactions.percentage</code> float</p>\n<p>The percentage of the holdings to be invested in the asset</p>\n<hr />\n<p><code>transactions.currency</code> string</p>\n<p>This will be set to <code>GBP</code></p>\n<hr />\n<p><code>modelId</code> string <strong>Optional, but if present</strong> <strong><code>transactions</code></strong> <strong>array must not be present</strong></p>\n<p>The unique identifier of the model the account will be invested in</p>\n","urlObject":{"path":["illustration","product"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"43a70fc1-67c7-478c-8c76-24917487f434"},{"name":"Generate the illustration PDF","id":"132eedd5-2625-4900-a068-814f5641ca25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{illustrationId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"type\": \"GENERATE_ILLUSTRATION_DOC\",\n    \"fileType\": \"ILLUSTRATION\"\n}"},"url":"{{apiRoute}}/files/generate","description":"<p>This command returns a successful array. It converts the projections calculated by the provided information into a PDF document that you can make available to the client or include in their suitability pack.</p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your firm</p>\n<hr />\n<p><code>type</code> string <strong>Required</strong></p>\n<p>This should be set to <code>GENERATE_ILLUSTRATION_DOC</code></p>\n<hr />\n<p><code>fileType</code> string <strong>Required</strong></p>\n<p>This should be set to <code>ILLUSTRATION</code></p>\n<hr />\n","urlObject":{"path":["files","generate"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"132eedd5-2625-4900-a068-814f5641ca25"},{"name":"Download the illustration PDF","id":"cb18c43f-d24f-4f98-969e-a5243d118454","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n  \"clientId\": \"{{clientId}}\",\n  \"firmId\": \"{{firmId}}\",\n  \"id\": \"{{illustrationId}}\"\n}"},"url":"{{apiRoute}}/files/illustration","description":"<p>This command returns the <code>illustrationId</code> and the link to the PDF URL.</p>\n<p><strong>Please note: This should only be requested AFTER the \"generate illustration\" request has been made.</strong></p>\n<h4 id=\"parameters\">Parameters</h4>\n<hr />\n<p><code>clientId</code> string <strong>Required</strong></p>\n<p>The unique identifier of the client that the illustration was generated for</p>\n<hr />\n<p><code>firmId</code> string <strong>Required</strong></p>\n<p>The unique identifier of your platform</p>\n<hr />\n<p><code>id</code> string <strong>Required</strong></p>\n<p>The unique identifier of the illustration</p>\n<hr />\n","urlObject":{"path":["files","illustration"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"cb18c43f-d24f-4f98-969e-a5243d118454"}],"id":"18fbea90-c4e7-4b1a-a2e4-c3d455654969","description":"<p>This section shows you how to generate a drawdown pension illustration.</p>\n","_postman_id":"18fbea90-c4e7-4b1a-a2e4-c3d455654969"},{"name":"Retrieve illustrations","item":[{"name":"Retrieve the illustration status","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"modelId\", data.data.id)"],"type":"text/javascript","id":"8d4193c3-1768-456e-8add-6b11d58d7d7a"}}],"id":"14601c9b-e427-4e38-9dd3-ca82a4683e89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/illustration/product/{{firmId}}?id={{illustrationId}}&status=Pending","description":"","urlObject":{"path":["illustration","product","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"id","value":"{{illustrationId}}"},{"key":"status","value":"Pending"}],"variable":[]}},"response":[],"_postman_id":"14601c9b-e427-4e38-9dd3-ca82a4683e89"},{"name":"Retrieve the illustration details","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"modelId\", data.data.id)"],"type":"text/javascript","id":"ae449605-400b-44d4-a2aa-9e97b1c42658"}}],"id":"221b6feb-eed1-4a59-a0e9-78dfe0b68d43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/illustration/product/{{firmId}}/{{illustrationId}}","description":"","urlObject":{"path":["illustration","product","{{firmId}}","{{illustrationId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"221b6feb-eed1-4a59-a0e9-78dfe0b68d43"},{"name":"Retrieve all illustrations","id":"4098a59a-7993-4ffa-b9ea-57a4fed45e48","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Authorization"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/illustration/product/{{firmId}}?page=1&pageSize=20","description":"<p>This command will retrieve all illustrations generated on the firm node.</p>\n<p><strong>Please note: We have paginated this response to avoid the request from retrieving a large number of illustrations all at once.</strong></p>\n","urlObject":{"path":["illustration","product","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"key":"page","value":"1"},{"key":"pageSize","value":"20"}],"variable":[]}},"response":[],"_postman_id":"4098a59a-7993-4ffa-b9ea-57a4fed45e48"}],"id":"92df12a8-8a2b-4fdb-a087-e39c9aec8367","description":"<p>This section will show you how to retrieve client illustrations.</p>\n","_postman_id":"92df12a8-8a2b-4fdb-a087-e39c9aec8367"}],"id":"18b74fcf-94b5-4a07-95a5-e5eb354cd0c0","description":"<p>Our illustration tool makes it easy for your users to produce a simple, personalised illustration. Product illustrations can be generated for GIAs, ISAs and both accumulation and drawdown pensions.</p>\n<p>You can create illustrations for new or existing clients. The new client flow can be found under <strong>Client onboarding.</strong></p>\n<p>The length of an illustration is dependent on your client's wrapper type:</p>\n<ul>\n<li><p>For <strong>GIAs and ISAs</strong>, the length of the illustration is based on the number of periods or \"months\"</p>\n</li>\n<li><p>For <strong>accumulation pensions</strong>, the length of the illustration is based on the client's date of retirement, minus the current date. If the date of retirement is in the past then the length of the illustration will be 10 years (120 months)</p>\n</li>\n<li><p>For <strong>drawdown pensions,</strong> the length of the illustration is based on the age the client turns 100 minus the current age of the client</p>\n</li>\n</ul>\n<p>This section covers:</p>\n<ul>\n<li><p>How to create an illustration for a GIA or ISA</p>\n</li>\n<li><p>How to create an illustration for a accumulation pension</p>\n</li>\n<li><p>How to create an illustration for a drawdown pension</p>\n</li>\n<li><p>How to generate the illustration PDF</p>\n</li>\n<li><p>How to download the illustration PDF</p>\n</li>\n<li><p>How to generate product illustrations</p>\n</li>\n</ul>\n","_postman_id":"18b74fcf-94b5-4a07-95a5-e5eb354cd0c0"},{"name":"Regulatory documents","item":[{"name":"Contract notes","item":[{"name":"Generate a contract note URL","id":"51390ea9-bb5b-4632-aab0-51e98bb9d55e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{documentId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{id}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/contractnote","description":"<p>This command generates an investor document URL for your client. This returns an <code>Id</code> and URL which can be downloaded to your document store (AWS).</p>\n<p><strong>Please note: each document type has a specific</strong> <strong><code>/files</code></strong> <strong>endpoint. You will first have to generate a URL and then use this to download the document.</strong></p>\n<p>Messages will have a <code>messageType</code>which will correspond to an endpoint that can be used to retrieve the document. These are formatted in the following way:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Document type</strong></th>\n<th><strong>/files endpoint URL format</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTRACT_NOTE</td>\n<td>contractnote</td>\n</tr>\n<tr>\n<td>QUARTERLY_STATEMENT</td>\n<td>quarterlystatement</td>\n</tr>\n<tr>\n<td>TAX_STATEMENT</td>\n<td>taxstatement</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE</td>\n<td>advancedirectdebitmandatenotice</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION.</td>\n<td>advancedirectdebitmandateconfirmation</td>\n</tr>\n<tr>\n<td>PENSION_CANCELLATION_LETTER</td>\n<td>pensioncancellationletter</td>\n</tr>\n<tr>\n<td>PENSION_TRANSFER_CANCELLATION_LETTER</td>\n<td>pensiontransfercancellationletter</td>\n</tr>\n<tr>\n<td>ILLUSTRATION</td>\n<td>illustration</td>\n</tr>\n<tr>\n<td>PENSION_PAYSLIP</td>\n<td>pensionpayslip</td>\n</tr>\n<tr>\n<td>SMPI_ANNUAL_STATEMENT</td>\n<td>smpiannualstatement</td>\n</tr>\n<tr>\n<td>RETIREMENT_PACK</td>\n<td>retirementpack</td>\n</tr>\n<tr>\n<td>FLEXI_ACCESS_NOTIFICATION</td>\n<td>flexiaccessnotification</td>\n</tr>\n<tr>\n<td>PENSION_SAVINGS_STATEMENT</td>\n<td>pensionsavingsstatement</td>\n</tr>\n<tr>\n<td>BENEFIT_CRYSTALLISATION_EVENT_STATEMENT</td>\n<td>bcestatement</td>\n</tr>\n</tbody>\n</table>\n</div><p>You can get the specific <code>documentId</code> for the document you want from the 'id' in the messages returned from the 'message' endpoint (see <strong>Retrieve client messages</strong> below).</p>\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>documentId</code> string<br />The unique identifier for a specific investor document</p>\n<hr />\n<p><code>firmId</code> string<br />The unique identifier for a firm</p>\n<hr />\n<p><code>clientId</code> string<br />The unique identifier for a firm</p>\n<hr />\n","urlObject":{"path":["files","contractnote"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f6cc3b8a-c89d-4369-9399-290e948dee7f","name":"Generate a contract note URL","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{documentId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{id}}\"\n}","options":{"raw":{"language":"json"}}},"url":"https://pfolio-api-staging.seccl.tech/files/contractnote"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00006127K\",\n        \"url\": \"https://staging-firm-private-assets-seccl.s3.eu-west-1.amazonaws.com/SECCI/CONTRACT_NOTE/026DJHB/00006127K.pdf?AWSAccessKeyId=ExampleKey&Expires=1663226263&Signature=ExampleSignature&x-amz-security-token=ExampleToken\"\n    }\n}"}],"_postman_id":"51390ea9-bb5b-4632-aab0-51e98bb9d55e"},{"name":"Search for a contract note","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"messageId\", data.data[0].id)"],"type":"text/javascript","id":"b5783677-3270-4bf6-a875-b85cbb5d1719"}}],"id":"9917b75a-4095-4db1-b1a5-3821d88f74cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/message/{{firmId}}/?page=1&pageSize=10&clientId={{clientId}}&messageType=CONTRACT_NOTE&fromDate=&toDate=&status=&accountId={{accountId}}","description":"<p>This command retrieves all contract notes available in the client message hub. This response is paginated, and you can filter it by using the query parameters below.</p>\n","urlObject":{"path":["message","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The \"page\" number of the results returned in the response.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The size of the results \"page\" returned in the response.</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>The <code>id</code> of the account to which the message relates.</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"description":{"content":"<p>The type of message. </p>\n","type":"text/plain"},"key":"messageType","value":"CONTRACT_NOTE"},{"description":{"content":"<p>The start date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"fromDate","value":""},{"description":{"content":"<p>The end date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"toDate","value":""},{"description":{"content":"<p>The status of the message. One of <code>ACTIVE</code>, <code>ARCHIVED</code>, <code>DELETED</code>, <code>PENDING</code> or <code>READ</code>.</p>\n","type":"text/plain"},"key":"status","value":""},{"description":{"content":"<p>The <code>id</code> of the account to which the message relates.</p>\n","type":"text/plain"},"key":"accountId","value":"{{accountId}}"}],"variable":[]}},"response":[],"_postman_id":"9917b75a-4095-4db1-b1a5-3821d88f74cb"}],"id":"b7eb3dbc-5e39-440e-8ad3-b1f34be11f98","description":"<p>Every time a trade is completed, you are required to show clients a contract note for that trade. You can obtain the contract notes from our API and display those in your client's message hub.</p>\n<p>Contract note generation after a trade is dependent on your application receiving two webhook notifications at the same time:</p>\n<ul>\n<li>A reconciled payment changing from <code>waiting</code> to <code>completed</code> status</li>\n<li>An order expectation changing from <code>pending</code> to <code>completed</code> status</li>\n</ul>\n<p>At this point, the <code>transactionId</code> for the order is used to generate a contract note using the above <code>POST</code> request. Similarly, the <strong>position</strong> of the account is updated to show the completed order by retrieving the account summary.</p>\n<p>The result is a successful trading experience for the client, and a detailed PDF in their message hub. For more information on webhooks, check out the <strong>Outgoing webhooks</strong> section.</p>\n","_postman_id":"b7eb3dbc-5e39-440e-8ad3-b1f34be11f98"},{"name":"Valuation statements","item":[{"name":"Generate a valuation statement","id":"34a1da63-8c93-45fa-bf67-d767c16bcc1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n\t\"eventType\": \"Valuation Statement\",\n\t\"fromDate\": \"2020-04-01\",\n\t\"toDate\": \"2020-08-01\",\n\t\"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event","description":"<p>This command generates a valuation statement, and returns an <code>id</code> (<code>documentId</code>).</p>\n<p>The examples provided under this request shows what an annual, quarterly and ad-hoc valuation statement look like.</p>\n","urlObject":{"path":["event"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2d2f68e9-3b2d-4291-bb44-df96c4705df0","name":"Generate a quarterly valuation statement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n\t\"eventType\": \"Valuation Statement\",\n\t\"fromDate\": \"2022-04-10\",\n\t\"toDate\": \"2022-07-10\",\n\t\"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00PG7S\"\n    }\n}"},{"id":"9058a3f2-0069-4a1a-8bbd-ff87d8965780","name":"Generate an annual valuation statement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n\t\"eventType\": \"Valuation Statement\",\n\t\"fromDate\": \"2021-04-01\",\n\t\"toDate\": \"2022-04-01\",\n\t\"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00QG1S\"\n    }\n}"},{"id":"397b17e1-528b-4d2e-918f-9496b2f6b437","name":"Generate an ad-hoc valuation statement","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n\t\"eventType\": \"Valuation Statement\",\n\t\"fromDate\": \"2022-03-01\",\n\t\"toDate\": \"2022-08-01\",\n\t\"clientId\": \"{{clientId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event"},"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00RG4U\"\n    }\n}"},{"id":"eb1895cd-dc72-4b5f-b201-fd93996d7548","name":"Generate an ad-hoc valuation statement - Force Eligibility Check","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n\t\"firmId\": \"{{firmId}}\",\n\t\"eventType\": \"Valuation Statement\",\n\t\"fromDate\": \"2022-03-01\",\n\t\"toDate\": \"2022-08-01\",\n\t\"clientId\": \"{{clientId}}\",\n\t\"forceEligibilityCheck\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/event"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"00RG4U\"\n    }\n}"}],"_postman_id":"34a1da63-8c93-45fa-bf67-d767c16bcc1a"},{"name":"Retrieve document URL","id":"231efdd0-acd4-43cd-b484-6d0e093cabe7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"id\": \"{{documentId}}\",\n    \"firmId\": \"{{firmId}}\",\n    \"clientId\": \"{{id}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/files/valuationstatement","description":"<p>You can use this route to receive document URLs for your client.</p>\n<p>Messages will have a <code>messageType</code> (as indicated below), which will correspond to an endpoint that can be used to retrieve the document.</p>\n<p>You can retrieve the specific <code>documentId</code> for the document you want from the 'Id' in the messages returned from the 'message' endpoint (see <strong>Retrieve client messages</strong> above).</p>\n<h4 id=\"messagetype-endpoint\">messageType: endpoint</h4>\n<ul><li><div>ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE: advancedirectdebitmandatenotice</div></li><li><div>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION: advancedirectdebitmandateconfirmation</div></li><li><div>BENEFIT_CRYSTALLISATION_EVENT_STATEMENT: bcestatement</div></li><li><div>CONTRACT_NOTE: contractnote</div></li><li><div>FLEXI_ACCESS_NOTIFICATION: flexiaccessnotification</div></li><li><div>PENSION_PAYSLIP: pensionpayslip</div></li><li><div>PENSION_CANCELLATION_LETTER: pensioncancellationletter</div></li><li><div>PENSION_TRANSFER_CANCELLATION_LETTER: pensiontransfercancellationletter</div></li><li><div>PENSION_SAVINGS_STATEMENT: pensionsavingsstatement</div></li><li><div>QUARTERLY_STATEMENT: quarterlystatement</div></li><li><div>ILLUSTRATION: illustration</div></li><li><div>RETIREMENT_PACK: retirementpack</div></li><li><div>SMPI_ANNUAL_STATEMENT: smpiannualstatement</div></li><li><div>TAX_STATEMENT: taxstatement</div></li><li><div>VALUATION_STATEMENT: valuationstatement</div></li></ul>","urlObject":{"path":["files","valuationstatement"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"231efdd0-acd4-43cd-b484-6d0e093cabe7"},{"name":"Search for a valuation statement","event":[{"listen":"test","script":{"exec":["var data = pm.response.json()","console.log(data)","pm.environment.set(\"messageId\", data.data[0].id)"],"type":"text/javascript","id":"f61d0c83-1480-4fbe-a93c-f1750b364408"}}],"id":"2ae4bdaf-e01e-4fc2-b83d-0ed482b608fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/message/{{firmId}}/?page=1&pageSize=10&clientId={{clientId}}&messageType=VALUATION_STATEMENT&fromDate=&toDate=&status=","description":"<p>This command retrieves all contract notes available in the client message hub. This response is paginated. You can filter the response by using the query parameters below.</p>\n","urlObject":{"path":["message","{{firmId}}",""],"host":["{{apiRoute}}"],"query":[{"description":{"content":"<p>The \"page\" number of the results returned in the response.</p>\n","type":"text/plain"},"key":"page","value":"1"},{"description":{"content":"<p>The size of the results \"page\" returned in the response.</p>\n","type":"text/plain"},"key":"pageSize","value":"10"},{"description":{"content":"<p>The <code>id</code> of the account to which the message relates.</p>\n","type":"text/plain"},"key":"clientId","value":"{{clientId}}"},{"description":{"content":"<p>The type of message. </p>\n","type":"text/plain"},"key":"messageType","value":"VALUATION_STATEMENT"},{"description":{"content":"<p>The start date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"fromDate","value":""},{"description":{"content":"<p>The end date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"toDate","value":""},{"description":{"content":"<p>The status of the message. One of <code>ACTIVE</code>, <code>ARCHIVED</code>, <code>DELETED</code>, <code>PENDING</code> or <code>READ</code>.</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[],"_postman_id":"2ae4bdaf-e01e-4fc2-b83d-0ed482b608fe"}],"id":"3e5675a6-986b-4696-91a0-a26e800ec295","description":"<p>Valuation statements are generated by Seccl on a quarterly and annual basis. This is a regulatory requirement and can be found under <a href=\"https://www.handbook.fca.org.uk/handbook/COBS/16/3.html\">Periodic reporting</a> in the FCA handbook.</p>\n<ul>\n<li><p>Quarterly statements are generated on the <strong>10th of the first month of the new quarter</strong> for the previous <strong>calendar</strong> quarter</p>\n</li>\n<li><p>Annual valuation statements reflect the valuation statement of the <strong>past financial year</strong> and are generated on <strong>the 10th of the following month (10th May)</strong></p>\n</li>\n</ul>\n<h3 id=\"eligibility\">Eligibility</h3>\n<p>Quarterly and annual statements are generated by making a bulk request to generate all statements for a firm. Before issuing statemetns, however, the system will look through the clients and generate a statement for every eligible client, i.e. clients who have a non-zero valuation during the period or any transactions during the period. (Note that by default this check is not done for ad-hoc statements.</p>\n<h2 id=\"ad-hoc-valuation-statements\">Ad-hoc valuation statements</h2>\n<p>You (as the firm) can request ad-hoc valuation statements via the API. A client may request specific time-framed valuation statement for events such as mortgages.</p>\n<p>Ad hoc statements will be generated for clients, regardless of eligibility (see Eligibility above). To override this behaviour, you may supply the <code>forceEligibilityCheck</code> to only generate an ad-hoc statement, if the client meets eligibility requirements.</p>\n<p>Covers activity during the period specified by the user supplying a 'to' and 'from' date. To product the most up-to-date statement, the 'to' date should be set to yesterday's date. For example, if this report is being run on the 3rd of March, you should select the 2nd of March as the 'to' date to ensure an accurate valuation is produced.</p>\n","_postman_id":"3e5675a6-986b-4696-91a0-a26e800ec295"}],"id":"ec416be7-1fe7-4992-8181-8210d40e774c","description":"<p>We will periodically send you messages, which you can then send to your clients.</p>\n<p>Generally, we recommend creating a message hub for your clients. This will contain regular communications and important regulatory documents, including:</p>\n<ul>\n<li><p>Declaration replays – hyperlink to ISA and pension</p>\n</li>\n<li><p>Pension regulatory documents – pension workflow</p>\n</li>\n<li><p>Direct debit documents</p>\n</li>\n<li><p>Tax packs</p>\n</li>\n</ul>\n<hr />\n<p>In your document store, you can store one-off documents, such as terms and conditions, pension set-up information and wrapper declarations.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>Document type</strong></th>\n<th><strong>/files endpoint URL format</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTRACT_NOTE</td>\n<td>contractnote</td>\n</tr>\n<tr>\n<td>QUARTERLY_STATEMENT</td>\n<td>quarterlystatement</td>\n</tr>\n<tr>\n<td>TAX_STATEMENT</td>\n<td>taxstatement</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE</td>\n<td>advancedirectdebitmandatenotice</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION.</td>\n<td>advancedirectdebitmandateconfirmation</td>\n</tr>\n<tr>\n<td>PENSION_CANCELLATION_LETTER</td>\n<td>pensioncancellationletter</td>\n</tr>\n<tr>\n<td>PENSION_TRANSFER_CANCELLATION_LETTER</td>\n<td>pensiontransfercancellationletter</td>\n</tr>\n<tr>\n<td>ILLUSTRATION</td>\n<td>illustration</td>\n</tr>\n<tr>\n<td>PENSION_PAYSLIP</td>\n<td>pensionpayslip</td>\n</tr>\n<tr>\n<td>SMPI_ANNUAL_STATEMENT</td>\n<td>smpiannualstatement</td>\n</tr>\n<tr>\n<td>RETIREMENT_PACK</td>\n<td>retirementpack</td>\n</tr>\n<tr>\n<td>FLEXI_ACCESS_NOTIFICATION</td>\n<td>flexiaccessnotification</td>\n</tr>\n<tr>\n<td>PENSION_SAVINGS_STATEMENT</td>\n<td>pensionsavingsstatement</td>\n</tr>\n<tr>\n<td>BENEFIT_CRYSTALLISATION_EVENT_STATEMENT</td>\n<td>bcestatement</td>\n</tr>\n<tr>\n<td>TAX_PACK</td>\n<td>taxpack</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"30deef99-dfcd-4f49-8b4b-e8235502148f"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"ed656d97-08d8-4ecd-8be5-490685a8adc1"}}],"_postman_id":"ec416be7-1fe7-4992-8181-8210d40e774c"},{"name":"Client message hub","item":[{"name":"Search for messages","event":[{"listen":"test","script":{"exec":["const json = pm.response.json()","console.log(json)","if (json.data.length >= 1) {","    const [firstMessage] = json.data","    pm.environment.set(\"messageId\", firstMessage.id)","    pm.environment.set(\"messageUpdateId\", firstMessage.updateId)","}"],"type":"text/javascript","id":"13f40948-0087-4262-aa50-b2e7f35f786e"}}],"id":"e100298d-64a7-4c9e-971d-194081e46c20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/message/{{firmId}}?pageSize=20&page=1","description":"<p>Client messages are used to inform the investor about changes to their platform user account and to their wrapper accounts.</p>\n<p>Messages might also confirm a change to a client's personal information, such as an address update or change of contact details. Equally some regulatory documents are shared via these messages, as well as reports and valuation statements.</p>\n<p>All list endpoints now support <strong>page-based pagination</strong>.</p>\n<ul>\n<li><p>Each response will include a <code>meta</code> object containing <code>page</code>, <code>pageSize</code>, <code>totalCount</code>, and <code>totalPages</code>.</p>\n</li>\n<li><p>Clients should always request data using the <code>page</code> and <code>pageSize</code> query parameters.</p>\n</li>\n</ul>\n<h4 id=\"url-parameters\">URL parameters</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>firmId</code></td>\n<td>The firm Id we have created for you. It is used to segregate your data in a different database to other users of the service</td>\n</tr>\n</tbody>\n</table>\n</div><h4 id=\"response-data\">Response data</h4>\n<p>The response data is an object that contains a <code>unreadMessageCount</code> field with the number of unread messages.</p>\n","urlObject":{"path":["message","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"description":{"content":"<p>The id of the client to which the messages belong.</p>\n","type":"text/plain"},"key":"clientId","value":"028G1H8"},{"disabled":true,"description":{"content":"<p>The type of message. One of <code>ACCOUNT_UPDATE</code>, <code>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION</code>, <code>ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE</code>, <code>AML_RESEND_DATA</code>, <code>CHANGE_PASSWORD</code>, <code>CLIENT_UPDATE</code>, <code>CONTRACT_NOTE</code>, <code>NEW_ACCOUNT</code>, <code>PENSION_PAYSLIP</code>, <code>QUARTERLY_STATEMENT</code>, <code>VALUATION_STATEMENT</code>, <code>WITHDRAWAL</code>, <code>RETIREMENT_PACK</code>, <code>SMPI_ANNUAL_STATEMENT</code>, <code>PENSION_PAYSLIP_NOTIFICATION</code>, <code>FLEXI_ACCESS_NOTIFICATION</code>, <code>NEW_ACCOUNT_REPLAY</code>, <code>PENSION_SAVINGS_STATEMENT</code></p>\n","type":"text/plain"},"key":"messageType","value":"VALUATION_STATEMENT"},{"disabled":true,"description":{"content":"<p>The status of the message. One of <code>ACTIVE</code>, <code>ARCHIVED</code>, <code>DELETED</code>, <code>PENDING</code> or <code>READ</code>.</p>\n","type":"text/plain"},"key":"status","value":"ACTIVE"},{"disabled":true,"description":{"content":"<p>The id of the account to which the message relates.</p>\n","type":"text/plain"},"key":"accountId","value":"02468G5"},{"disabled":true,"description":{"content":"<p>The start date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"fromDate","value":"2022-01-01T00:00:00.000Z"},{"disabled":true,"description":{"content":"<p>The end date of a range within which the message was created. </p>\n","type":"text/plain"},"key":"toDate","value":"2022-02-01T00:00:00.000Z"},{"description":{"content":"<p>The size of the results \"page\" returned in the response.</p>\n","type":"text/plain"},"key":"pageSize","value":"20"},{"description":{"content":"<p>The \"page\" number of the results returned in the response.</p>\n","type":"text/plain"},"key":"page","value":"1"}],"variable":[]}},"response":[{"id":"3dede502-2508-4d4d-94b7-2b1a9b04e8c4","name":"Message Search – Pagination","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates.","disabled":true},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"620261815d84d0000a610d73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J8\"\n            },\n            \"created\": \"2022-02-08T12:26:41.658Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:26:41.659Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620261815d84d0000a610d72\"\n        },\n        {\n            \"id\": \"6202614f5d84d0000a610d70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J7\"\n            },\n            \"created\": \"2022-02-08T12:25:51.527Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:51.527Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202614f5d84d0000a610d6f\"\n        },\n        {\n            \"id\": \"6202611d5d84d0000a610d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J6\"\n            },\n            \"created\": \"2022-02-08T12:25:01.370Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:01.371Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202611d5d84d0000a610d6c\"\n        },\n        {\n            \"id\": \"620260eb5d84d0000a610d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G288\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J5\"\n            },\n            \"created\": \"2022-02-08T12:24:11.343Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:24:11.343Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260eb5d84d0000a610d69\"\n        },\n        {\n            \"id\": \"620260cc5d84d0000a610d65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:23:40.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:40.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260cc5d84d0000a610d64\"\n        },\n        {\n            \"id\": \"620260b95d84d0000a610d60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:21.170Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:21.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b95d84d0000a610d5f\"\n        },\n        {\n            \"id\": \"620260b85d84d0000a610d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:20.012Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:20.012Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b85d84d0000a610d5a\"\n        },\n        {\n            \"id\": \"620260b55d84d0000a610d58\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J4\"\n            },\n            \"created\": \"2022-02-08T12:23:17.480Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:17.480Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b55d84d0000a610d57\"\n        },\n        {\n            \"id\": \"620260965d84d0000a610d53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:22:46.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:46.071Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260965d84d0000a610d52\"\n        },\n        {\n            \"id\": \"620260825d84d0000a610d4e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:26.629Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:26.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260825d84d0000a610d4d\"\n        },\n        {\n            \"id\": \"620260815d84d0000a610d49\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:25.203Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:25.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260815d84d0000a610d48\"\n        },\n        {\n            \"id\": \"6202607e5d84d0000a610d46\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J3\"\n            },\n            \"created\": \"2022-02-08T12:22:22.744Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:22.744Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202607e5d84d0000a610d45\"\n        },\n        {\n            \"id\": \"6202604b5d84d0000a610d43\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G285\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J2\"\n            },\n            \"created\": \"2022-02-08T12:21:31.647Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:21:31.647Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202604b5d84d0000a610d42\"\n        },\n        {\n            \"id\": \"620260195d84d0000a610d3d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G284\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J1\"\n            },\n            \"created\": \"2022-02-08T12:20:41.897Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:20:41.897Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260195d84d0000a610d3c\"\n        },\n        {\n            \"id\": \"62025fde5d84d0000a610d32\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:19:42.564Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:42.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fde5d84d0000a610d31\"\n        },\n        {\n            \"id\": \"62025fda5d84d0000a610d2c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HJ\"\n            },\n            \"created\": \"2022-02-08T12:19:38.489Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:38.489Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fda5d84d0000a610d2b\"\n        },\n        {\n            \"id\": \"62025fd95d84d0000a610d29\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HH\"\n            },\n            \"created\": \"2022-02-08T12:19:37.192Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:37.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd95d84d0000a610d28\"\n        },\n        {\n            \"id\": \"62025fd85d84d0000a610d26\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HG\"\n            },\n            \"created\": \"2022-02-08T12:19:36.066Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:36.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd85d84d0000a610d25\"\n        },\n        {\n            \"id\": \"62025fd65d84d0000a610d23\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HF\"\n            },\n            \"created\": \"2022-02-08T12:19:34.690Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:34.690Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd65d84d0000a610d22\"\n        },\n        {\n            \"id\": \"62025fd55d84d0000a610d20\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HD\"\n            },\n            \"created\": \"2022-02-08T12:19:33.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:33.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd55d84d0000a610d1f\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 402,\n        \"page\": 1,\n        \"pageSize\": 20\n    }\n}"},{"id":"20ce76fb-1a49-4023-acc8-47d516758de3","name":"Message Search – Single Client","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?clientId=028G1H8&pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong."},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates.","disabled":true},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"62025dd1a52460000bdf3d5e\",\n      \"firmId\": \"TEST1\",\n      \"clientId\": \"028G1H8\",\n      \"nodeId\": [\"0\"],\n      \"messageType\": \"VALUATION_STATEMENT\",\n      \"read\": false,\n      \"archived\": false,\n      \"status\": \"ACTIVE\",\n      \"subject\": \"Valuation statement\",\n      \"payload\": {\n        \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n        \"id\": \"2021-01-01-1970-01-01\"\n      },\n      \"created\": \"2022-02-08T12:10:57.875Z\",\n      \"auditDetails\": {\n        \"updateDate\": \"2022-02-08T12:10:57.876Z\",\n        \"userFirmId\": \"BACKGROUND\",\n        \"userId\": \"Background\",\n        \"version\": 1,\n        \"application\": \"CommunicationsProcessor\"\n      },\n      \"updateId\": \"62025dd1a52460000bdf3d5d\"\n    },\n    {\n      \"id\": \"62025dcc0fbb0e000ba12d1f\",\n      \"firmId\": \"TEST1\",\n      \"clientId\": \"028G1H8\",\n      \"nodeId\": [\"0\"],\n      \"messageType\": \"VALUATION_STATEMENT\",\n      \"read\": false,\n      \"archived\": false,\n      \"status\": \"ACTIVE\",\n      \"subject\": \"Valuation statement\",\n      \"payload\": {\n        \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n        \"id\": \"2021-01-01-1970-01-01\"\n      },\n      \"created\": \"2022-02-08T12:10:52.182Z\",\n      \"auditDetails\": {\n        \"updateDate\": \"2022-02-08T12:10:52.182Z\",\n        \"userFirmId\": \"BACKGROUND\",\n        \"userId\": \"Background\",\n        \"version\": 1,\n        \"application\": \"CommunicationsProcessor\"\n      },\n      \"updateId\": \"62025dcc0fbb0e000ba12d1e\"\n    },\n    {\n      \"id\": \"62025dc00fbb0e000ba12d17\",\n      \"firmId\": \"TEST1\",\n      \"clientId\": \"028G1H8\",\n      \"nodeId\": [\"0\"],\n      \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n      \"read\": false,\n      \"archived\": false,\n      \"status\": \"ACTIVE\",\n      \"subject\": \"Pension Account Cancellation\",\n      \"payload\": {\n        \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n        \"id\": \"2022-02-08-pensionAccount\"\n      },\n      \"created\": \"2022-02-08T12:10:40.455Z\",\n      \"auditDetails\": {\n        \"updateDate\": \"2022-02-08T12:10:40.455Z\",\n        \"userFirmId\": \"BACKGROUND\",\n        \"userId\": \"Background\",\n        \"version\": 1,\n        \"application\": \"CommunicationsProcessor\"\n      },\n      \"updateId\": \"62025dc00fbb0e000ba12d16\"\n    },\n    {\n      \"id\": \"62025d8f0fbb0e000ba12ce2\",\n      \"firmId\": \"TEST1\",\n      \"clientId\": \"028G1H8\",\n      \"nodeId\": [\"0\"],\n      \"messageType\": \"NEW_ACCOUNT\",\n      \"read\": false,\n      \"archived\": false,\n      \"status\": \"ACTIVE\",\n      \"subject\": \"New Account\",\n      \"payload\": {\n        \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n        \"accountId\": \"02468CJ\"\n      },\n      \"created\": \"2022-02-08T12:09:51.582Z\",\n      \"auditDetails\": {\n        \"updateDate\": \"2022-02-08T12:09:51.582Z\",\n        \"userFirmId\": \"BACKGROUND\",\n        \"userId\": \"Background\",\n        \"version\": 1,\n        \"application\": \"CommunicationsProcessor\"\n      },\n      \"updateId\": \"62025d8f0fbb0e000ba12ce1\"\n    }\n  ],\n  \"meta\": {\n    \"page\": 1,\n    \"pageSize\": 20,\n    \"totalCount\": 4,\n    \"totalPages\": 1\n  }\n}\n"},{"id":"41508c2a-33b7-4c26-aec1-10ddcaf01fb7","name":"Message Search – Message Type","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?messageType=VALUATION_STATEMENT&pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`."},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates.","disabled":true},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"62025dd5974821000a33e494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.750Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.750Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5974821000a33e493\"\n        },\n        {\n            \"id\": \"62025dd5ef60d4000b52a2a9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.713Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5ef60d4000b52a2a8\"\n        },\n        {\n            \"id\": \"62025dd5a52460000bdf3d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.673Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.674Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5a52460000bdf3d6c\"\n        },\n        {\n            \"id\": \"62025dd5e0f843000ac99d05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.511Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5e0f843000ac99d04\"\n        },\n        {\n            \"id\": \"62025dd55d84d0000a610c97\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.381Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd55d84d0000a610c96\"\n        },\n        {\n            \"id\": \"62025dd5470b70000b858b72\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.359Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.359Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5470b70000b858b71\"\n        },\n        {\n            \"id\": \"62025dd50fbb0e000ba12d3f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.260Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.260Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd50fbb0e000ba12d3e\"\n        },\n        {\n            \"id\": \"62025dd5d0b332000a97ead6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.242Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.242Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d0b332000a97ead5\"\n        },\n        {\n            \"id\": \"62025dd57b46c6000b0c03f0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.210Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd57b46c6000b0c03ef\"\n        },\n        {\n            \"id\": \"62025dd5c209b6000a2cdb67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.190Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.190Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5c209b6000a2cdb66\"\n        },\n        {\n            \"id\": \"62025dd5174f01000bd7293d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.176Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.176Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5174f01000bd7293c\"\n        },\n        {\n            \"id\": \"62025dd5d4bbaa000bed3a73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.158Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.158Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d4bbaa000bed3a72\"\n        },\n        {\n            \"id\": \"62025dd54262b8000a45a2b0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.115Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.115Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd54262b8000a45a2af\"\n        },\n        {\n            \"id\": \"62025dd51d814d000ba43359\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.064Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd51d814d000ba43358\"\n        },\n        {\n            \"id\": \"62025dd5963a03000ba22c05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.036Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.036Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5963a03000ba22c04\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fe\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.957Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fd\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.954Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.954Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec92000906249c\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c4a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.941Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.941Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c49\"\n        },\n        {\n            \"id\": \"62025dd460004c000b2dd082\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.819Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.819Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd460004c000b2dd081\"\n        },\n        {\n            \"id\": \"62025dd4ef60d4000b52a2a6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4ef60d4000b52a2a5\"\n        },\n        {\n            \"id\": \"62025dd4974821000a33e491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4974821000a33e490\"\n        },\n        {\n            \"id\": \"62025dd4b03af6000b2a3596\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.724Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.724Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b03af6000b2a3595\"\n        },\n        {\n            \"id\": \"62025dd4e0f843000ac99d02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.562Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.562Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4e0f843000ac99d01\"\n        },\n        {\n            \"id\": \"62025dd4a52460000bdf3d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4a52460000bdf3d69\"\n        },\n        {\n            \"id\": \"62025dd4470b70000b858b6f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.462Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.462Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4470b70000b858b6e\"\n        },\n        {\n            \"id\": \"62025dd44262b8000a45a2ad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.291Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.291Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd44262b8000a45a2ac\"\n        },\n        {\n            \"id\": \"62025dd4d4bbaa000bed3a70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.287Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.287Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d4bbaa000bed3a6f\"\n        },\n        {\n            \"id\": \"62025dd4174f01000bd7293a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.277Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.277Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4174f01000bd72939\"\n        },\n        {\n            \"id\": \"62025dd41d814d000ba43356\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd41d814d000ba43355\"\n        },\n        {\n            \"id\": \"62025dd4963a03000ba22c02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.174Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.174Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4963a03000ba22c01\"\n        },\n        {\n            \"id\": \"62025dd40fbb0e000ba12d3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.154Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.155Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd40fbb0e000ba12d3a\"\n        },\n        {\n            \"id\": \"62025dd45d84d0000a610c94\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.112Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd45d84d0000a610c93\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.098Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.098Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fa\"\n        },\n        {\n            \"id\": \"62025dd47b46c6000b0c03ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.094Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.094Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd47b46c6000b0c03eb\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.075Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.075Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec920009062499\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c47\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.073Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.073Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c46\"\n        },\n        {\n            \"id\": \"62025dd4d0b332000a97ead1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.044Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.044Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d0b332000a97ead0\"\n        },\n        {\n            \"id\": \"62025dd4c209b6000a2cdb63\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.018Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.018Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4c209b6000a2cdb62\"\n        },\n        {\n            \"id\": \"62025dd360004c000b2dd07f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.974Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.974Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd360004c000b2dd07e\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.951Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.951Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a2a2\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.945Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.945Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48d\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3593\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a3592\"\n        },\n        {\n            \"id\": \"62025dd3e0f843000ac99cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.783Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3e0f843000ac99cfe\"\n        },\n        {\n            \"id\": \"62025dd3a52460000bdf3d67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.669Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.669Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3a52460000bdf3d66\"\n        },\n        {\n            \"id\": \"62025dd3470b70000b858b6c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.630Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3470b70000b858b6b\"\n        },\n        {\n            \"id\": \"62025dd34262b8000a45a2aa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.514Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.514Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd34262b8000a45a2a9\"\n        },\n        {\n            \"id\": \"62025dd3174f01000bd72937\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.452Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3174f01000bd72936\"\n        },\n        {\n            \"id\": \"62025dd3d4bbaa000bed3a6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.453Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d4bbaa000bed3a6c\"\n        },\n        {\n            \"id\": \"62025dd31d814d000ba43353\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd31d814d000ba43352\"\n        },\n        {\n            \"id\": \"62025dd3963a03000ba22bff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.355Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.355Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3963a03000ba22bfe\"\n        },\n        {\n            \"id\": \"62025dd37b46c6000b0c03e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.289Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd37b46c6000b0c03e8\"\n        },\n        {\n            \"id\": \"62025dd3445b91000b9038f8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.278Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3445b91000b9038f7\"\n        },\n        {\n            \"id\": \"62025dd35d84d0000a610c91\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.270Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.271Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd35d84d0000a610c90\"\n        },\n        {\n            \"id\": \"62025dd3b12462000afb2c44\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.263Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.264Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b12462000afb2c43\"\n        },\n        {\n            \"id\": \"62025dd367ec920009062497\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.231Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.231Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd367ec920009062496\"\n        },\n        {\n            \"id\": \"62025dd3c209b6000a2cdb60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.216Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.216Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3c209b6000a2cdb5f\"\n        },\n        {\n            \"id\": \"62025dd3d0b332000a97eace\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.201Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d0b332000a97eacd\"\n        },\n        {\n            \"id\": \"62025dd30fbb0e000ba12d38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.122Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.123Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd30fbb0e000ba12d37\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3590\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.119Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a358f\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a29f\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.086Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.086Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48a\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.958Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cfb\"\n        },\n        {\n            \"id\": \"62025dd2470b70000b858b69\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.798Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2470b70000b858b68\"\n        },\n        {\n            \"id\": \"62025dd24262b8000a45a2a7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.715Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.715Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd24262b8000a45a2a6\"\n        },\n        {\n            \"id\": \"62025dd2a52460000bdf3d61\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.688Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.688Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2a52460000bdf3d60\"\n        },\n        {\n            \"id\": \"62025dd2d4bbaa000bed3a6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.650Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.651Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d4bbaa000bed3a69\"\n        },\n        {\n            \"id\": \"62025dd21d814d000ba43350\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd21d814d000ba4334f\"\n        },\n        {\n            \"id\": \"62025dd2963a03000ba22bfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.500Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.500Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2963a03000ba22bfb\"\n        },\n        {\n            \"id\": \"62025dd2174f01000bd72932\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.496Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.496Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2174f01000bd72931\"\n        },\n        {\n            \"id\": \"62025dd2445b91000b9038f5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.442Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.442Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2445b91000b9038f4\"\n        },\n        {\n            \"id\": \"62025dd2b12462000afb2c41\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.440Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.440Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b12462000afb2c40\"\n        },\n        {\n            \"id\": \"62025dd27b46c6000b0c03e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.430Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd27b46c6000b0c03e5\"\n        },\n        {\n            \"id\": \"62025dd25d84d0000a610c8e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd25d84d0000a610c8d\"\n        },\n        {\n            \"id\": \"62025dd267ec920009062494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.410Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.410Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd267ec920009062493\"\n        },\n        {\n            \"id\": \"62025dd2d0b332000a97eacb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d0b332000a97eaca\"\n        },\n        {\n            \"id\": \"62025dd20fbb0e000ba12d35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.332Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.333Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd20fbb0e000ba12d34\"\n        },\n        {\n            \"id\": \"62025dd2ef60d4000b52a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.315Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2ef60d4000b52a29c\"\n        },\n        {\n            \"id\": \"62025dd2b03af6000b2a358d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.295Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.295Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b03af6000b2a358c\"\n        },\n        {\n            \"id\": \"62025dd2974821000a33e488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.293Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2974821000a33e487\"\n        },\n        {\n            \"id\": \"62025dd2c209b6000a2cdb5c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.259Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.259Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2c209b6000a2cdb5b\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.180Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cf8\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.927Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a3\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.890Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b64\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.875Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.876Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5d\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.868Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.869Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a66\"\n        },\n        {\n            \"id\": \"62025dd11d814d000ba4334d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.790Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.790Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd11d814d000ba4334c\"\n        },\n        {\n            \"id\": \"62025dd1174f01000bd7292f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.706Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.706Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1174f01000bd7292e\"\n        },\n        {\n            \"id\": \"62025dd1445b91000b9038f2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.601Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.601Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1445b91000b9038f1\"\n        },\n        {\n            \"id\": \"62025dd17b46c6000b0c03e3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.546Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.546Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd17b46c6000b0c03e2\"\n        },\n        {\n            \"id\": \"62025dd1b12462000afb2c3e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.529Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.530Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b12462000afb2c3d\"\n        },\n        {\n            \"id\": \"62025dd1d0b332000a97eac8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.498Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.499Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d0b332000a97eac7\"\n        },\n        {\n            \"id\": \"62025dd167ec920009062491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd167ec920009062490\"\n        },\n        {\n            \"id\": \"62025dd1ef60d4000b52a29a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.464Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1ef60d4000b52a299\"\n        },\n        {\n            \"id\": \"62025dd1974821000a33e485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.426Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.426Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1974821000a33e484\"\n        },\n        {\n            \"id\": \"62025dd1963a03000ba22bf8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1963a03000ba22bf7\"\n        },\n        {\n            \"id\": \"62025dd1c209b6000a2cdb59\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.412Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.412Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1c209b6000a2cdb58\"\n        },\n        {\n            \"id\": \"62025dd1b03af6000b2a358a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b03af6000b2a3589\"\n        },\n        {\n            \"id\": \"62025dd15d84d0000a610c8a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.401Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd15d84d0000a610c89\"\n        },\n        {\n            \"id\": \"62025dd10fbb0e000ba12d31\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.368Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd10fbb0e000ba12d30\"\n        },\n        {\n            \"id\": \"62025dd1e0f843000ac99cf6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.366Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.366Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1e0f843000ac99cf5\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.142Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.142Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a0\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5a\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a64\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.077Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.077Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a63\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b62\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.070Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b61\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba4334a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.984Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.984Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43349\"\n        },\n        {\n            \"id\": \"62025dd060004c000b2dd07b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.907Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd060004c000b2dd07a\"\n        },\n        {\n            \"id\": \"62025dd0174f01000bd7292c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.821Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.821Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0174f01000bd7292b\"\n        },\n        {\n            \"id\": \"62025dd0445b91000b9038ef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.703Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.703Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0445b91000b9038ee\"\n        },\n        {\n            \"id\": \"62025dd07b46c6000b0c03e0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.701Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.702Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd07b46c6000b0c03df\"\n        },\n        {\n            \"id\": \"62025dd0b12462000afb2c3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.631Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b12462000afb2c3a\"\n        },\n        {\n            \"id\": \"62025dd0d0b332000a97eac5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0d0b332000a97eac4\"\n        },\n        {\n            \"id\": \"62025dd067ec92000906248e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.552Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.553Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd067ec92000906248d\"\n        },\n        {\n            \"id\": \"62025dd0ef60d4000b52a297\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.549Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0ef60d4000b52a296\"\n        },\n        {\n            \"id\": \"62025dd0963a03000ba22bf5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.518Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.518Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0963a03000ba22bf4\"\n        },\n        {\n            \"id\": \"62025dd00fbb0e000ba12d2e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.512Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd00fbb0e000ba12d2d\"\n        },\n        {\n            \"id\": \"62025dd05d84d0000a610c87\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.509Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd05d84d0000a610c86\"\n        },\n        {\n            \"id\": \"62025dd0974821000a33e482\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.478Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0974821000a33e481\"\n        },\n        {\n            \"id\": \"62025dd0e0f843000ac99cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.460Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.460Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0e0f843000ac99cf2\"\n        },\n        {\n            \"id\": \"62025dd0c209b6000a2cdb56\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.445Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0c209b6000a2cdb55\"\n        },\n        {\n            \"id\": \"62025dd0b03af6000b2a3587\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b03af6000b2a3586\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba43347\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.136Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.136Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43346\"\n        },\n        {\n            \"id\": \"62025dd04262b8000a45a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.035Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd04262b8000a45a29c\"\n        },\n        {\n            \"id\": \"62025dcfa52460000bdf3d57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfa52460000bdf3d56\"\n        },\n        {\n            \"id\": \"62025dcf60004c000b2dd077\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.878Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.878Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf60004c000b2dd076\"\n        },\n        {\n            \"id\": \"62025dcf174f01000bd72929\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.847Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.847Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf174f01000bd72928\"\n        },\n        {\n            \"id\": \"62025dcf470b70000b858b5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.834Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.835Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf470b70000b858b5d\"\n        },\n        {\n            \"id\": \"62025dcfd4bbaa000bed3a60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.825Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.825Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd4bbaa000bed3a5f\"\n        },\n        {\n            \"id\": \"62025dcf445b91000b9038ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.734Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf445b91000b9038eb\"\n        },\n        {\n            \"id\": \"62025dcf7b46c6000b0c03dd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.723Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.723Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf7b46c6000b0c03dc\"\n        },\n        {\n            \"id\": \"62025dcfd0b332000a97eac2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.714Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd0b332000a97eac1\"\n        },\n        {\n            \"id\": \"62025dcfb12462000afb2c38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.683Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb12462000afb2c37\"\n        },\n        {\n            \"id\": \"62025dcf0fbb0e000ba12d2b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.675Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.675Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf0fbb0e000ba12d2a\"\n        },\n        {\n            \"id\": \"62025dcf974821000a33e47f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.664Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.664Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf974821000a33e47e\"\n        },\n        {\n            \"id\": \"62025dcf5d84d0000a610c84\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.628Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.628Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf5d84d0000a610c83\"\n        },\n        {\n            \"id\": \"62025dcfe0f843000ac99cf0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfe0f843000ac99cef\"\n        },\n        {\n            \"id\": \"62025dcfef60d4000b52a294\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfef60d4000b52a293\"\n        },\n        {\n            \"id\": \"62025dcfb03af6000b2a3584\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.607Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.607Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb03af6000b2a3583\"\n        },\n        {\n            \"id\": \"62025dcf963a03000ba22bf2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.595Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.595Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf963a03000ba22bf1\"\n        },\n        {\n            \"id\": \"62025dcf67ec92000906248b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.574Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.574Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf67ec92000906248a\"\n        },\n        {\n            \"id\": \"62025dcfc209b6000a2cdb53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.472Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.472Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfc209b6000a2cdb52\"\n        },\n        {\n            \"id\": \"62025dcf1d814d000ba43344\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.055Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf1d814d000ba43343\"\n        },\n        {\n            \"id\": \"62025dce174f01000bd72926\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.933Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce174f01000bd72925\"\n        },\n        {\n            \"id\": \"62025dced4bbaa000bed3a5d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.901Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced4bbaa000bed3a5c\"\n        },\n        {\n            \"id\": \"62025dce0fbb0e000ba12d28\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.900Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.900Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce0fbb0e000ba12d27\"\n        },\n        {\n            \"id\": \"62025dce7b46c6000b0c03da\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.861Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.861Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce7b46c6000b0c03d9\"\n        },\n        {\n            \"id\": \"62025dceb12462000afb2c35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.797Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb12462000afb2c34\"\n        },\n        {\n            \"id\": \"62025dced0b332000a97eabf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.794Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.794Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced0b332000a97eabe\"\n        },\n        {\n            \"id\": \"62025dce445b91000b9038e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.766Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.766Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce445b91000b9038e8\"\n        },\n        {\n            \"id\": \"62025dcee0f843000ac99ced\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.760Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.760Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcee0f843000ac99cec\"\n        },\n        {\n            \"id\": \"62025dce974821000a33e47c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.716Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.717Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce974821000a33e47b\"\n        },\n        {\n            \"id\": \"62025dce5d84d0000a610c81\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.710Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce5d84d0000a610c80\"\n        },\n        {\n            \"id\": \"62025dceb03af6000b2a3581\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb03af6000b2a3580\"\n        },\n        {\n            \"id\": \"62025dce67ec920009062488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.575Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.575Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce67ec920009062487\"\n        },\n        {\n            \"id\": \"62025dce963a03000ba22bef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.501Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce963a03000ba22bee\"\n        },\n        {\n            \"id\": \"62025dcea52460000bdf3d54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.432Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.432Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcea52460000bdf3d53\"\n        },\n        {\n            \"id\": \"62025dcd7b46c6000b0c03d7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.939Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.939Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd7b46c6000b0c03d6\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d25\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.922Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d24\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a5a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.892Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a59\"\n        },\n        {\n            \"id\": \"62025dcd5d84d0000a610c7e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.775Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.775Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd5d84d0000a610c7d\"\n        },\n        {\n            \"id\": \"62025dcd67ec920009062485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.709Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd67ec920009062484\"\n        },\n        {\n            \"id\": \"62025dcdb03af6000b2a357e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.699Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.699Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdb03af6000b2a357d\"\n        },\n        {\n            \"id\": \"62025dcd174f01000bd72922\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.661Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.661Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd174f01000bd72921\"\n        },\n        {\n            \"id\": \"62025dcd974821000a33e478\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.616Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd974821000a33e477\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d22\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.040Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.040Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d21\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.034Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.034Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a56\"\n        },\n        {\n            \"id\": \"62025dcc5d84d0000a610c7b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc5d84d0000a610c7a\"\n        },\n        {\n            \"id\": \"62025dccb03af6000b2a357b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.845Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccb03af6000b2a357a\"\n        },\n        {\n            \"id\": \"62025dcc174f01000bd7291f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.785Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc174f01000bd7291e\"\n        },\n        {\n            \"id\": \"62025dcc470b70000b858b5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.292Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc470b70000b858b5a\"\n        },\n        {\n            \"id\": \"62025dcc4262b8000a45a299\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.202Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.202Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc4262b8000a45a298\"\n        },\n        {\n            \"id\": \"62025dcc0fbb0e000ba12d1f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.182Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.182Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc0fbb0e000ba12d1e\"\n        },\n        {\n            \"id\": \"62025dccef60d4000b52a291\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccef60d4000b52a290\"\n        },\n        {\n            \"id\": \"62025dccd4bbaa000bed3a54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.111Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccd4bbaa000bed3a53\"\n        },\n        {\n            \"id\": \"62025dcbe0f843000ac99cea\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.531Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.531Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbe0f843000ac99ce9\"\n        },\n        {\n            \"id\": \"62025dcbd0b332000a97eabc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.415Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.415Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbd0b332000a97eabb\"\n        },\n        {\n            \"id\": \"62025dcba52460000bdf3d51\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcba52460000bdf3d50\"\n        },\n        {\n            \"id\": \"62025dcb445b91000b9038e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.402Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.402Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb445b91000b9038e5\"\n        },\n        {\n            \"id\": \"62025dcb0fbb0e000ba12d1c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.296Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb0fbb0e000ba12d1b\"\n        },\n        {\n            \"id\": \"62025dca7b46c6000b0c03d4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:50.835Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:50.836Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dca7b46c6000b0c03d3\"\n        },\n        {\n            \"id\": \"62025dc97b46c6000b0c03d1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.963Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc97b46c6000b0c03d0\"\n        },\n        {\n            \"id\": \"62025dc94262b8000a45a296\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.846Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc94262b8000a45a295\"\n        },\n        {\n            \"id\": \"62025dc9e0f843000ac99ce7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.823Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.823Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc9e0f843000ac99ce6\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n    \"pageSize\": 20,\n    \"totalCount\": 4,\n    \"totalPages\": 1\n        \"count\": 182\n    }\n}"},{"id":"08df751d-029a-40dd-bf2d-f1bff5712450","name":"Message Search – Message Status","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?status=ACTIVE&pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`."},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates.","disabled":true},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"620261815d84d0000a610d73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J8\"\n            },\n            \"created\": \"2022-02-08T12:26:41.658Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:26:41.659Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620261815d84d0000a610d72\"\n        },\n        {\n            \"id\": \"6202614f5d84d0000a610d70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J7\"\n            },\n            \"created\": \"2022-02-08T12:25:51.527Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:51.527Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202614f5d84d0000a610d6f\"\n        },\n        {\n            \"id\": \"6202611d5d84d0000a610d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J6\"\n            },\n            \"created\": \"2022-02-08T12:25:01.370Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:01.371Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202611d5d84d0000a610d6c\"\n        },\n        {\n            \"id\": \"620260eb5d84d0000a610d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G288\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J5\"\n            },\n            \"created\": \"2022-02-08T12:24:11.343Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:24:11.343Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260eb5d84d0000a610d69\"\n        },\n        {\n            \"id\": \"620260cc5d84d0000a610d65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:23:40.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:40.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260cc5d84d0000a610d64\"\n        },\n        {\n            \"id\": \"620260b95d84d0000a610d60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:21.170Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:21.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b95d84d0000a610d5f\"\n        },\n        {\n            \"id\": \"620260b85d84d0000a610d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:20.012Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:20.012Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b85d84d0000a610d5a\"\n        },\n        {\n            \"id\": \"620260b55d84d0000a610d58\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J4\"\n            },\n            \"created\": \"2022-02-08T12:23:17.480Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:17.480Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b55d84d0000a610d57\"\n        },\n        {\n            \"id\": \"620260965d84d0000a610d53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:22:46.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:46.071Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260965d84d0000a610d52\"\n        },\n        {\n            \"id\": \"620260825d84d0000a610d4e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:26.629Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:26.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260825d84d0000a610d4d\"\n        },\n        {\n            \"id\": \"620260815d84d0000a610d49\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:25.203Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:25.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260815d84d0000a610d48\"\n        },\n        {\n            \"id\": \"6202607e5d84d0000a610d46\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J3\"\n            },\n            \"created\": \"2022-02-08T12:22:22.744Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:22.744Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202607e5d84d0000a610d45\"\n        },\n        {\n            \"id\": \"6202604b5d84d0000a610d43\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G285\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J2\"\n            },\n            \"created\": \"2022-02-08T12:21:31.647Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:21:31.647Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202604b5d84d0000a610d42\"\n        },\n        {\n            \"id\": \"620260195d84d0000a610d3d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G284\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J1\"\n            },\n            \"created\": \"2022-02-08T12:20:41.897Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:20:41.897Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260195d84d0000a610d3c\"\n        },\n        {\n            \"id\": \"62025fde5d84d0000a610d32\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:19:42.564Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:42.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fde5d84d0000a610d31\"\n        },\n        {\n            \"id\": \"62025fda5d84d0000a610d2c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HJ\"\n            },\n            \"created\": \"2022-02-08T12:19:38.489Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:38.489Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fda5d84d0000a610d2b\"\n        },\n        {\n            \"id\": \"62025fd95d84d0000a610d29\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HH\"\n            },\n            \"created\": \"2022-02-08T12:19:37.192Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:37.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd95d84d0000a610d28\"\n        },\n        {\n            \"id\": \"62025fd85d84d0000a610d26\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HG\"\n            },\n            \"created\": \"2022-02-08T12:19:36.066Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:36.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd85d84d0000a610d25\"\n        },\n        {\n            \"id\": \"62025fd65d84d0000a610d23\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HF\"\n            },\n            \"created\": \"2022-02-08T12:19:34.690Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:34.690Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd65d84d0000a610d22\"\n        },\n        {\n            \"id\": \"62025fd55d84d0000a610d20\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HD\"\n            },\n            \"created\": \"2022-02-08T12:19:33.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:33.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd55d84d0000a610d1f\"\n        },\n        {\n            \"id\": \"62025fc45d84d0000a610d1a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HC\"\n            },\n            \"created\": \"2022-02-08T12:19:16.791Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:16.791Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fc45d84d0000a610d19\"\n        },\n        {\n            \"id\": \"62025f7660004c000b2dd091\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HB\"\n            },\n            \"created\": \"2022-02-08T12:17:58.537Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:17:58.537Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f7660004c000b2dd090\"\n        },\n        {\n            \"id\": \"62025f5460004c000b2dd088\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H9\"\n            },\n            \"created\": \"2022-02-08T12:17:24.808Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:17:24.808Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f5460004c000b2dd087\"\n        },\n        {\n            \"id\": \"62025f3a5d84d0000a610d0f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:16:58.671Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:58.672Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f3a5d84d0000a610d0e\"\n        },\n        {\n            \"id\": \"62025f345d84d0000a610d0a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:16:52.693Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:52.693Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f345d84d0000a610d09\"\n        },\n        {\n            \"id\": \"62025f215d84d0000a610d04\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H8\"\n            },\n            \"created\": \"2022-02-08T12:16:33.201Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:33.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f215d84d0000a610d03\"\n        },\n        {\n            \"id\": \"62025eeeb03af6000b2a35d3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G276\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H7\"\n            },\n            \"created\": \"2022-02-08T12:15:42.689Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:42.689Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eeeb03af6000b2a35d2\"\n        },\n        {\n            \"id\": \"62025ee5b03af6000b2a35d0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G274\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H6\"\n            },\n            \"created\": \"2022-02-08T12:15:33.485Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:33.485Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ee5b03af6000b2a35cf\"\n        },\n        {\n            \"id\": \"62025edeb03af6000b2a35cb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G274\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H5\"\n            },\n            \"created\": \"2022-02-08T12:15:26.316Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:26.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025edeb03af6000b2a35c9\"\n        },\n        {\n            \"id\": \"62025edeb03af6000b2a35cc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G275\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H5\"\n            },\n            \"created\": \"2022-02-08T12:15:26.316Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:26.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025edeb03af6000b2a35ca\"\n        },\n        {\n            \"id\": \"62025eddb03af6000b2a35c6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G272\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H663\"\n            },\n            \"created\": \"2022-02-08T12:15:25.268Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:25.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eddb03af6000b2a35c5\"\n        },\n        {\n            \"id\": \"62025eddb03af6000b2a35c4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G271\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H663\"\n            },\n            \"created\": \"2022-02-08T12:15:25.265Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:25.266Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eddb03af6000b2a35c3\"\n        },\n        {\n            \"id\": \"62025ed45d84d0000a610cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G271\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H4\"\n            },\n            \"created\": \"2022-02-08T12:15:16.698Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:16.698Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed45d84d0000a610cfd\"\n        },\n        {\n            \"id\": \"62025ed45d84d0000a610d00\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G272\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H4\"\n            },\n            \"created\": \"2022-02-08T12:15:16.698Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:16.698Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed45d84d0000a610cfe\"\n        },\n        {\n            \"id\": \"62025ed25d84d0000a610cfa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H3\"\n            },\n            \"created\": \"2022-02-08T12:15:14.208Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:14.208Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed25d84d0000a610cf8\"\n        },\n        {\n            \"id\": \"62025ed25d84d0000a610cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H3\"\n            },\n            \"created\": \"2022-02-08T12:15:14.208Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:14.208Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed25d84d0000a610cf7\"\n        },\n        {\n            \"id\": \"62025ecf5d84d0000a610cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H2\"\n            },\n            \"created\": \"2022-02-08T12:15:11.314Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:11.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ecf5d84d0000a610cf1\"\n        },\n        {\n            \"id\": \"62025ecf5d84d0000a610cf4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H2\"\n            },\n            \"created\": \"2022-02-08T12:15:11.314Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:11.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ecf5d84d0000a610cf2\"\n        },\n        {\n            \"id\": \"62025ece5d84d0000a610ced\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H1\"\n            },\n            \"created\": \"2022-02-08T12:15:10.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:10.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ece5d84d0000a610ceb\"\n        },\n        {\n            \"id\": \"62025ece5d84d0000a610cee\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H1\"\n            },\n            \"created\": \"2022-02-08T12:15:10.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:10.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ece5d84d0000a610cec\"\n        },\n        {\n            \"id\": \"62025ec85d84d0000a610ce8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65N\"\n            },\n            \"created\": \"2022-02-08T12:15:04.169Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:04.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec85d84d0000a610ce7\"\n        },\n        {\n            \"id\": \"62025ec85d84d0000a610ce6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65N\"\n            },\n            \"created\": \"2022-02-08T12:15:04.163Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:04.163Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec85d84d0000a610ce5\"\n        },\n        {\n            \"id\": \"62025ec15d84d0000a610ce2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65L\"\n            },\n            \"created\": \"2022-02-08T12:14:57.449Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:57.449Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec15d84d0000a610ce1\"\n        },\n        {\n            \"id\": \"62025ec15d84d0000a610ce0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65L\"\n            },\n            \"created\": \"2022-02-08T12:14:57.443Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:57.443Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec15d84d0000a610cdf\"\n        },\n        {\n            \"id\": \"62025ebc5d84d0000a610cdd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G269\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GJ\"\n            },\n            \"created\": \"2022-02-08T12:14:52.653Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:52.653Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ebc5d84d0000a610cdc\"\n        },\n        {\n            \"id\": \"62025eb85d84d0000a610cd9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GH\"\n            },\n            \"created\": \"2022-02-08T12:14:48.975Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:48.976Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb85d84d0000a610cd7\"\n        },\n        {\n            \"id\": \"62025eb85d84d0000a610cd8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GH\"\n            },\n            \"created\": \"2022-02-08T12:14:48.975Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:48.975Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb85d84d0000a610cd6\"\n        },\n        {\n            \"id\": \"62025eb15d84d0000a610cd2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G264\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GG\"\n            },\n            \"created\": \"2022-02-08T12:14:41.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:41.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb15d84d0000a610cd0\"\n        },\n        {\n            \"id\": \"62025eb15d84d0000a610cd3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G265\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GG\"\n            },\n            \"created\": \"2022-02-08T12:14:41.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:41.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb15d84d0000a610cd1\"\n        },\n        {\n            \"id\": \"62025eaf5d84d0000a610cce\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G263\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GF\"\n            },\n            \"created\": \"2022-02-08T12:14:39.092Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:39.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eaf5d84d0000a610ccd\"\n        },\n        {\n            \"id\": \"62025ea85d84d0000a610ccb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:14:32.772Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:32.772Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea85d84d0000a610cca\"\n        },\n        {\n            \"id\": \"62025ea75d84d0000a610cc8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H658\"\n            },\n            \"created\": \"2022-02-08T12:14:31.809Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:31.810Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea75d84d0000a610cc7\"\n        },\n        {\n            \"id\": \"62025ea7b03af6000b2a35c1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H657\"\n            },\n            \"created\": \"2022-02-08T12:14:31.763Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:31.763Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea7b03af6000b2a35c0\"\n        },\n        {\n            \"id\": \"62025ea0b03af6000b2a35bc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:24.927Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:24.927Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea0b03af6000b2a35bb\"\n        },\n        {\n            \"id\": \"62025e9eb03af6000b2a35b7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:22.224Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:22.224Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e9eb03af6000b2a35b6\"\n        },\n        {\n            \"id\": \"62025e9ab03af6000b2a35b4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GD\"\n            },\n            \"created\": \"2022-02-08T12:14:18.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:18.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e9ab03af6000b2a35b3\"\n        },\n        {\n            \"id\": \"62025e8eb03af6000b2a35af\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:14:06.629Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:06.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8eb03af6000b2a35ae\"\n        },\n        {\n            \"id\": \"62025e8cb03af6000b2a35ac\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GC\"\n            },\n            \"created\": \"2022-02-08T12:14:04.405Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:04.405Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8cb03af6000b2a35ab\"\n        },\n        {\n            \"id\": \"62025e8bb03af6000b2a35a7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G259\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:03.207Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:03.207Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8bb03af6000b2a35a6\"\n        },\n        {\n            \"id\": \"62025e8a5d84d0000a610cc5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GB\"\n            },\n            \"created\": \"2022-02-08T12:14:02.461Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:02.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8a5d84d0000a610cc4\"\n        },\n        {\n            \"id\": \"62025e6db03af6000b2a35a2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:13:33.128Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:33.128Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e6db03af6000b2a35a1\"\n        },\n        {\n            \"id\": \"62025e6bb03af6000b2a359f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G9\"\n            },\n            \"created\": \"2022-02-08T12:13:31.050Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:31.051Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e6bb03af6000b2a359e\"\n        },\n        {\n            \"id\": \"62025e67b03af6000b2a359a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.747Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.747Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e67b03af6000b2a3599\"\n        },\n        {\n            \"id\": \"62025e67d4bbaa000bed3aa8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.581Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e67d4bbaa000bed3aa7\"\n        },\n        {\n            \"id\": \"62025e675d84d0000a610cc0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.570Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.570Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e675d84d0000a610cbf\"\n        },\n        {\n            \"id\": \"62025e60d4bbaa000bed3aa5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G259\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G8\"\n            },\n            \"created\": \"2022-02-08T12:13:20.328Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:20.328Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e60d4bbaa000bed3aa4\"\n        },\n        {\n            \"id\": \"62025e5dd4bbaa000bed3aa0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G254\",\n            \"nodeId\": [\n                \"2\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:17.622Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:17.622Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e5dd4bbaa000bed3a9f\"\n        },\n        {\n            \"id\": \"62025e58d4bbaa000bed3a9d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G258\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G7\"\n            },\n            \"created\": \"2022-02-08T12:13:12.509Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:12.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e58d4bbaa000bed3a9c\"\n        },\n        {\n            \"id\": \"62025e58d4bbaa000bed3a98\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:12.293Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:12.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e58d4bbaa000bed3a97\"\n        },\n        {\n            \"id\": \"62025e41d4bbaa000bed3a95\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G254\",\n            \"nodeId\": [\n                \"2\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G6\"\n            },\n            \"created\": \"2022-02-08T12:12:49.078Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:49.078Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e41d4bbaa000bed3a94\"\n        },\n        {\n            \"id\": \"62025e22d4bbaa000bed3a92\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G5\"\n            },\n            \"created\": \"2022-02-08T12:12:18.599Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:18.599Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e22d4bbaa000bed3a91\"\n        },\n        {\n            \"id\": \"62025e15d4bbaa000bed3a8d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:12:05.548Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:05.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e15d4bbaa000bed3a8c\"\n        },\n        {\n            \"id\": \"62025e155d84d0000a610cbb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:12:05.318Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:05.318Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e155d84d0000a610cba\"\n        },\n        {\n            \"id\": \"62025e0d5d84d0000a610cb8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G4\"\n            },\n            \"created\": \"2022-02-08T12:11:57.157Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:57.157Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e0d5d84d0000a610cb7\"\n        },\n        {\n            \"id\": \"62025e025d84d0000a610cb3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:11:46.094Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:46.094Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e025d84d0000a610cb2\"\n        },\n        {\n            \"id\": \"62025dff5d84d0000a610cb0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G3\"\n            },\n            \"created\": \"2022-02-08T12:11:43.826Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:43.826Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dff5d84d0000a610caf\"\n        },\n        {\n            \"id\": \"62025dfa5d84d0000a610cad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G249\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:11:38.416Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:38.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dfa5d84d0000a610cac\"\n        },\n        {\n            \"id\": \"62025df65d84d0000a610ca8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:11:34.640Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:34.640Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df65d84d0000a610ca7\"\n        },\n        {\n            \"id\": \"62025df25d84d0000a610ca5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G249\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G2\"\n            },\n            \"created\": \"2022-02-08T12:11:30.930Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df25d84d0000a610ca4\"\n        },\n        {\n            \"id\": \"62025df25d84d0000a610ca0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:11:30.612Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.612Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df25d84d0000a610c9f\"\n        },\n        {\n            \"id\": \"62025df2d4bbaa000bed3a88\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:11:30.471Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.471Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df2d4bbaa000bed3a87\"\n        },\n        {\n            \"id\": \"62025df0d4bbaa000bed3a85\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G1\"\n            },\n            \"created\": \"2022-02-08T12:11:28.222Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:28.222Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df0d4bbaa000bed3a84\"\n        },\n        {\n            \"id\": \"62025defd4bbaa000bed3a82\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G247\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FJ\"\n            },\n            \"created\": \"2022-02-08T12:11:27.447Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:27.447Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025defd4bbaa000bed3a81\"\n        },\n        {\n            \"id\": \"62025dedd4bbaa000bed3a7f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H64C\"\n            },\n            \"created\": \"2022-02-08T12:11:25.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:25.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dedd4bbaa000bed3a7e\"\n        },\n        {\n            \"id\": \"62025de7d4bbaa000bed3a7c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H649\"\n            },\n            \"created\": \"2022-02-08T12:11:19.359Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:19.359Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025de7d4bbaa000bed3a7b\"\n        },\n        {\n            \"id\": \"62025ddfd4bbaa000bed3a79\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FH\"\n            },\n            \"created\": \"2022-02-08T12:11:11.042Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:11.043Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ddfd4bbaa000bed3a78\"\n        },\n        {\n            \"id\": \"62025dd8d4bbaa000bed3a76\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G243\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FG\"\n            },\n            \"created\": \"2022-02-08T12:11:04.990Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:04.990Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd8d4bbaa000bed3a75\"\n        },\n        {\n            \"id\": \"62025dd85d84d0000a610c9d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FF\"\n            },\n            \"created\": \"2022-02-08T12:11:04.066Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:04.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd85d84d0000a610c9c\"\n        },\n        {\n            \"id\": \"62025dd75d84d0000a610c9a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FD\"\n            },\n            \"created\": \"2022-02-08T12:11:03.499Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:03.499Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd75d84d0000a610c99\"\n        },\n        {\n            \"id\": \"62025dd5445b91000b903901\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H638\"\n            },\n            \"created\": \"2022-02-08T12:11:01.836Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.837Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5445b91000b903900\"\n        },\n        {\n            \"id\": \"62025dd560004c000b2dd085\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H637\"\n            },\n            \"created\": \"2022-02-08T12:11:01.770Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.770Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd560004c000b2dd084\"\n        },\n        {\n            \"id\": \"62025dd5974821000a33e494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.750Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.750Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5974821000a33e493\"\n        },\n        {\n            \"id\": \"62025dd5ef60d4000b52a2a9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.713Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5ef60d4000b52a2a8\"\n        },\n        {\n            \"id\": \"62025dd5a52460000bdf3d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.673Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.674Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5a52460000bdf3d6c\"\n        },\n        {\n            \"id\": \"62025dd5e0f843000ac99d05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.511Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5e0f843000ac99d04\"\n        },\n        {\n            \"id\": \"62025dd55d84d0000a610c97\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.381Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd55d84d0000a610c96\"\n        },\n        {\n            \"id\": \"62025dd5470b70000b858b72\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.359Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.359Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5470b70000b858b71\"\n        },\n        {\n            \"id\": \"62025dd567ec9200090624a0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FC\"\n            },\n            \"created\": \"2022-02-08T12:11:01.308Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.308Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd567ec92000906249f\"\n        },\n        {\n            \"id\": \"62025dd50fbb0e000ba12d3f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.260Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.260Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd50fbb0e000ba12d3e\"\n        },\n        {\n            \"id\": \"62025dd5d0b332000a97ead6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.242Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.242Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d0b332000a97ead5\"\n        },\n        {\n            \"id\": \"62025dd57b46c6000b0c03f0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.210Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd57b46c6000b0c03ef\"\n        },\n        {\n            \"id\": \"62025dd5c209b6000a2cdb67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.190Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.190Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5c209b6000a2cdb66\"\n        },\n        {\n            \"id\": \"62025dd5174f01000bd7293d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.176Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.176Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5174f01000bd7293c\"\n        },\n        {\n            \"id\": \"62025dd5d4bbaa000bed3a73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.158Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.158Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d4bbaa000bed3a72\"\n        },\n        {\n            \"id\": \"62025dd5b12462000afb2c4d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FB\"\n            },\n            \"created\": \"2022-02-08T12:11:01.154Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.154Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5b12462000afb2c4c\"\n        },\n        {\n            \"id\": \"62025dd54262b8000a45a2b0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.115Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.115Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd54262b8000a45a2af\"\n        },\n        {\n            \"id\": \"62025dd51d814d000ba43359\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.064Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd51d814d000ba43358\"\n        },\n        {\n            \"id\": \"62025dd5963a03000ba22c05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.036Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.036Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5963a03000ba22c04\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fe\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.957Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fd\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.954Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.954Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec92000906249c\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c4a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.941Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.941Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c49\"\n        },\n        {\n            \"id\": \"62025dd460004c000b2dd082\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.819Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.819Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd460004c000b2dd081\"\n        },\n        {\n            \"id\": \"62025dd4ef60d4000b52a2a6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4ef60d4000b52a2a5\"\n        },\n        {\n            \"id\": \"62025dd4974821000a33e491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4974821000a33e490\"\n        },\n        {\n            \"id\": \"62025dd4b03af6000b2a3596\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.724Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.724Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b03af6000b2a3595\"\n        },\n        {\n            \"id\": \"62025dd4e0f843000ac99d02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.562Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.562Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4e0f843000ac99d01\"\n        },\n        {\n            \"id\": \"62025dd4a52460000bdf3d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4a52460000bdf3d69\"\n        },\n        {\n            \"id\": \"62025dd4470b70000b858b6f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.462Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.462Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4470b70000b858b6e\"\n        },\n        {\n            \"id\": \"62025dd44262b8000a45a2ad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.291Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.291Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd44262b8000a45a2ac\"\n        },\n        {\n            \"id\": \"62025dd4d4bbaa000bed3a70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.287Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.287Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d4bbaa000bed3a6f\"\n        },\n        {\n            \"id\": \"62025dd4174f01000bd7293a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.277Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.277Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4174f01000bd72939\"\n        },\n        {\n            \"id\": \"62025dd41d814d000ba43356\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd41d814d000ba43355\"\n        },\n        {\n            \"id\": \"62025dd4963a03000ba22c02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.174Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.174Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4963a03000ba22c01\"\n        },\n        {\n            \"id\": \"62025dd40fbb0e000ba12d3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.154Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.155Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd40fbb0e000ba12d3a\"\n        },\n        {\n            \"id\": \"62025dd45d84d0000a610c94\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.112Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd45d84d0000a610c93\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.098Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.098Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fa\"\n        },\n        {\n            \"id\": \"62025dd47b46c6000b0c03ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.094Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.094Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd47b46c6000b0c03eb\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.075Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.075Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec920009062499\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c47\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.073Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.073Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c46\"\n        },\n        {\n            \"id\": \"62025dd4d0b332000a97ead1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.044Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.044Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d0b332000a97ead0\"\n        },\n        {\n            \"id\": \"62025dd4c209b6000a2cdb63\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.018Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.018Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4c209b6000a2cdb62\"\n        },\n        {\n            \"id\": \"62025dd360004c000b2dd07f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.974Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.974Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd360004c000b2dd07e\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.951Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.951Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a2a2\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.945Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.945Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48d\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3593\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a3592\"\n        },\n        {\n            \"id\": \"62025dd3e0f843000ac99cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.783Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3e0f843000ac99cfe\"\n        },\n        {\n            \"id\": \"62025dd3a52460000bdf3d67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.669Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.669Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3a52460000bdf3d66\"\n        },\n        {\n            \"id\": \"62025dd3470b70000b858b6c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.630Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3470b70000b858b6b\"\n        },\n        {\n            \"id\": \"62025dd34262b8000a45a2aa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.514Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.514Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd34262b8000a45a2a9\"\n        },\n        {\n            \"id\": \"62025dd3174f01000bd72937\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.452Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3174f01000bd72936\"\n        },\n        {\n            \"id\": \"62025dd3d4bbaa000bed3a6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.453Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d4bbaa000bed3a6c\"\n        },\n        {\n            \"id\": \"62025dd31d814d000ba43353\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd31d814d000ba43352\"\n        },\n        {\n            \"id\": \"62025dd3963a03000ba22bff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.355Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.355Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3963a03000ba22bfe\"\n        },\n        {\n            \"id\": \"62025dd37b46c6000b0c03e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.289Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd37b46c6000b0c03e8\"\n        },\n        {\n            \"id\": \"62025dd3445b91000b9038f8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.278Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3445b91000b9038f7\"\n        },\n        {\n            \"id\": \"62025dd35d84d0000a610c91\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.270Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.271Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd35d84d0000a610c90\"\n        },\n        {\n            \"id\": \"62025dd3b12462000afb2c44\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.263Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.264Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b12462000afb2c43\"\n        },\n        {\n            \"id\": \"62025dd367ec920009062497\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.231Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.231Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd367ec920009062496\"\n        },\n        {\n            \"id\": \"62025dd3c209b6000a2cdb60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.216Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.216Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3c209b6000a2cdb5f\"\n        },\n        {\n            \"id\": \"62025dd3d0b332000a97eace\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.201Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d0b332000a97eacd\"\n        },\n        {\n            \"id\": \"62025dd30fbb0e000ba12d38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.122Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.123Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd30fbb0e000ba12d37\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3590\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.119Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a358f\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a29f\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.086Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.086Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48a\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.958Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cfb\"\n        },\n        {\n            \"id\": \"62025dd2a52460000bdf3d64\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G238\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F9\"\n            },\n            \"created\": \"2022-02-08T12:10:58.811Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.811Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2a52460000bdf3d63\"\n        },\n        {\n            \"id\": \"62025dd2470b70000b858b69\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.798Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2470b70000b858b68\"\n        },\n        {\n            \"id\": \"62025dd24262b8000a45a2a7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.715Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.715Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd24262b8000a45a2a6\"\n        },\n        {\n            \"id\": \"62025dd2a52460000bdf3d61\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.688Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.688Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2a52460000bdf3d60\"\n        },\n        {\n            \"id\": \"62025dd2d4bbaa000bed3a6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.650Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.651Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d4bbaa000bed3a69\"\n        },\n        {\n            \"id\": \"62025dd21d814d000ba43350\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd21d814d000ba4334f\"\n        },\n        {\n            \"id\": \"62025dd2963a03000ba22bfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.500Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.500Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2963a03000ba22bfb\"\n        },\n        {\n            \"id\": \"62025dd2174f01000bd72932\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.496Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.496Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2174f01000bd72931\"\n        },\n        {\n            \"id\": \"62025dd2445b91000b9038f5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.442Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.442Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2445b91000b9038f4\"\n        },\n        {\n            \"id\": \"62025dd2b12462000afb2c41\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.440Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.440Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b12462000afb2c40\"\n        },\n        {\n            \"id\": \"62025dd27b46c6000b0c03e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.430Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd27b46c6000b0c03e5\"\n        },\n        {\n            \"id\": \"62025dd25d84d0000a610c8e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd25d84d0000a610c8d\"\n        },\n        {\n            \"id\": \"62025dd267ec920009062494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.410Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.410Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd267ec920009062493\"\n        },\n        {\n            \"id\": \"62025dd2d0b332000a97eacb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d0b332000a97eaca\"\n        },\n        {\n            \"id\": \"62025dd20fbb0e000ba12d35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.332Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.333Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd20fbb0e000ba12d34\"\n        },\n        {\n            \"id\": \"62025dd2ef60d4000b52a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.315Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2ef60d4000b52a29c\"\n        },\n        {\n            \"id\": \"62025dd2b03af6000b2a358d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.295Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.295Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b03af6000b2a358c\"\n        },\n        {\n            \"id\": \"62025dd2974821000a33e488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.293Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2974821000a33e487\"\n        },\n        {\n            \"id\": \"62025dd2c209b6000a2cdb5c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.259Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.259Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2c209b6000a2cdb5b\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.180Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cf8\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.927Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a3\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.890Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b64\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.875Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.876Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5d\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.868Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.869Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a66\"\n        },\n        {\n            \"id\": \"62025dd11d814d000ba4334d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.790Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.790Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd11d814d000ba4334c\"\n        },\n        {\n            \"id\": \"62025dd1174f01000bd7292f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.706Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.706Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1174f01000bd7292e\"\n        },\n        {\n            \"id\": \"62025dd1445b91000b9038f2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.601Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.601Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1445b91000b9038f1\"\n        },\n        {\n            \"id\": \"62025dd17b46c6000b0c03e3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.546Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.546Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd17b46c6000b0c03e2\"\n        },\n        {\n            \"id\": \"62025dd1b12462000afb2c3e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.529Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.530Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b12462000afb2c3d\"\n        },\n        {\n            \"id\": \"62025dd1d0b332000a97eac8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.498Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.499Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d0b332000a97eac7\"\n        },\n        {\n            \"id\": \"62025dd167ec920009062491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd167ec920009062490\"\n        },\n        {\n            \"id\": \"62025dd1ef60d4000b52a29a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.464Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1ef60d4000b52a299\"\n        },\n        {\n            \"id\": \"62025dd1974821000a33e485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.426Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.426Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1974821000a33e484\"\n        },\n        {\n            \"id\": \"62025dd1963a03000ba22bf8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1963a03000ba22bf7\"\n        },\n        {\n            \"id\": \"62025dd1c209b6000a2cdb59\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.412Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.412Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1c209b6000a2cdb58\"\n        },\n        {\n            \"id\": \"62025dd1b03af6000b2a358a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b03af6000b2a3589\"\n        },\n        {\n            \"id\": \"62025dd15d84d0000a610c8a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.401Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd15d84d0000a610c89\"\n        },\n        {\n            \"id\": \"62025dd10fbb0e000ba12d31\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.368Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd10fbb0e000ba12d30\"\n        },\n        {\n            \"id\": \"62025dd1e0f843000ac99cf6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.366Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.366Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1e0f843000ac99cf5\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.142Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.142Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a0\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5a\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a64\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.077Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.077Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a63\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b62\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.070Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b61\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba4334a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.984Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.984Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43349\"\n        },\n        {\n            \"id\": \"62025dd060004c000b2dd07b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.907Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd060004c000b2dd07a\"\n        },\n        {\n            \"id\": \"62025dd0174f01000bd7292c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.821Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.821Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0174f01000bd7292b\"\n        },\n        {\n            \"id\": \"62025dd0445b91000b9038ef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.703Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.703Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0445b91000b9038ee\"\n        },\n        {\n            \"id\": \"62025dd07b46c6000b0c03e0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.701Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.702Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd07b46c6000b0c03df\"\n        },\n        {\n            \"id\": \"62025dd0b12462000afb2c3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.631Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b12462000afb2c3a\"\n        },\n        {\n            \"id\": \"62025dd0d0b332000a97eac5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0d0b332000a97eac4\"\n        },\n        {\n            \"id\": \"62025dd067ec92000906248e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.552Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.553Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd067ec92000906248d\"\n        },\n        {\n            \"id\": \"62025dd0ef60d4000b52a297\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.549Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0ef60d4000b52a296\"\n        },\n        {\n            \"id\": \"62025dd0963a03000ba22bf5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.518Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.518Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0963a03000ba22bf4\"\n        },\n        {\n            \"id\": \"62025dd00fbb0e000ba12d2e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.512Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd00fbb0e000ba12d2d\"\n        },\n        {\n            \"id\": \"62025dd05d84d0000a610c87\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.509Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd05d84d0000a610c86\"\n        },\n        {\n            \"id\": \"62025dd0974821000a33e482\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.478Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0974821000a33e481\"\n        },\n        {\n            \"id\": \"62025dd0e0f843000ac99cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.460Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.460Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0e0f843000ac99cf2\"\n        },\n        {\n            \"id\": \"62025dd0c209b6000a2cdb56\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.445Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0c209b6000a2cdb55\"\n        },\n        {\n            \"id\": \"62025dd0b03af6000b2a3587\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b03af6000b2a3586\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba43347\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.136Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.136Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43346\"\n        },\n        {\n            \"id\": \"62025dd04262b8000a45a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.035Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd04262b8000a45a29c\"\n        },\n        {\n            \"id\": \"62025dcfa52460000bdf3d57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfa52460000bdf3d56\"\n        },\n        {\n            \"id\": \"62025dcf60004c000b2dd077\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.878Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.878Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf60004c000b2dd076\"\n        },\n        {\n            \"id\": \"62025dcf174f01000bd72929\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.847Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.847Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf174f01000bd72928\"\n        },\n        {\n            \"id\": \"62025dcf470b70000b858b5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.834Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.835Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf470b70000b858b5d\"\n        },\n        {\n            \"id\": \"62025dcfd4bbaa000bed3a60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.825Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.825Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd4bbaa000bed3a5f\"\n        },\n        {\n            \"id\": \"62025dcf445b91000b9038ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.734Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf445b91000b9038eb\"\n        },\n        {\n            \"id\": \"62025dcf7b46c6000b0c03dd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.723Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.723Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf7b46c6000b0c03dc\"\n        },\n        {\n            \"id\": \"62025dcfd0b332000a97eac2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.714Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd0b332000a97eac1\"\n        },\n        {\n            \"id\": \"62025dcfb12462000afb2c38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.683Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb12462000afb2c37\"\n        },\n        {\n            \"id\": \"62025dcf0fbb0e000ba12d2b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.675Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.675Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf0fbb0e000ba12d2a\"\n        },\n        {\n            \"id\": \"62025dcf974821000a33e47f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.664Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.664Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf974821000a33e47e\"\n        },\n        {\n            \"id\": \"62025dcf5d84d0000a610c84\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.628Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.628Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf5d84d0000a610c83\"\n        },\n        {\n            \"id\": \"62025dcfe0f843000ac99cf0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfe0f843000ac99cef\"\n        },\n        {\n            \"id\": \"62025dcfef60d4000b52a294\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfef60d4000b52a293\"\n        },\n        {\n            \"id\": \"62025dcfb03af6000b2a3584\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.607Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.607Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb03af6000b2a3583\"\n        },\n        {\n            \"id\": \"62025dcf963a03000ba22bf2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.595Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.595Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf963a03000ba22bf1\"\n        },\n        {\n            \"id\": \"62025dcf67ec92000906248b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.574Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.574Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf67ec92000906248a\"\n        },\n        {\n            \"id\": \"62025dcfc209b6000a2cdb53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.472Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.472Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfc209b6000a2cdb52\"\n        },\n        {\n            \"id\": \"62025dcf1d814d000ba43344\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.055Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf1d814d000ba43343\"\n        },\n        {\n            \"id\": \"62025dce174f01000bd72926\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.933Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce174f01000bd72925\"\n        },\n        {\n            \"id\": \"62025dced4bbaa000bed3a5d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.901Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced4bbaa000bed3a5c\"\n        },\n        {\n            \"id\": \"62025dce0fbb0e000ba12d28\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.900Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.900Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce0fbb0e000ba12d27\"\n        },\n        {\n            \"id\": \"62025dce7b46c6000b0c03da\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.861Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.861Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce7b46c6000b0c03d9\"\n        },\n        {\n            \"id\": \"62025dceb12462000afb2c35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.797Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb12462000afb2c34\"\n        },\n        {\n            \"id\": \"62025dced0b332000a97eabf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.794Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.794Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced0b332000a97eabe\"\n        },\n        {\n            \"id\": \"62025dce445b91000b9038e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.766Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.766Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce445b91000b9038e8\"\n        },\n        {\n            \"id\": \"62025dcee0f843000ac99ced\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.760Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.760Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcee0f843000ac99cec\"\n        },\n        {\n            \"id\": \"62025dce974821000a33e47c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.716Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.717Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce974821000a33e47b\"\n        },\n        {\n            \"id\": \"62025dce5d84d0000a610c81\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.710Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce5d84d0000a610c80\"\n        },\n        {\n            \"id\": \"62025dceb03af6000b2a3581\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb03af6000b2a3580\"\n        },\n        {\n            \"id\": \"62025dce67ec920009062488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.575Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.575Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce67ec920009062487\"\n        },\n        {\n            \"id\": \"62025dce963a03000ba22bef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.501Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce963a03000ba22bee\"\n        },\n        {\n            \"id\": \"62025dcea52460000bdf3d54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.432Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.432Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcea52460000bdf3d53\"\n        },\n        {\n            \"id\": \"62025dcd7b46c6000b0c03d7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.939Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.939Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd7b46c6000b0c03d6\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d25\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.922Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d24\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a5a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.892Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a59\"\n        },\n        {\n            \"id\": \"62025dcd5d84d0000a610c7e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.775Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.775Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd5d84d0000a610c7d\"\n        },\n        {\n            \"id\": \"62025dcd67ec920009062485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.709Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd67ec920009062484\"\n        },\n        {\n            \"id\": \"62025dcdb03af6000b2a357e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.699Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.699Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdb03af6000b2a357d\"\n        },\n        {\n            \"id\": \"62025dcd174f01000bd72922\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.661Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.661Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd174f01000bd72921\"\n        },\n        {\n            \"id\": \"62025dcd974821000a33e478\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.616Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd974821000a33e477\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d22\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.040Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.040Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d21\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.034Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.034Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a56\"\n        },\n        {\n            \"id\": \"62025dcc5d84d0000a610c7b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc5d84d0000a610c7a\"\n        },\n        {\n            \"id\": \"62025dccb03af6000b2a357b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.845Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccb03af6000b2a357a\"\n        },\n        {\n            \"id\": \"62025dcc174f01000bd7291f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.785Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc174f01000bd7291e\"\n        },\n        {\n            \"id\": \"62025dcc470b70000b858b5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.292Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc470b70000b858b5a\"\n        },\n        {\n            \"id\": \"62025dcc4262b8000a45a299\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.202Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.202Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc4262b8000a45a298\"\n        },\n        {\n            \"id\": \"62025dcc0fbb0e000ba12d1f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.182Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.182Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc0fbb0e000ba12d1e\"\n        },\n        {\n            \"id\": \"62025dccef60d4000b52a291\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccef60d4000b52a290\"\n        },\n        {\n            \"id\": \"62025dccd4bbaa000bed3a54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.111Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccd4bbaa000bed3a53\"\n        },\n        {\n            \"id\": \"62025dcbc209b6000a2cdb50\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G237\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F8\"\n            },\n            \"created\": \"2022-02-08T12:10:51.622Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.623Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbc209b6000a2cdb4f\"\n        },\n        {\n            \"id\": \"62025dcbe0f843000ac99cea\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.531Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.531Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbe0f843000ac99ce9\"\n        },\n        {\n            \"id\": \"62025dcbd0b332000a97eabc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.415Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.415Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbd0b332000a97eabb\"\n        },\n        {\n            \"id\": \"62025dcba52460000bdf3d51\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcba52460000bdf3d50\"\n        },\n        {\n            \"id\": \"62025dcb445b91000b9038e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.402Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.402Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb445b91000b9038e5\"\n        },\n        {\n            \"id\": \"62025dcb0fbb0e000ba12d1c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.296Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb0fbb0e000ba12d1b\"\n        },\n        {\n            \"id\": \"62025dca7b46c6000b0c03d4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:50.835Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:50.836Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dca7b46c6000b0c03d3\"\n        },\n        {\n            \"id\": \"62025dc97b46c6000b0c03d1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.963Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc97b46c6000b0c03d0\"\n        },\n        {\n            \"id\": \"62025dc94262b8000a45a296\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.846Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc94262b8000a45a295\"\n        },\n        {\n            \"id\": \"62025dc9e0f843000ac99ce7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.823Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.823Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc9e0f843000ac99ce6\"\n        },\n        {\n            \"id\": \"62025dc27b46c6000b0c03cc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:42.828Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:42.828Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc27b46c6000b0c03cb\"\n        },\n        {\n            \"id\": \"62025dc2a52460000bdf3d4e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F7\"\n            },\n            \"created\": \"2022-02-08T12:10:42.584Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:42.585Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc2a52460000bdf3d4d\"\n        },\n        {\n            \"id\": \"62025dc14262b8000a45a292\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F6\"\n            },\n            \"created\": \"2022-02-08T12:10:41.799Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:41.800Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc14262b8000a45a291\"\n        },\n        {\n            \"id\": \"62025dc14262b8000a45a28f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F5\"\n            },\n            \"created\": \"2022-02-08T12:10:41.437Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:41.437Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc14262b8000a45a28e\"\n        },\n        {\n            \"id\": \"62025dc04262b8000a45a28a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.610Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc04262b8000a45a289\"\n        },\n        {\n            \"id\": \"62025dc07b46c6000b0c03c7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.610Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc07b46c6000b0c03c6\"\n        },\n        {\n            \"id\": \"62025dc067ec920009062480\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.533Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.533Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc067ec92000906247f\"\n        },\n        {\n            \"id\": \"62025dc00fbb0e000ba12d17\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.455Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.455Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc00fbb0e000ba12d16\"\n        },\n        {\n            \"id\": \"62025dc0d0b332000a97eab9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F4\"\n            },\n            \"created\": \"2022-02-08T12:10:40.454Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.454Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc0d0b332000a97eab8\"\n        },\n        {\n            \"id\": \"62025dbf0fbb0e000ba12d14\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:39.067Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:39.067Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbf0fbb0e000ba12d13\"\n        },\n        {\n            \"id\": \"62025dbf67ec92000906247d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"email\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:39.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:39.057Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbf67ec92000906247c\"\n        },\n        {\n            \"id\": \"62025dbe67ec92000906247a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"email\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:38.288Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:38.288Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbe67ec920009062479\"\n        },\n        {\n            \"id\": \"62025dbe0fbb0e000ba12d11\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:38.281Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:38.282Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbe0fbb0e000ba12d10\"\n        },\n        {\n            \"id\": \"62025db867ec920009062477\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F2\"\n            },\n            \"created\": \"2022-02-08T12:10:32.579Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:32.579Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db867ec920009062476\"\n        },\n        {\n            \"id\": \"62025db80fbb0e000ba12d0e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F1\"\n            },\n            \"created\": \"2022-02-08T12:10:32.392Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:32.392Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db80fbb0e000ba12d0d\"\n        },\n        {\n            \"id\": \"62025db70fbb0e000ba12d0b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322231172\"\n            },\n            \"created\": \"2022-02-08T12:10:31.563Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:31.563Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db70fbb0e000ba12d0a\"\n        },\n        {\n            \"id\": \"62025db767ec920009062474\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DJ\"\n            },\n            \"created\": \"2022-02-08T12:10:31.324Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:31.324Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db767ec920009062473\"\n        },\n        {\n            \"id\": \"62025db60fbb0e000ba12d08\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Nationalities\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"nationalities\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:30.941Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.942Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db60fbb0e000ba12d07\"\n        },\n        {\n            \"id\": \"62025db667ec920009062471\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DH\"\n            },\n            \"created\": \"2022-02-08T12:10:30.550Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.551Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db667ec920009062470\"\n        },\n        {\n            \"id\": \"62025db60fbb0e000ba12d05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322230194\"\n            },\n            \"created\": \"2022-02-08T12:10:30.549Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.550Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db60fbb0e000ba12d04\"\n        },\n        {\n            \"id\": \"62025db50fbb0e000ba12d02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Nationality\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"nationality\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:29.643Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:29.643Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db50fbb0e000ba12d01\"\n        },\n        {\n            \"id\": \"62025db40fbb0e000ba12cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Address Detail\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"addressDetail.buildingNumber\",\n                    \"addressDetail.address1\",\n                    \"addressDetail.address2\",\n                    \"addressDetail.address3\",\n                    \"addressDetail.address4\",\n                    \"addressDetail.postCode\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:28.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db40fbb0e000ba12cfe\"\n        },\n        {\n            \"id\": \"62025db40fbb0e000ba12cfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H627\"\n            },\n            \"created\": \"2022-02-08T12:10:28.250Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.250Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db40fbb0e000ba12cfb\"\n        },\n        {\n            \"id\": \"62025db467ec92000906246e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H628\"\n            },\n            \"created\": \"2022-02-08T12:10:28.177Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.177Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db467ec92000906246d\"\n        },\n        {\n            \"id\": \"62025db44262b8000a45a287\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322227734\"\n            },\n            \"created\": \"2022-02-08T12:10:28.124Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.125Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db44262b8000a45a286\"\n        },\n        {\n            \"id\": \"62025db37b46c6000b0c03c4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Bank Details\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"bankDetails.sortCode\",\n                    \"bankDetails.accountNumber\",\n                    \"bankDetails.debitPaymentMandate\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:27.701Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.701Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db37b46c6000b0c03c3\"\n        },\n        {\n            \"id\": \"62025db30fbb0e000ba12cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* \\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:27.160Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.160Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db30fbb0e000ba12cf8\"\n        },\n        {\n            \"id\": \"62025db30fbb0e000ba12cf6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:27.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db30fbb0e000ba12cf5\"\n        },\n        {\n            \"id\": \"62025db267ec92000906246b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Employers\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"employers[0]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:26.959Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:26.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db267ec92000906246a\"\n        },\n        {\n            \"id\": \"62025db067ec920009062466\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DG\"\n            },\n            \"created\": \"2022-02-08T12:10:24.841Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:24.841Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db067ec920009062464\"\n        },\n        {\n            \"id\": \"62025db067ec920009062467\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DG\"\n            },\n            \"created\": \"2022-02-08T12:10:24.841Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:24.841Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db067ec920009062465\"\n        },\n        {\n            \"id\": \"62025dac67ec920009062461\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H62F\"\n            },\n            \"created\": \"2022-02-08T12:10:20.904Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:20.904Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dac67ec920009062460\"\n        },\n        {\n            \"id\": \"62025dac67ec92000906245f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H62F\"\n            },\n            \"created\": \"2022-02-08T12:10:20.901Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:20.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dac67ec92000906245e\"\n        },\n        {\n            \"id\": \"62025dab0fbb0e000ba12cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:19.634Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:19.634Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dab0fbb0e000ba12cf2\"\n        },\n        {\n            \"id\": \"62025dab7b46c6000b0c03c1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DF\"\n            },\n            \"created\": \"2022-02-08T12:10:19.508Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:19.508Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dab7b46c6000b0c03c0\"\n        },\n        {\n            \"id\": \"62025daa7b46c6000b0c03bc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:18.584Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:18.584Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025daa7b46c6000b0c03bb\"\n        },\n        {\n            \"id\": \"62025da97b46c6000b0c03b9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DD\"\n            },\n            \"created\": \"2022-02-08T12:10:17.380Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:17.380Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da97b46c6000b0c03b8\"\n        },\n        {\n            \"id\": \"62025da77b46c6000b0c03b6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DC\"\n            },\n            \"created\": \"2022-02-08T12:10:15.220Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:15.220Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da77b46c6000b0c03b5\"\n        },\n        {\n            \"id\": \"62025da37b46c6000b0c03b1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:11.866Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.866Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da37b46c6000b0c03b0\"\n        },\n        {\n            \"id\": \"62025da367ec92000906245c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DB\"\n            },\n            \"created\": \"2022-02-08T12:10:11.346Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da367ec92000906245b\"\n        },\n        {\n            \"id\": \"62025da367ec920009062459\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:11.267Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da367ec920009062458\"\n        },\n        {\n            \"id\": \"62025da267ec920009062456\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D9\"\n            },\n            \"created\": \"2022-02-08T12:10:10.789Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.789Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec920009062455\"\n        },\n        {\n            \"id\": \"62025da267ec920009062451\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D8\"\n            },\n            \"created\": \"2022-02-08T12:10:10.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec92000906244f\"\n        },\n        {\n            \"id\": \"62025da267ec920009062452\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D8\"\n            },\n            \"created\": \"2022-02-08T12:10:10.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec920009062450\"\n        },\n        {\n            \"id\": \"62025da167ec92000906244d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D7\"\n            },\n            \"created\": \"2022-02-08T12:10:09.407Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:09.407Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da167ec92000906244c\"\n        },\n        {\n            \"id\": \"62025d9b67ec92000906244a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D6\"\n            },\n            \"created\": \"2022-02-08T12:10:03.236Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:03.236Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9b67ec920009062449\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062447\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D5\"\n            },\n            \"created\": \"2022-02-08T12:10:02.229Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.230Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062446\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062443\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61M\"\n            },\n            \"created\": \"2022-02-08T12:10:02.120Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062442\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062441\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61M\"\n            },\n            \"created\": \"2022-02-08T12:10:02.112Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062440\"\n        },\n        {\n            \"id\": \"62025d9967ec92000906243d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D4\"\n            },\n            \"created\": \"2022-02-08T12:10:01.028Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:01.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9967ec92000906243b\"\n        },\n        {\n            \"id\": \"62025d9967ec92000906243c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D4\"\n            },\n            \"created\": \"2022-02-08T12:10:01.027Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:01.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9967ec92000906243a\"\n        },\n        {\n            \"id\": \"62025d9867ec920009062438\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D3\"\n            },\n            \"created\": \"2022-02-08T12:10:00.834Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.834Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9867ec920009062437\"\n        },\n        {\n            \"id\": \"62025d987b46c6000b0c03ab\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:00.429Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.429Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d987b46c6000b0c03aa\"\n        },\n        {\n            \"id\": \"62025d980fbb0e000ba12cee\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:00.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d980fbb0e000ba12ced\"\n        },\n        {\n            \"id\": \"62025d9767ec920009062435\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D2\"\n            },\n            \"created\": \"2022-02-08T12:09:59.911Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:59.911Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9767ec920009062434\"\n        },\n        {\n            \"id\": \"62025d950fbb0e000ba12ceb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61K\"\n            },\n            \"created\": \"2022-02-08T12:09:57.798Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:57.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d950fbb0e000ba12cea\"\n        },\n        {\n            \"id\": \"62025d910fbb0e000ba12ce7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D1\"\n            },\n            \"created\": \"2022-02-08T12:09:53.767Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:53.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d910fbb0e000ba12ce5\"\n        },\n        {\n            \"id\": \"62025d910fbb0e000ba12ce6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D1\"\n            },\n            \"created\": \"2022-02-08T12:09:53.766Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:53.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d910fbb0e000ba12ce4\"\n        },\n        {\n            \"id\": \"62025d8f0fbb0e000ba12ce2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CJ\"\n            },\n            \"created\": \"2022-02-08T12:09:51.582Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:51.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8f0fbb0e000ba12ce1\"\n        },\n        {\n            \"id\": \"62025d8e0fbb0e000ba12cdf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Status\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468CH\",\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:50.523Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:50.523Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8e0fbb0e000ba12cde\"\n        },\n        {\n            \"id\": \"62025d8d0fbb0e000ba12cdc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CH\"\n            },\n            \"created\": \"2022-02-08T12:09:49.754Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:49.754Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8d0fbb0e000ba12cdb\"\n        },\n        {\n            \"id\": \"62025d8d0fbb0e000ba12cd9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CG\"\n            },\n            \"created\": \"2022-02-08T12:09:49.284Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:49.284Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8d0fbb0e000ba12cd8\"\n        },\n        {\n            \"id\": \"62025d8b0fbb0e000ba12cd4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:47.283Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:47.283Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8b0fbb0e000ba12cd3\"\n        },\n        {\n            \"id\": \"62025d870fbb0e000ba12cd1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CF\"\n            },\n            \"created\": \"2022-02-08T12:09:43.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:43.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d870fbb0e000ba12cd0\"\n        },\n        {\n            \"id\": \"62025d870fbb0e000ba12ccc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:43.436Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:43.437Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d870fbb0e000ba12ccb\"\n        },\n        {\n            \"id\": \"62025d867b46c6000b0c03a8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CD\"\n            },\n            \"created\": \"2022-02-08T12:09:42.996Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:42.996Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d867b46c6000b0c03a7\"\n        },\n        {\n            \"id\": \"62025d830fbb0e000ba12cc9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Status\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468CC\",\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:39.502Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:39.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d830fbb0e000ba12cc8\"\n        },\n        {\n            \"id\": \"62025d820fbb0e000ba12cc6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CC\"\n            },\n            \"created\": \"2022-02-08T12:09:38.634Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:38.634Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d820fbb0e000ba12cc5\"\n        },\n        {\n            \"id\": \"62025d810fbb0e000ba12cc2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CB\"\n            },\n            \"created\": \"2022-02-08T12:09:37.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:37.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d810fbb0e000ba12cc0\"\n        },\n        {\n            \"id\": \"62025d810fbb0e000ba12cc1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CB\"\n            },\n            \"created\": \"2022-02-08T12:09:37.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:37.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d810fbb0e000ba12cbf\"\n        },\n        {\n            \"id\": \"62025d807b46c6000b0c03a5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C9\"\n            },\n            \"created\": \"2022-02-08T12:09:36.548Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d807b46c6000b0c03a4\"\n        },\n        {\n            \"id\": \"62025d8067ec920009062432\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C8\"\n            },\n            \"created\": \"2022-02-08T12:09:36.483Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.483Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8067ec920009062431\"\n        },\n        {\n            \"id\": \"62025d800fbb0e000ba12cbd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322176102\"\n            },\n            \"created\": \"2022-02-08T12:09:36.478Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d800fbb0e000ba12cbc\"\n        },\n        {\n            \"id\": \"62025d8067ec92000906242f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C7\"\n            },\n            \"created\": \"2022-02-08T12:09:36.171Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.171Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8067ec92000906242e\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c03a2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322175355\"\n            },\n            \"created\": \"2022-02-08T12:09:35.752Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.752Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c03a1\"\n        },\n        {\n            \"id\": \"62025d7f0fbb0e000ba12cba\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payment\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C5\",\n                \"updatedFields\": [\n                    \"recurringPayment\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:35.300Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.301Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f0fbb0e000ba12cb9\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c039f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C6\"\n            },\n            \"created\": \"2022-02-08T12:09:35.263Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.263Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c039e\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c039c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322174647\"\n            },\n            \"created\": \"2022-02-08T12:09:35.029Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.029Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c039b\"\n        },\n        {\n            \"id\": \"62025d7e0fbb0e000ba12cb7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C5\"\n            },\n            \"created\": \"2022-02-08T12:09:34.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:34.905Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7e0fbb0e000ba12cb6\"\n        },\n        {\n            \"id\": \"62025d7e7b46c6000b0c0399\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C4\"\n            },\n            \"created\": \"2022-02-08T12:09:34.336Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:34.336Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7e7b46c6000b0c0398\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0395\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.860Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.860Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0394\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0393\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.856Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.856Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0392\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c038f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.465Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c038e\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c038d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.461Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c038c\"\n        },\n        {\n            \"id\": \"62025d7d0fbb0e000ba12cb3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H616\"\n            },\n            \"created\": \"2022-02-08T12:09:33.458Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.459Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d0fbb0e000ba12cb2\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0389\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C3\"\n            },\n            \"created\": \"2022-02-08T12:09:33.060Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0387\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0388\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C3\"\n            },\n            \"created\": \"2022-02-08T12:09:33.059Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0386\"\n        },\n        {\n            \"id\": \"62025d7c67ec92000906242c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322172600\"\n            },\n            \"created\": \"2022-02-08T12:09:32.980Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.980Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c67ec92000906242b\"\n        },\n        {\n            \"id\": \"62025d7c67ec920009062427\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:32.258Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.258Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c67ec920009062426\"\n        },\n        {\n            \"id\": \"62025d7c0fbb0e000ba12cb0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C2\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:32.164Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.164Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c0fbb0e000ba12caf\"\n        },\n        {\n            \"id\": \"62025d7b0fbb0e000ba12cad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C2\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:31.792Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:31.792Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7b0fbb0e000ba12cac\"\n        },\n        {\n            \"id\": \"62025d7b0fbb0e000ba12caa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C2\"\n            },\n            \"created\": \"2022-02-08T12:09:31.381Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:31.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7b0fbb0e000ba12ca9\"\n        },\n        {\n            \"id\": \"62025d7a67ec920009062424\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:09:30.712Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.712Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec920009062423\"\n        },\n        {\n            \"id\": \"62025d7a67ec920009062421\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C1\"\n            },\n            \"created\": \"2022-02-08T12:09:30.323Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.323Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec920009062420\"\n        },\n        {\n            \"id\": \"62025d7a67ec92000906241e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BJ\"\n            },\n            \"created\": \"2022-02-08T12:09:30.010Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.010Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec92000906241d\"\n        },\n        {\n            \"id\": \"62025d790fbb0e000ba12ca7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H612\"\n            },\n            \"created\": \"2022-02-08T12:09:29.931Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:29.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d790fbb0e000ba12ca6\"\n        },\n        {\n            \"id\": \"62025d780fbb0e000ba12ca4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BH\"\n            },\n            \"created\": \"2022-02-08T12:09:28.691Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:28.691Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d780fbb0e000ba12ca3\"\n        },\n        {\n            \"id\": \"62025d780fbb0e000ba12ca1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BG\"\n            },\n            \"created\": \"2022-02-08T12:09:28.423Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:28.423Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d780fbb0e000ba12ca0\"\n        },\n        {\n            \"id\": \"62025d770fbb0e000ba12c9c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:27.649Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:27.649Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d770fbb0e000ba12c9b\"\n        },\n        {\n            \"id\": \"62025d7767ec92000906241b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BF\"\n            },\n            \"created\": \"2022-02-08T12:09:27.253Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:27.254Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7767ec92000906241a\"\n        },\n        {\n            \"id\": \"62025d7567ec920009062418\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BC\"\n            },\n            \"created\": \"2022-02-08T12:09:25.872Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.872Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7567ec920009062417\"\n        },\n        {\n            \"id\": \"62025d750fbb0e000ba12c96\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H5SR\"\n            },\n            \"created\": \"2022-02-08T12:09:25.763Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.763Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d750fbb0e000ba12c95\"\n        },\n        {\n            \"id\": \"62025d7567ec920009062413\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:25.391Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.391Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7567ec920009062412\"\n        },\n        {\n            \"id\": \"62025d757b46c6000b0c0384\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BB\"\n            },\n            \"created\": \"2022-02-08T12:09:25.064Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d757b46c6000b0c0383\"\n        },\n        {\n            \"id\": \"62025d747b46c6000b0c0381\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B9\"\n            },\n            \"created\": \"2022-02-08T12:09:24.723Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:24.723Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d747b46c6000b0c0380\"\n        },\n        {\n            \"id\": \"62025d740fbb0e000ba12c93\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B8\"\n            },\n            \"created\": \"2022-02-08T12:09:24.678Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:24.679Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d740fbb0e000ba12c92\"\n        },\n        {\n            \"id\": \"62025d7367ec920009062410\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B7\"\n            },\n            \"created\": \"2022-02-08T12:09:23.515Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:23.515Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7367ec92000906240f\"\n        },\n        {\n            \"id\": \"62025d7367ec92000906240d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B6\"\n            },\n            \"created\": \"2022-02-08T12:09:23.313Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:23.313Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7367ec92000906240c\"\n        },\n        {\n            \"id\": \"62025d7267ec920009062408\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:22.730Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:22.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7267ec920009062407\"\n        },\n        {\n            \"id\": \"62025d720fbb0e000ba12c8e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:22.587Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:22.588Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d720fbb0e000ba12c8d\"\n        },\n        {\n            \"id\": \"62025d717b46c6000b0c037e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B5\"\n            },\n            \"created\": \"2022-02-08T12:09:21.492Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:21.493Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d717b46c6000b0c037d\"\n        },\n        {\n            \"id\": \"62025d710fbb0e000ba12c8b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B4\"\n            },\n            \"created\": \"2022-02-08T12:09:21.352Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:21.352Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d710fbb0e000ba12c8a\"\n        },\n        {\n            \"id\": \"62025d707b46c6000b0c037b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B3\"\n            },\n            \"created\": \"2022-02-08T12:09:20.448Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:20.448Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d707b46c6000b0c037a\"\n        },\n        {\n            \"id\": \"62025d707b46c6000b0c0378\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B2\"\n            },\n            \"created\": \"2022-02-08T12:09:20.214Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:20.215Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d707b46c6000b0c0377\"\n        },\n        {\n            \"id\": \"62025d6f7b46c6000b0c0375\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B1\"\n            },\n            \"created\": \"2022-02-08T12:09:19.819Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:19.820Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6f7b46c6000b0c0374\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99ce4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689J\"\n            },\n            \"created\": \"2022-02-08T12:09:18.768Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.768Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99ce3\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99ce1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689H\"\n            },\n            \"created\": \"2022-02-08T12:09:18.522Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.523Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99ce0\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99cde\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689G\"\n            },\n            \"created\": \"2022-02-08T12:09:18.280Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.280Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99cdd\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cdb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689F\"\n            },\n            \"created\": \"2022-02-08T12:09:17.720Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.720Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cda\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689D\"\n            },\n            \"created\": \"2022-02-08T12:09:17.368Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd7\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689C\"\n            },\n            \"created\": \"2022-02-08T12:09:17.135Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.135Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd4\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689B\"\n            },\n            \"created\": \"2022-02-08T12:09:17.035Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd1\"\n        },\n        {\n            \"id\": \"62025d6ce0f843000ac99ccf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246899\"\n            },\n            \"created\": \"2022-02-08T12:09:16.924Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:16.924Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ce0f843000ac99cce\"\n        },\n        {\n            \"id\": \"62025d6ce0f843000ac99ccc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246898\"\n            },\n            \"created\": \"2022-02-08T12:09:16.430Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:16.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ce0f843000ac99ccb\"\n        },\n        {\n            \"id\": \"62025d6be0f843000ac99cc9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246897\"\n            },\n            \"created\": \"2022-02-08T12:09:15.874Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:15.875Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6be0f843000ac99cc8\"\n        }\n    ],\n    \"meta\": {\n        \"page\": 1,\n    \"pageSize\": 20,\n    \"totalCount\": 4,\n    \"totalPages\": 1\n        \"count\": 402\n    }\n}"},{"id":"0c3e8438-2048-47c8-8d2b-3f4996ef5bde","name":"Message Search – Single Account","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?accountId=02468G5&pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates."},{"key":"fromDate","value":"2022-01-01T00:00:00.000Z","description":"The start date of a range within which the message was created. ","disabled":true},{"key":"toDate","value":"2022-02-01T00:00:00.000Z","description":"The end date of a range within which the message was created. ","disabled":true},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"data\": [\n    {\n      \"id\": \"62025e22d4bbaa000bed3a92\",\n      \"firmId\": \"TEST1\",\n      \"clientId\": \"028G24J\",\n      \"nodeId\": [\"0\"],\n      \"messageType\": \"NEW_ACCOUNT\",\n      \"read\": false,\n      \"archived\": false,\n      \"status\": \"ACTIVE\",\n      \"subject\": \"New Account\",\n      \"payload\": {\n        \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n        \"accountId\": \"02468G5\"\n      },\n      \"created\": \"2022-02-08T12:12:18.599Z\",\n      \"auditDetails\": {\n        \"updateDate\": \"2022-02-08T12:12:18.599Z\",\n        \"userFirmId\": \"BACKGROUND\",\n        \"userId\": \"Background\",\n        \"version\": 1,\n        \"application\": \"CommunicationsProcessor\"\n      },\n      \"updateId\": \"62025e22d4bbaa000bed3a91\"\n    }\n  ],\n  \"meta\": {\n    \"page\": 1,\n    \"pageSize\": 20,\n    \"totalCount\": 1,\n    \"totalPages\": 1\n  }\n}\n"},{"id":"1e494cc7-4df9-496f-94dd-292fe392674e","name":"Message Search – Created Date Range","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/{{firmId}}?fromDate=2022-01-05T00:00:00.000Z&toDate=2022-02-10T00:00:00.000Z&pageSize=20&page=1","host":["{{apiRoute}}"],"path":["message","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","description":"The id of the client to which the messages belong.","disabled":true},{"key":"messageType","value":"VALUATION_STATEMENT","description":"The type of message. One of `ACCOUNT_UPDATE`, `ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION`, `ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE`, `AML_RESEND_DATA`, `CHANGE_PASSWORD`, `CLIENT_UPDATE`, `CONTRACT_NOTE`, `NEW_ACCOUNT`, `PENSION_PAYSLIP`, `QUARTERLY_STATEMENT`, `VALUATION_STATEMENT` or `WITHDRAWAL`.","disabled":true},{"key":"status","value":"ACTIVE","description":"The status of the message. One of `ACTIVE`, `ARCHIVED`, `DELETED`, `PENDING` or `READ`.","disabled":true},{"key":"accountId","value":"02468G5","description":"The id of the account to which the message relates.","disabled":true},{"key":"fromDate","value":"2022-01-05T00:00:00.000Z","description":"The start date of a range within which the message was created. "},{"key":"toDate","value":"2022-02-10T00:00:00.000Z","description":"The end date of a range within which the message was created. "},{"key":"pageSize","value":"20","description":"The size of the results \"page\" returned in the response."},{"key":"page","value":"1","description":"The \"page\" number of the results returned in the response."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"id\": \"620261815d84d0000a610d73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J8\"\n            },\n            \"created\": \"2022-02-08T12:26:41.658Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:26:41.659Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620261815d84d0000a610d72\"\n        },\n        {\n            \"id\": \"6202614f5d84d0000a610d70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J7\"\n            },\n            \"created\": \"2022-02-08T12:25:51.527Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:51.527Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202614f5d84d0000a610d6f\"\n        },\n        {\n            \"id\": \"6202611d5d84d0000a610d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G28B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J6\"\n            },\n            \"created\": \"2022-02-08T12:25:01.370Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:25:01.371Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202611d5d84d0000a610d6c\"\n        },\n        {\n            \"id\": \"620260eb5d84d0000a610d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G288\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J5\"\n            },\n            \"created\": \"2022-02-08T12:24:11.343Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:24:11.343Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260eb5d84d0000a610d69\"\n        },\n        {\n            \"id\": \"620260cc5d84d0000a610d65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:23:40.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:40.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260cc5d84d0000a610d64\"\n        },\n        {\n            \"id\": \"620260b95d84d0000a610d60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:21.170Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:21.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b95d84d0000a610d5f\"\n        },\n        {\n            \"id\": \"620260b85d84d0000a610d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:23:20.012Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:20.012Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b85d84d0000a610d5a\"\n        },\n        {\n            \"id\": \"620260b55d84d0000a610d58\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G287\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J4\"\n            },\n            \"created\": \"2022-02-08T12:23:17.480Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:23:17.480Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260b55d84d0000a610d57\"\n        },\n        {\n            \"id\": \"620260965d84d0000a610d53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:22:46.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:46.071Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260965d84d0000a610d52\"\n        },\n        {\n            \"id\": \"620260825d84d0000a610d4e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:26.629Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:26.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260825d84d0000a610d4d\"\n        },\n        {\n            \"id\": \"620260815d84d0000a610d49\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:22:25.203Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:25.203Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260815d84d0000a610d48\"\n        },\n        {\n            \"id\": \"6202607e5d84d0000a610d46\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G286\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J3\"\n            },\n            \"created\": \"2022-02-08T12:22:22.744Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:22:22.744Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202607e5d84d0000a610d45\"\n        },\n        {\n            \"id\": \"6202604b5d84d0000a610d43\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G285\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J2\"\n            },\n            \"created\": \"2022-02-08T12:21:31.647Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:21:31.647Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"6202604b5d84d0000a610d42\"\n        },\n        {\n            \"id\": \"620260195d84d0000a610d3d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G284\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468J1\"\n            },\n            \"created\": \"2022-02-08T12:20:41.897Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:20:41.897Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"620260195d84d0000a610d3c\"\n        },\n        {\n            \"id\": \"62025fde5d84d0000a610d32\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:19:42.564Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:42.564Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fde5d84d0000a610d31\"\n        },\n        {\n            \"id\": \"62025fda5d84d0000a610d2c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HJ\"\n            },\n            \"created\": \"2022-02-08T12:19:38.489Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:38.489Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fda5d84d0000a610d2b\"\n        },\n        {\n            \"id\": \"62025fd95d84d0000a610d29\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HH\"\n            },\n            \"created\": \"2022-02-08T12:19:37.192Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:37.193Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd95d84d0000a610d28\"\n        },\n        {\n            \"id\": \"62025fd85d84d0000a610d26\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HG\"\n            },\n            \"created\": \"2022-02-08T12:19:36.066Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:36.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd85d84d0000a610d25\"\n        },\n        {\n            \"id\": \"62025fd65d84d0000a610d23\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HF\"\n            },\n            \"created\": \"2022-02-08T12:19:34.690Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:34.690Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd65d84d0000a610d22\"\n        },\n        {\n            \"id\": \"62025fd55d84d0000a610d20\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G281\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HD\"\n            },\n            \"created\": \"2022-02-08T12:19:33.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:33.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fd55d84d0000a610d1f\"\n        },\n        {\n            \"id\": \"62025fc45d84d0000a610d1a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HC\"\n            },\n            \"created\": \"2022-02-08T12:19:16.791Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:19:16.791Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025fc45d84d0000a610d19\"\n        },\n        {\n            \"id\": \"62025f7660004c000b2dd091\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468HB\"\n            },\n            \"created\": \"2022-02-08T12:17:58.537Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:17:58.537Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f7660004c000b2dd090\"\n        },\n        {\n            \"id\": \"62025f5460004c000b2dd088\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G27B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H9\"\n            },\n            \"created\": \"2022-02-08T12:17:24.808Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:17:24.808Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f5460004c000b2dd087\"\n        },\n        {\n            \"id\": \"62025f3a5d84d0000a610d0f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:16:58.671Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:58.672Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f3a5d84d0000a610d0e\"\n        },\n        {\n            \"id\": \"62025f345d84d0000a610d0a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:16:52.693Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:52.693Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f345d84d0000a610d09\"\n        },\n        {\n            \"id\": \"62025f215d84d0000a610d04\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G278\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H8\"\n            },\n            \"created\": \"2022-02-08T12:16:33.201Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:16:33.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025f215d84d0000a610d03\"\n        },\n        {\n            \"id\": \"62025eeeb03af6000b2a35d3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G276\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H7\"\n            },\n            \"created\": \"2022-02-08T12:15:42.689Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:42.689Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eeeb03af6000b2a35d2\"\n        },\n        {\n            \"id\": \"62025ee5b03af6000b2a35d0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G274\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H6\"\n            },\n            \"created\": \"2022-02-08T12:15:33.485Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:33.485Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ee5b03af6000b2a35cf\"\n        },\n        {\n            \"id\": \"62025edeb03af6000b2a35cb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G274\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H5\"\n            },\n            \"created\": \"2022-02-08T12:15:26.316Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:26.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025edeb03af6000b2a35c9\"\n        },\n        {\n            \"id\": \"62025edeb03af6000b2a35cc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G275\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H5\"\n            },\n            \"created\": \"2022-02-08T12:15:26.316Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:26.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025edeb03af6000b2a35ca\"\n        },\n        {\n            \"id\": \"62025eddb03af6000b2a35c6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G272\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H663\"\n            },\n            \"created\": \"2022-02-08T12:15:25.268Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:25.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eddb03af6000b2a35c5\"\n        },\n        {\n            \"id\": \"62025eddb03af6000b2a35c4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G271\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H663\"\n            },\n            \"created\": \"2022-02-08T12:15:25.265Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:25.266Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eddb03af6000b2a35c3\"\n        },\n        {\n            \"id\": \"62025ed45d84d0000a610cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G271\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H4\"\n            },\n            \"created\": \"2022-02-08T12:15:16.698Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:16.698Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed45d84d0000a610cfd\"\n        },\n        {\n            \"id\": \"62025ed45d84d0000a610d00\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G272\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H4\"\n            },\n            \"created\": \"2022-02-08T12:15:16.698Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:16.698Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed45d84d0000a610cfe\"\n        },\n        {\n            \"id\": \"62025ed25d84d0000a610cfa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H3\"\n            },\n            \"created\": \"2022-02-08T12:15:14.208Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:14.208Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed25d84d0000a610cf8\"\n        },\n        {\n            \"id\": \"62025ed25d84d0000a610cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H3\"\n            },\n            \"created\": \"2022-02-08T12:15:14.208Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:14.208Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ed25d84d0000a610cf7\"\n        },\n        {\n            \"id\": \"62025ecf5d84d0000a610cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H2\"\n            },\n            \"created\": \"2022-02-08T12:15:11.314Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:11.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ecf5d84d0000a610cf1\"\n        },\n        {\n            \"id\": \"62025ecf5d84d0000a610cf4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H2\"\n            },\n            \"created\": \"2022-02-08T12:15:11.314Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:11.315Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ecf5d84d0000a610cf2\"\n        },\n        {\n            \"id\": \"62025ece5d84d0000a610ced\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H1\"\n            },\n            \"created\": \"2022-02-08T12:15:10.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:10.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ece5d84d0000a610ceb\"\n        },\n        {\n            \"id\": \"62025ece5d84d0000a610cee\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G26D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468H1\"\n            },\n            \"created\": \"2022-02-08T12:15:10.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:10.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ece5d84d0000a610cec\"\n        },\n        {\n            \"id\": \"62025ec85d84d0000a610ce8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65N\"\n            },\n            \"created\": \"2022-02-08T12:15:04.169Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:04.170Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec85d84d0000a610ce7\"\n        },\n        {\n            \"id\": \"62025ec85d84d0000a610ce6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65N\"\n            },\n            \"created\": \"2022-02-08T12:15:04.163Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:15:04.163Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec85d84d0000a610ce5\"\n        },\n        {\n            \"id\": \"62025ec15d84d0000a610ce2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65L\"\n            },\n            \"created\": \"2022-02-08T12:14:57.449Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:57.449Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec15d84d0000a610ce1\"\n        },\n        {\n            \"id\": \"62025ec15d84d0000a610ce0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H65L\"\n            },\n            \"created\": \"2022-02-08T12:14:57.443Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:57.443Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ec15d84d0000a610cdf\"\n        },\n        {\n            \"id\": \"62025ebc5d84d0000a610cdd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G269\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GJ\"\n            },\n            \"created\": \"2022-02-08T12:14:52.653Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:52.653Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ebc5d84d0000a610cdc\"\n        },\n        {\n            \"id\": \"62025eb85d84d0000a610cd9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G267\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GH\"\n            },\n            \"created\": \"2022-02-08T12:14:48.975Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:48.976Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb85d84d0000a610cd7\"\n        },\n        {\n            \"id\": \"62025eb85d84d0000a610cd8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G266\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GH\"\n            },\n            \"created\": \"2022-02-08T12:14:48.975Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:48.975Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb85d84d0000a610cd6\"\n        },\n        {\n            \"id\": \"62025eb15d84d0000a610cd2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G264\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GG\"\n            },\n            \"created\": \"2022-02-08T12:14:41.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:41.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb15d84d0000a610cd0\"\n        },\n        {\n            \"id\": \"62025eb15d84d0000a610cd3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G265\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GG\"\n            },\n            \"created\": \"2022-02-08T12:14:41.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:41.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eb15d84d0000a610cd1\"\n        },\n        {\n            \"id\": \"62025eaf5d84d0000a610cce\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G263\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GF\"\n            },\n            \"created\": \"2022-02-08T12:14:39.092Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:39.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025eaf5d84d0000a610ccd\"\n        },\n        {\n            \"id\": \"62025ea85d84d0000a610ccb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:14:32.772Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:32.772Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea85d84d0000a610cca\"\n        },\n        {\n            \"id\": \"62025ea75d84d0000a610cc8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H658\"\n            },\n            \"created\": \"2022-02-08T12:14:31.809Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:31.810Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea75d84d0000a610cc7\"\n        },\n        {\n            \"id\": \"62025ea7b03af6000b2a35c1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H657\"\n            },\n            \"created\": \"2022-02-08T12:14:31.763Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:31.763Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea7b03af6000b2a35c0\"\n        },\n        {\n            \"id\": \"62025ea0b03af6000b2a35bc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:24.927Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:24.927Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ea0b03af6000b2a35bb\"\n        },\n        {\n            \"id\": \"62025e9eb03af6000b2a35b7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:22.224Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:22.224Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e9eb03af6000b2a35b6\"\n        },\n        {\n            \"id\": \"62025e9ab03af6000b2a35b4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G261\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GD\"\n            },\n            \"created\": \"2022-02-08T12:14:18.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:18.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e9ab03af6000b2a35b3\"\n        },\n        {\n            \"id\": \"62025e8eb03af6000b2a35af\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:14:06.629Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:06.629Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8eb03af6000b2a35ae\"\n        },\n        {\n            \"id\": \"62025e8cb03af6000b2a35ac\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GC\"\n            },\n            \"created\": \"2022-02-08T12:14:04.405Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:04.405Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8cb03af6000b2a35ab\"\n        },\n        {\n            \"id\": \"62025e8bb03af6000b2a35a7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G259\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:14:03.207Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:03.207Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8bb03af6000b2a35a6\"\n        },\n        {\n            \"id\": \"62025e8a5d84d0000a610cc5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468GB\"\n            },\n            \"created\": \"2022-02-08T12:14:02.461Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:14:02.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e8a5d84d0000a610cc4\"\n        },\n        {\n            \"id\": \"62025e6db03af6000b2a35a2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:13:33.128Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:33.128Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e6db03af6000b2a35a1\"\n        },\n        {\n            \"id\": \"62025e6bb03af6000b2a359f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G25B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G9\"\n            },\n            \"created\": \"2022-02-08T12:13:31.050Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:31.051Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e6bb03af6000b2a359e\"\n        },\n        {\n            \"id\": \"62025e67b03af6000b2a359a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.747Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.747Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e67b03af6000b2a3599\"\n        },\n        {\n            \"id\": \"62025e67d4bbaa000bed3aa8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.581Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e67d4bbaa000bed3aa7\"\n        },\n        {\n            \"id\": \"62025e675d84d0000a610cc0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:27.570Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:27.570Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e675d84d0000a610cbf\"\n        },\n        {\n            \"id\": \"62025e60d4bbaa000bed3aa5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G259\",\n            \"nodeId\": [\n                \"3\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G8\"\n            },\n            \"created\": \"2022-02-08T12:13:20.328Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:20.328Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e60d4bbaa000bed3aa4\"\n        },\n        {\n            \"id\": \"62025e5dd4bbaa000bed3aa0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G254\",\n            \"nodeId\": [\n                \"2\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:17.622Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:17.622Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e5dd4bbaa000bed3a9f\"\n        },\n        {\n            \"id\": \"62025e58d4bbaa000bed3a9d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G258\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G7\"\n            },\n            \"created\": \"2022-02-08T12:13:12.509Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:12.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e58d4bbaa000bed3a9c\"\n        },\n        {\n            \"id\": \"62025e58d4bbaa000bed3a98\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:13:12.293Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:13:12.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e58d4bbaa000bed3a97\"\n        },\n        {\n            \"id\": \"62025e41d4bbaa000bed3a95\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G254\",\n            \"nodeId\": [\n                \"2\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G6\"\n            },\n            \"created\": \"2022-02-08T12:12:49.078Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:49.078Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e41d4bbaa000bed3a94\"\n        },\n        {\n            \"id\": \"62025e22d4bbaa000bed3a92\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G5\"\n            },\n            \"created\": \"2022-02-08T12:12:18.599Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:18.599Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e22d4bbaa000bed3a91\"\n        },\n        {\n            \"id\": \"62025e15d4bbaa000bed3a8d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:12:05.548Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:05.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e15d4bbaa000bed3a8c\"\n        },\n        {\n            \"id\": \"62025e155d84d0000a610cbb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:12:05.318Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:12:05.318Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e155d84d0000a610cba\"\n        },\n        {\n            \"id\": \"62025e0d5d84d0000a610cb8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G4\"\n            },\n            \"created\": \"2022-02-08T12:11:57.157Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:57.157Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e0d5d84d0000a610cb7\"\n        },\n        {\n            \"id\": \"62025e025d84d0000a610cb3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:11:46.094Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:46.094Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025e025d84d0000a610cb2\"\n        },\n        {\n            \"id\": \"62025dff5d84d0000a610cb0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G24B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G3\"\n            },\n            \"created\": \"2022-02-08T12:11:43.826Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:43.826Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dff5d84d0000a610caf\"\n        },\n        {\n            \"id\": \"62025dfa5d84d0000a610cad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G249\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:11:38.416Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:38.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dfa5d84d0000a610cac\"\n        },\n        {\n            \"id\": \"62025df65d84d0000a610ca8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:11:34.640Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:34.640Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df65d84d0000a610ca7\"\n        },\n        {\n            \"id\": \"62025df25d84d0000a610ca5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G249\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G2\"\n            },\n            \"created\": \"2022-02-08T12:11:30.930Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df25d84d0000a610ca4\"\n        },\n        {\n            \"id\": \"62025df25d84d0000a610ca0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_TRANSFER_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionTransfer\"\n            },\n            \"created\": \"2022-02-08T12:11:30.612Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.612Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df25d84d0000a610c9f\"\n        },\n        {\n            \"id\": \"62025df2d4bbaa000bed3a88\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:11:30.471Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:30.471Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df2d4bbaa000bed3a87\"\n        },\n        {\n            \"id\": \"62025df0d4bbaa000bed3a85\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G248\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468G1\"\n            },\n            \"created\": \"2022-02-08T12:11:28.222Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:28.222Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025df0d4bbaa000bed3a84\"\n        },\n        {\n            \"id\": \"62025defd4bbaa000bed3a82\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G247\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FJ\"\n            },\n            \"created\": \"2022-02-08T12:11:27.447Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:27.447Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025defd4bbaa000bed3a81\"\n        },\n        {\n            \"id\": \"62025dedd4bbaa000bed3a7f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H64C\"\n            },\n            \"created\": \"2022-02-08T12:11:25.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:25.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dedd4bbaa000bed3a7e\"\n        },\n        {\n            \"id\": \"62025de7d4bbaa000bed3a7c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H649\"\n            },\n            \"created\": \"2022-02-08T12:11:19.359Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:19.359Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025de7d4bbaa000bed3a7b\"\n        },\n        {\n            \"id\": \"62025ddfd4bbaa000bed3a79\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G244\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FH\"\n            },\n            \"created\": \"2022-02-08T12:11:11.042Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:11.043Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025ddfd4bbaa000bed3a78\"\n        },\n        {\n            \"id\": \"62025dd8d4bbaa000bed3a76\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G243\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FG\"\n            },\n            \"created\": \"2022-02-08T12:11:04.990Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:04.990Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd8d4bbaa000bed3a75\"\n        },\n        {\n            \"id\": \"62025dd85d84d0000a610c9d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FF\"\n            },\n            \"created\": \"2022-02-08T12:11:04.066Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:04.066Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd85d84d0000a610c9c\"\n        },\n        {\n            \"id\": \"62025dd75d84d0000a610c9a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FD\"\n            },\n            \"created\": \"2022-02-08T12:11:03.499Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:03.499Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd75d84d0000a610c99\"\n        },\n        {\n            \"id\": \"62025dd5445b91000b903901\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H638\"\n            },\n            \"created\": \"2022-02-08T12:11:01.836Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.837Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5445b91000b903900\"\n        },\n        {\n            \"id\": \"62025dd560004c000b2dd085\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H637\"\n            },\n            \"created\": \"2022-02-08T12:11:01.770Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.770Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd560004c000b2dd084\"\n        },\n        {\n            \"id\": \"62025dd5974821000a33e494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.750Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.750Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5974821000a33e493\"\n        },\n        {\n            \"id\": \"62025dd5ef60d4000b52a2a9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.713Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5ef60d4000b52a2a8\"\n        },\n        {\n            \"id\": \"62025dd5a52460000bdf3d6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.673Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.674Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5a52460000bdf3d6c\"\n        },\n        {\n            \"id\": \"62025dd5e0f843000ac99d05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.511Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5e0f843000ac99d04\"\n        },\n        {\n            \"id\": \"62025dd55d84d0000a610c97\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.381Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd55d84d0000a610c96\"\n        },\n        {\n            \"id\": \"62025dd5470b70000b858b72\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.359Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.359Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5470b70000b858b71\"\n        },\n        {\n            \"id\": \"62025dd567ec9200090624a0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FC\"\n            },\n            \"created\": \"2022-02-08T12:11:01.308Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.308Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd567ec92000906249f\"\n        },\n        {\n            \"id\": \"62025dd50fbb0e000ba12d3f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.260Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.260Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd50fbb0e000ba12d3e\"\n        },\n        {\n            \"id\": \"62025dd5d0b332000a97ead6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.242Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.242Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d0b332000a97ead5\"\n        },\n        {\n            \"id\": \"62025dd57b46c6000b0c03f0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.210Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.211Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd57b46c6000b0c03ef\"\n        },\n        {\n            \"id\": \"62025dd5c209b6000a2cdb67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.190Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.190Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5c209b6000a2cdb66\"\n        },\n        {\n            \"id\": \"62025dd5174f01000bd7293d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.176Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.176Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5174f01000bd7293c\"\n        },\n        {\n            \"id\": \"62025dd5d4bbaa000bed3a73\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.158Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.158Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5d4bbaa000bed3a72\"\n        },\n        {\n            \"id\": \"62025dd5b12462000afb2c4d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G23B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468FB\"\n            },\n            \"created\": \"2022-02-08T12:11:01.154Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.154Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5b12462000afb2c4c\"\n        },\n        {\n            \"id\": \"62025dd54262b8000a45a2b0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.115Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.115Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd54262b8000a45a2af\"\n        },\n        {\n            \"id\": \"62025dd51d814d000ba43359\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.064Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd51d814d000ba43358\"\n        },\n        {\n            \"id\": \"62025dd5963a03000ba22c05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:01.036Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:01.036Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd5963a03000ba22c04\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fe\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.957Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fd\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.954Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.954Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec92000906249c\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c4a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.941Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.941Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c49\"\n        },\n        {\n            \"id\": \"62025dd460004c000b2dd082\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.819Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.819Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd460004c000b2dd081\"\n        },\n        {\n            \"id\": \"62025dd4ef60d4000b52a2a6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4ef60d4000b52a2a5\"\n        },\n        {\n            \"id\": \"62025dd4974821000a33e491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.784Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4974821000a33e490\"\n        },\n        {\n            \"id\": \"62025dd4b03af6000b2a3596\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.724Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.724Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b03af6000b2a3595\"\n        },\n        {\n            \"id\": \"62025dd4e0f843000ac99d02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.562Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.562Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4e0f843000ac99d01\"\n        },\n        {\n            \"id\": \"62025dd4a52460000bdf3d6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4a52460000bdf3d69\"\n        },\n        {\n            \"id\": \"62025dd4470b70000b858b6f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.462Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.462Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4470b70000b858b6e\"\n        },\n        {\n            \"id\": \"62025dd44262b8000a45a2ad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.291Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.291Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd44262b8000a45a2ac\"\n        },\n        {\n            \"id\": \"62025dd4d4bbaa000bed3a70\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.287Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.287Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d4bbaa000bed3a6f\"\n        },\n        {\n            \"id\": \"62025dd4174f01000bd7293a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.277Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.277Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4174f01000bd72939\"\n        },\n        {\n            \"id\": \"62025dd41d814d000ba43356\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.213Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.213Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd41d814d000ba43355\"\n        },\n        {\n            \"id\": \"62025dd4963a03000ba22c02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.174Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.174Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4963a03000ba22c01\"\n        },\n        {\n            \"id\": \"62025dd40fbb0e000ba12d3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.154Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.155Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd40fbb0e000ba12d3a\"\n        },\n        {\n            \"id\": \"62025dd45d84d0000a610c94\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.112Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd45d84d0000a610c93\"\n        },\n        {\n            \"id\": \"62025dd4445b91000b9038fb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.098Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.098Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4445b91000b9038fa\"\n        },\n        {\n            \"id\": \"62025dd47b46c6000b0c03ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.094Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.094Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd47b46c6000b0c03eb\"\n        },\n        {\n            \"id\": \"62025dd467ec92000906249a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.075Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.075Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd467ec920009062499\"\n        },\n        {\n            \"id\": \"62025dd4b12462000afb2c47\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.073Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.073Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4b12462000afb2c46\"\n        },\n        {\n            \"id\": \"62025dd4d0b332000a97ead1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.044Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.044Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4d0b332000a97ead0\"\n        },\n        {\n            \"id\": \"62025dd4c209b6000a2cdb63\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:11:00.018Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:11:00.018Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd4c209b6000a2cdb62\"\n        },\n        {\n            \"id\": \"62025dd360004c000b2dd07f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.974Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.974Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd360004c000b2dd07e\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.951Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.951Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a2a2\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.945Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.945Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48d\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3593\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a3592\"\n        },\n        {\n            \"id\": \"62025dd3e0f843000ac99cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.783Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.783Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3e0f843000ac99cfe\"\n        },\n        {\n            \"id\": \"62025dd3a52460000bdf3d67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.669Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.669Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3a52460000bdf3d66\"\n        },\n        {\n            \"id\": \"62025dd3470b70000b858b6c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.630Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.630Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3470b70000b858b6b\"\n        },\n        {\n            \"id\": \"62025dd34262b8000a45a2aa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.514Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.514Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd34262b8000a45a2a9\"\n        },\n        {\n            \"id\": \"62025dd3174f01000bd72937\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.452Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3174f01000bd72936\"\n        },\n        {\n            \"id\": \"62025dd3d4bbaa000bed3a6d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.452Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.453Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d4bbaa000bed3a6c\"\n        },\n        {\n            \"id\": \"62025dd31d814d000ba43353\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.425Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.425Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd31d814d000ba43352\"\n        },\n        {\n            \"id\": \"62025dd3963a03000ba22bff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.355Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.355Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3963a03000ba22bfe\"\n        },\n        {\n            \"id\": \"62025dd37b46c6000b0c03e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.289Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.289Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd37b46c6000b0c03e8\"\n        },\n        {\n            \"id\": \"62025dd3445b91000b9038f8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.278Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.278Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3445b91000b9038f7\"\n        },\n        {\n            \"id\": \"62025dd35d84d0000a610c91\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.270Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.271Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd35d84d0000a610c90\"\n        },\n        {\n            \"id\": \"62025dd3b12462000afb2c44\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.263Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.264Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b12462000afb2c43\"\n        },\n        {\n            \"id\": \"62025dd367ec920009062497\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.231Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.231Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd367ec920009062496\"\n        },\n        {\n            \"id\": \"62025dd3c209b6000a2cdb60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.216Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.216Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3c209b6000a2cdb5f\"\n        },\n        {\n            \"id\": \"62025dd3d0b332000a97eace\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.201Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.201Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3d0b332000a97eacd\"\n        },\n        {\n            \"id\": \"62025dd30fbb0e000ba12d38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.122Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.123Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd30fbb0e000ba12d37\"\n        },\n        {\n            \"id\": \"62025dd3b03af6000b2a3590\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.119Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3b03af6000b2a358f\"\n        },\n        {\n            \"id\": \"62025dd3ef60d4000b52a2a0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3ef60d4000b52a29f\"\n        },\n        {\n            \"id\": \"62025dd3974821000a33e48b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:59.086Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:59.086Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd3974821000a33e48a\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.958Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.958Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cfb\"\n        },\n        {\n            \"id\": \"62025dd2a52460000bdf3d64\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G238\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F9\"\n            },\n            \"created\": \"2022-02-08T12:10:58.811Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.811Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2a52460000bdf3d63\"\n        },\n        {\n            \"id\": \"62025dd2470b70000b858b69\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.798Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2470b70000b858b68\"\n        },\n        {\n            \"id\": \"62025dd24262b8000a45a2a7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.715Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.715Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd24262b8000a45a2a6\"\n        },\n        {\n            \"id\": \"62025dd2a52460000bdf3d61\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.688Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.688Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2a52460000bdf3d60\"\n        },\n        {\n            \"id\": \"62025dd2d4bbaa000bed3a6a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.650Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.651Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d4bbaa000bed3a69\"\n        },\n        {\n            \"id\": \"62025dd21d814d000ba43350\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd21d814d000ba4334f\"\n        },\n        {\n            \"id\": \"62025dd2963a03000ba22bfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.500Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.500Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2963a03000ba22bfb\"\n        },\n        {\n            \"id\": \"62025dd2174f01000bd72932\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.496Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.496Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2174f01000bd72931\"\n        },\n        {\n            \"id\": \"62025dd2445b91000b9038f5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.442Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.442Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2445b91000b9038f4\"\n        },\n        {\n            \"id\": \"62025dd2b12462000afb2c41\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.440Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.440Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b12462000afb2c40\"\n        },\n        {\n            \"id\": \"62025dd27b46c6000b0c03e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.430Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd27b46c6000b0c03e5\"\n        },\n        {\n            \"id\": \"62025dd25d84d0000a610c8e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd25d84d0000a610c8d\"\n        },\n        {\n            \"id\": \"62025dd267ec920009062494\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.410Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.410Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd267ec920009062493\"\n        },\n        {\n            \"id\": \"62025dd2d0b332000a97eacb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2d0b332000a97eaca\"\n        },\n        {\n            \"id\": \"62025dd20fbb0e000ba12d35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.332Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.333Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd20fbb0e000ba12d34\"\n        },\n        {\n            \"id\": \"62025dd2ef60d4000b52a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.315Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.316Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2ef60d4000b52a29c\"\n        },\n        {\n            \"id\": \"62025dd2b03af6000b2a358d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.295Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.295Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2b03af6000b2a358c\"\n        },\n        {\n            \"id\": \"62025dd2974821000a33e488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.293Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2974821000a33e487\"\n        },\n        {\n            \"id\": \"62025dd2c209b6000a2cdb5c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.259Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.259Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2c209b6000a2cdb5b\"\n        },\n        {\n            \"id\": \"62025dd2e0f843000ac99cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:58.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:58.180Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd2e0f843000ac99cf8\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.927Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.928Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a3\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b65\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.890Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.890Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b64\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.875Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.876Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5d\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a67\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.868Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.869Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a66\"\n        },\n        {\n            \"id\": \"62025dd11d814d000ba4334d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.790Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.790Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd11d814d000ba4334c\"\n        },\n        {\n            \"id\": \"62025dd1174f01000bd7292f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G235\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.706Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.706Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1174f01000bd7292e\"\n        },\n        {\n            \"id\": \"62025dd1445b91000b9038f2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.601Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.601Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1445b91000b9038f1\"\n        },\n        {\n            \"id\": \"62025dd17b46c6000b0c03e3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.546Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.546Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd17b46c6000b0c03e2\"\n        },\n        {\n            \"id\": \"62025dd1b12462000afb2c3e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.529Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.530Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b12462000afb2c3d\"\n        },\n        {\n            \"id\": \"62025dd1d0b332000a97eac8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.498Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.499Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d0b332000a97eac7\"\n        },\n        {\n            \"id\": \"62025dd167ec920009062491\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.495Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.495Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd167ec920009062490\"\n        },\n        {\n            \"id\": \"62025dd1ef60d4000b52a29a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.464Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1ef60d4000b52a299\"\n        },\n        {\n            \"id\": \"62025dd1974821000a33e485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.426Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.426Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1974821000a33e484\"\n        },\n        {\n            \"id\": \"62025dd1963a03000ba22bf8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.417Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.417Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1963a03000ba22bf7\"\n        },\n        {\n            \"id\": \"62025dd1c209b6000a2cdb59\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.412Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.412Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1c209b6000a2cdb58\"\n        },\n        {\n            \"id\": \"62025dd1b03af6000b2a358a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1b03af6000b2a3589\"\n        },\n        {\n            \"id\": \"62025dd15d84d0000a610c8a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.401Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.401Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd15d84d0000a610c89\"\n        },\n        {\n            \"id\": \"62025dd10fbb0e000ba12d31\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G213\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.368Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd10fbb0e000ba12d30\"\n        },\n        {\n            \"id\": \"62025dd1e0f843000ac99cf6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.366Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.366Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1e0f843000ac99cf5\"\n        },\n        {\n            \"id\": \"62025dd14262b8000a45a2a1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.142Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.142Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd14262b8000a45a2a0\"\n        },\n        {\n            \"id\": \"62025dd1a52460000bdf3d5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.091Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.092Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1a52460000bdf3d5a\"\n        },\n        {\n            \"id\": \"62025dd1d4bbaa000bed3a64\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.077Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.077Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1d4bbaa000bed3a63\"\n        },\n        {\n            \"id\": \"62025dd1470b70000b858b62\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:57.070Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:57.070Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd1470b70000b858b61\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba4334a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G219\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.984Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.984Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43349\"\n        },\n        {\n            \"id\": \"62025dd060004c000b2dd07b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.906Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.907Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd060004c000b2dd07a\"\n        },\n        {\n            \"id\": \"62025dd0174f01000bd7292c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.821Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.821Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0174f01000bd7292b\"\n        },\n        {\n            \"id\": \"62025dd0445b91000b9038ef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.703Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.703Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0445b91000b9038ee\"\n        },\n        {\n            \"id\": \"62025dd07b46c6000b0c03e0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.701Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.702Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd07b46c6000b0c03df\"\n        },\n        {\n            \"id\": \"62025dd0b12462000afb2c3b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.631Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.631Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b12462000afb2c3a\"\n        },\n        {\n            \"id\": \"62025dd0d0b332000a97eac5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.589Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.589Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0d0b332000a97eac4\"\n        },\n        {\n            \"id\": \"62025dd067ec92000906248e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.552Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.553Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd067ec92000906248d\"\n        },\n        {\n            \"id\": \"62025dd0ef60d4000b52a297\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G211\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.549Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0ef60d4000b52a296\"\n        },\n        {\n            \"id\": \"62025dd0963a03000ba22bf5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.518Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.518Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0963a03000ba22bf4\"\n        },\n        {\n            \"id\": \"62025dd00fbb0e000ba12d2e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.512Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.512Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd00fbb0e000ba12d2d\"\n        },\n        {\n            \"id\": \"62025dd05d84d0000a610c87\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.509Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.509Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd05d84d0000a610c86\"\n        },\n        {\n            \"id\": \"62025dd0974821000a33e482\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.478Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0974821000a33e481\"\n        },\n        {\n            \"id\": \"62025dd0e0f843000ac99cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.460Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.460Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0e0f843000ac99cf2\"\n        },\n        {\n            \"id\": \"62025dd0c209b6000a2cdb56\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.445Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0c209b6000a2cdb55\"\n        },\n        {\n            \"id\": \"62025dd0b03af6000b2a3587\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G224\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.444Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.445Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd0b03af6000b2a3586\"\n        },\n        {\n            \"id\": \"62025dd01d814d000ba43347\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.136Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.136Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd01d814d000ba43346\"\n        },\n        {\n            \"id\": \"62025dd04262b8000a45a29d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:56.035Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:56.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dd04262b8000a45a29c\"\n        },\n        {\n            \"id\": \"62025dcfa52460000bdf3d57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.893Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfa52460000bdf3d56\"\n        },\n        {\n            \"id\": \"62025dcf60004c000b2dd077\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.878Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.878Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf60004c000b2dd076\"\n        },\n        {\n            \"id\": \"62025dcf174f01000bd72929\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.847Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.847Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf174f01000bd72928\"\n        },\n        {\n            \"id\": \"62025dcf470b70000b858b5e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22B\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.834Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.835Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf470b70000b858b5d\"\n        },\n        {\n            \"id\": \"62025dcfd4bbaa000bed3a60\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.825Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.825Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd4bbaa000bed3a5f\"\n        },\n        {\n            \"id\": \"62025dcf445b91000b9038ec\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.734Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.735Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf445b91000b9038eb\"\n        },\n        {\n            \"id\": \"62025dcf7b46c6000b0c03dd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.723Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.723Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf7b46c6000b0c03dc\"\n        },\n        {\n            \"id\": \"62025dcfd0b332000a97eac2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.714Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.714Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfd0b332000a97eac1\"\n        },\n        {\n            \"id\": \"62025dcfb12462000afb2c38\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.683Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.683Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb12462000afb2c37\"\n        },\n        {\n            \"id\": \"62025dcf0fbb0e000ba12d2b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G233\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.675Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.675Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf0fbb0e000ba12d2a\"\n        },\n        {\n            \"id\": \"62025dcf974821000a33e47f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.664Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.664Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf974821000a33e47e\"\n        },\n        {\n            \"id\": \"62025dcf5d84d0000a610c84\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.628Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.628Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf5d84d0000a610c83\"\n        },\n        {\n            \"id\": \"62025dcfe0f843000ac99cf0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfe0f843000ac99cef\"\n        },\n        {\n            \"id\": \"62025dcfef60d4000b52a294\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfef60d4000b52a293\"\n        },\n        {\n            \"id\": \"62025dcfb03af6000b2a3584\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22J\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.607Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.607Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfb03af6000b2a3583\"\n        },\n        {\n            \"id\": \"62025dcf963a03000ba22bf2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.595Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.595Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf963a03000ba22bf1\"\n        },\n        {\n            \"id\": \"62025dcf67ec92000906248b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.574Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.574Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf67ec92000906248a\"\n        },\n        {\n            \"id\": \"62025dcfc209b6000a2cdb53\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.472Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.472Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcfc209b6000a2cdb52\"\n        },\n        {\n            \"id\": \"62025dcf1d814d000ba43344\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:55.055Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:55.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcf1d814d000ba43343\"\n        },\n        {\n            \"id\": \"62025dce174f01000bd72926\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G212\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.933Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.933Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce174f01000bd72925\"\n        },\n        {\n            \"id\": \"62025dced4bbaa000bed3a5d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.901Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced4bbaa000bed3a5c\"\n        },\n        {\n            \"id\": \"62025dce0fbb0e000ba12d28\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.900Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.900Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce0fbb0e000ba12d27\"\n        },\n        {\n            \"id\": \"62025dce7b46c6000b0c03da\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.861Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.861Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce7b46c6000b0c03d9\"\n        },\n        {\n            \"id\": \"62025dceb12462000afb2c35\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.797Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb12462000afb2c34\"\n        },\n        {\n            \"id\": \"62025dced0b332000a97eabf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.794Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.794Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dced0b332000a97eabe\"\n        },\n        {\n            \"id\": \"62025dce445b91000b9038e9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G214\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.766Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.766Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce445b91000b9038e8\"\n        },\n        {\n            \"id\": \"62025dcee0f843000ac99ced\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.760Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.760Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcee0f843000ac99cec\"\n        },\n        {\n            \"id\": \"62025dce974821000a33e47c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.716Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.717Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce974821000a33e47b\"\n        },\n        {\n            \"id\": \"62025dce5d84d0000a610c81\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.710Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce5d84d0000a610c80\"\n        },\n        {\n            \"id\": \"62025dceb03af6000b2a3581\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.617Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dceb03af6000b2a3580\"\n        },\n        {\n            \"id\": \"62025dce67ec920009062488\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.575Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.575Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce67ec920009062487\"\n        },\n        {\n            \"id\": \"62025dce963a03000ba22bef\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.501Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dce963a03000ba22bee\"\n        },\n        {\n            \"id\": \"62025dcea52460000bdf3d54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:54.432Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:54.432Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcea52460000bdf3d53\"\n        },\n        {\n            \"id\": \"62025dcd7b46c6000b0c03d7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.939Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.939Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd7b46c6000b0c03d6\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d25\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.922Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.922Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d24\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a5a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.892Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.892Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a59\"\n        },\n        {\n            \"id\": \"62025dcd5d84d0000a610c7e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.775Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.775Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd5d84d0000a610c7d\"\n        },\n        {\n            \"id\": \"62025dcd67ec920009062485\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.709Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.709Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd67ec920009062484\"\n        },\n        {\n            \"id\": \"62025dcdb03af6000b2a357e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.699Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.699Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdb03af6000b2a357d\"\n        },\n        {\n            \"id\": \"62025dcd174f01000bd72922\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G218\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.661Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.661Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd174f01000bd72921\"\n        },\n        {\n            \"id\": \"62025dcd974821000a33e478\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.616Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.617Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd974821000a33e477\"\n        },\n        {\n            \"id\": \"62025dcd0fbb0e000ba12d22\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.040Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.040Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcd0fbb0e000ba12d21\"\n        },\n        {\n            \"id\": \"62025dcdd4bbaa000bed3a57\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:53.034Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:53.034Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcdd4bbaa000bed3a56\"\n        },\n        {\n            \"id\": \"62025dcc5d84d0000a610c7b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc5d84d0000a610c7a\"\n        },\n        {\n            \"id\": \"62025dccb03af6000b2a357b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.845Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccb03af6000b2a357a\"\n        },\n        {\n            \"id\": \"62025dcc174f01000bd7291f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.784Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.785Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc174f01000bd7291e\"\n        },\n        {\n            \"id\": \"62025dcc470b70000b858b5b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21F\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.292Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.293Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc470b70000b858b5a\"\n        },\n        {\n            \"id\": \"62025dcc4262b8000a45a299\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.202Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.202Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc4262b8000a45a298\"\n        },\n        {\n            \"id\": \"62025dcc0fbb0e000ba12d1f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.182Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.182Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcc0fbb0e000ba12d1e\"\n        },\n        {\n            \"id\": \"62025dccef60d4000b52a291\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.180Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.181Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccef60d4000b52a290\"\n        },\n        {\n            \"id\": \"62025dccd4bbaa000bed3a54\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:52.111Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:52.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dccd4bbaa000bed3a53\"\n        },\n        {\n            \"id\": \"62025dcbc209b6000a2cdb50\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G237\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F8\"\n            },\n            \"created\": \"2022-02-08T12:10:51.622Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.623Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbc209b6000a2cdb4f\"\n        },\n        {\n            \"id\": \"62025dcbe0f843000ac99cea\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.531Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.531Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbe0f843000ac99ce9\"\n        },\n        {\n            \"id\": \"62025dcbd0b332000a97eabc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.415Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.415Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcbd0b332000a97eabb\"\n        },\n        {\n            \"id\": \"62025dcba52460000bdf3d51\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.403Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.403Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcba52460000bdf3d50\"\n        },\n        {\n            \"id\": \"62025dcb445b91000b9038e6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.402Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.402Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb445b91000b9038e5\"\n        },\n        {\n            \"id\": \"62025dcb0fbb0e000ba12d1c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:51.296Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:51.297Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dcb0fbb0e000ba12d1b\"\n        },\n        {\n            \"id\": \"62025dca7b46c6000b0c03d4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:50.835Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:50.836Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dca7b46c6000b0c03d3\"\n        },\n        {\n            \"id\": \"62025dc97b46c6000b0c03d1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.963Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.963Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc97b46c6000b0c03d0\"\n        },\n        {\n            \"id\": \"62025dc94262b8000a45a296\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.846Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.846Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc94262b8000a45a295\"\n        },\n        {\n            \"id\": \"62025dc9e0f843000ac99ce7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22D\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"VALUATION_STATEMENT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Valuation statement\",\n            \"payload\": {\n                \"body\": \"Please find attached your valuation statement.\\n\\nFor any transaction details please refer to your portfolio online.\",\n                \"id\": \"2021-01-01-1970-01-01\"\n            },\n            \"created\": \"2022-02-08T12:10:49.823Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:49.823Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc9e0f843000ac99ce6\"\n        },\n        {\n            \"id\": \"62025dc27b46c6000b0c03cc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:42.828Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:42.828Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc27b46c6000b0c03cb\"\n        },\n        {\n            \"id\": \"62025dc2a52460000bdf3d4e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G234\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F7\"\n            },\n            \"created\": \"2022-02-08T12:10:42.584Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:42.585Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc2a52460000bdf3d4d\"\n        },\n        {\n            \"id\": \"62025dc14262b8000a45a292\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G231\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F6\"\n            },\n            \"created\": \"2022-02-08T12:10:41.799Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:41.800Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc14262b8000a45a291\"\n        },\n        {\n            \"id\": \"62025dc14262b8000a45a28f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G232\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F5\"\n            },\n            \"created\": \"2022-02-08T12:10:41.437Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:41.437Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc14262b8000a45a28e\"\n        },\n        {\n            \"id\": \"62025dc04262b8000a45a28a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.610Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc04262b8000a45a289\"\n        },\n        {\n            \"id\": \"62025dc07b46c6000b0c03c7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.610Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.611Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc07b46c6000b0c03c6\"\n        },\n        {\n            \"id\": \"62025dc067ec920009062480\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.533Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.533Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc067ec92000906247f\"\n        },\n        {\n            \"id\": \"62025dc00fbb0e000ba12d17\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:40.455Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.455Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc00fbb0e000ba12d16\"\n        },\n        {\n            \"id\": \"62025dc0d0b332000a97eab9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22H\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F4\"\n            },\n            \"created\": \"2022-02-08T12:10:40.454Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:40.454Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dc0d0b332000a97eab8\"\n        },\n        {\n            \"id\": \"62025dbf0fbb0e000ba12d14\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:39.067Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:39.067Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbf0fbb0e000ba12d13\"\n        },\n        {\n            \"id\": \"62025dbf67ec92000906247d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G22C\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"email\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:39.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:39.057Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbf67ec92000906247c\"\n        },\n        {\n            \"id\": \"62025dbe67ec92000906247a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"email\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:38.288Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:38.288Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbe67ec920009062479\"\n        },\n        {\n            \"id\": \"62025dbe0fbb0e000ba12d11\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G229\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Email\\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:38.281Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:38.282Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dbe0fbb0e000ba12d10\"\n        },\n        {\n            \"id\": \"62025db867ec920009062477\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G227\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F2\"\n            },\n            \"created\": \"2022-02-08T12:10:32.579Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:32.579Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db867ec920009062476\"\n        },\n        {\n            \"id\": \"62025db80fbb0e000ba12d0e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G226\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468F1\"\n            },\n            \"created\": \"2022-02-08T12:10:32.392Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:32.392Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db80fbb0e000ba12d0d\"\n        },\n        {\n            \"id\": \"62025db70fbb0e000ba12d0b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322231172\"\n            },\n            \"created\": \"2022-02-08T12:10:31.563Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:31.563Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db70fbb0e000ba12d0a\"\n        },\n        {\n            \"id\": \"62025db767ec920009062474\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G225\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DJ\"\n            },\n            \"created\": \"2022-02-08T12:10:31.324Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:31.324Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db767ec920009062473\"\n        },\n        {\n            \"id\": \"62025db60fbb0e000ba12d08\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Nationalities\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"nationalities\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:30.941Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.942Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db60fbb0e000ba12d07\"\n        },\n        {\n            \"id\": \"62025db667ec920009062471\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G223\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DH\"\n            },\n            \"created\": \"2022-02-08T12:10:30.550Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.551Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db667ec920009062470\"\n        },\n        {\n            \"id\": \"62025db60fbb0e000ba12d05\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G222\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322230194\"\n            },\n            \"created\": \"2022-02-08T12:10:30.549Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:30.550Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db60fbb0e000ba12d04\"\n        },\n        {\n            \"id\": \"62025db50fbb0e000ba12d02\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G221\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Nationality\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"nationality\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:29.643Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:29.643Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db50fbb0e000ba12d01\"\n        },\n        {\n            \"id\": \"62025db40fbb0e000ba12cff\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G21G\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Address Detail\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"addressDetail.buildingNumber\",\n                    \"addressDetail.address1\",\n                    \"addressDetail.address2\",\n                    \"addressDetail.address3\",\n                    \"addressDetail.address4\",\n                    \"addressDetail.postCode\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:28.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.906Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db40fbb0e000ba12cfe\"\n        },\n        {\n            \"id\": \"62025db40fbb0e000ba12cfc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H627\"\n            },\n            \"created\": \"2022-02-08T12:10:28.250Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.250Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db40fbb0e000ba12cfb\"\n        },\n        {\n            \"id\": \"62025db467ec92000906246e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H628\"\n            },\n            \"created\": \"2022-02-08T12:10:28.177Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.177Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db467ec92000906246d\"\n        },\n        {\n            \"id\": \"62025db44262b8000a45a287\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322227734\"\n            },\n            \"created\": \"2022-02-08T12:10:28.124Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:28.125Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db44262b8000a45a286\"\n        },\n        {\n            \"id\": \"62025db37b46c6000b0c03c4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G217\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Bank Details\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"bankDetails.sortCode\",\n                    \"bankDetails.accountNumber\",\n                    \"bankDetails.debitPaymentMandate\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:27.701Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.701Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db37b46c6000b0c03c3\"\n        },\n        {\n            \"id\": \"62025db30fbb0e000ba12cf9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* \\n\\nIf you did not make these changes, please inform us as soon as possible.\"\n            },\n            \"created\": \"2022-02-08T12:10:27.160Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.160Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db30fbb0e000ba12cf8\"\n        },\n        {\n            \"id\": \"62025db30fbb0e000ba12cf6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:27.056Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:27.056Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db30fbb0e000ba12cf5\"\n        },\n        {\n            \"id\": \"62025db267ec92000906246b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G215\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CLIENT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Profile Update\",\n            \"payload\": {\n                \"body\": \"Your profile has recently been updated.\\n\\nThese items were changed:\\n\\n* Employers\\n\\nIf you did not make these changes, please inform us as soon as possible.\",\n                \"updatedFields\": [\n                    \"employers[0]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:10:26.959Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:26.959Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db267ec92000906246a\"\n        },\n        {\n            \"id\": \"62025db067ec920009062466\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DG\"\n            },\n            \"created\": \"2022-02-08T12:10:24.841Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:24.841Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db067ec920009062464\"\n        },\n        {\n            \"id\": \"62025db067ec920009062467\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DG\"\n            },\n            \"created\": \"2022-02-08T12:10:24.841Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:24.841Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025db067ec920009062465\"\n        },\n        {\n            \"id\": \"62025dac67ec920009062461\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H62F\"\n            },\n            \"created\": \"2022-02-08T12:10:20.904Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:20.904Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dac67ec920009062460\"\n        },\n        {\n            \"id\": \"62025dac67ec92000906245f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H62F\"\n            },\n            \"created\": \"2022-02-08T12:10:20.901Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:20.901Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dac67ec92000906245e\"\n        },\n        {\n            \"id\": \"62025dab0fbb0e000ba12cf3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:19.634Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:19.634Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dab0fbb0e000ba12cf2\"\n        },\n        {\n            \"id\": \"62025dab7b46c6000b0c03c1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DF\"\n            },\n            \"created\": \"2022-02-08T12:10:19.508Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:19.508Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025dab7b46c6000b0c03c0\"\n        },\n        {\n            \"id\": \"62025daa7b46c6000b0c03bc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:18.584Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:18.584Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025daa7b46c6000b0c03bb\"\n        },\n        {\n            \"id\": \"62025da97b46c6000b0c03b9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DD\"\n            },\n            \"created\": \"2022-02-08T12:10:17.380Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:17.380Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da97b46c6000b0c03b8\"\n        },\n        {\n            \"id\": \"62025da77b46c6000b0c03b6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1JB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DC\"\n            },\n            \"created\": \"2022-02-08T12:10:15.220Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:15.220Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da77b46c6000b0c03b5\"\n        },\n        {\n            \"id\": \"62025da37b46c6000b0c03b1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:11.866Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.866Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da37b46c6000b0c03b0\"\n        },\n        {\n            \"id\": \"62025da367ec92000906245c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468DB\"\n            },\n            \"created\": \"2022-02-08T12:10:11.346Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.347Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da367ec92000906245b\"\n        },\n        {\n            \"id\": \"62025da367ec920009062459\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:10:11.267Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:11.268Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da367ec920009062458\"\n        },\n        {\n            \"id\": \"62025da267ec920009062456\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D9\"\n            },\n            \"created\": \"2022-02-08T12:10:10.789Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.789Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec920009062455\"\n        },\n        {\n            \"id\": \"62025da267ec920009062451\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D8\"\n            },\n            \"created\": \"2022-02-08T12:10:10.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec92000906244f\"\n        },\n        {\n            \"id\": \"62025da267ec920009062452\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D8\"\n            },\n            \"created\": \"2022-02-08T12:10:10.468Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:10.468Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da267ec920009062450\"\n        },\n        {\n            \"id\": \"62025da167ec92000906244d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D7\"\n            },\n            \"created\": \"2022-02-08T12:10:09.407Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:09.407Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025da167ec92000906244c\"\n        },\n        {\n            \"id\": \"62025d9b67ec92000906244a\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D6\"\n            },\n            \"created\": \"2022-02-08T12:10:03.236Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:03.236Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9b67ec920009062449\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062447\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1J1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D5\"\n            },\n            \"created\": \"2022-02-08T12:10:02.229Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.230Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062446\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062443\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61M\"\n            },\n            \"created\": \"2022-02-08T12:10:02.120Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.120Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062442\"\n        },\n        {\n            \"id\": \"62025d9a67ec920009062441\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61M\"\n            },\n            \"created\": \"2022-02-08T12:10:02.112Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:02.112Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9a67ec920009062440\"\n        },\n        {\n            \"id\": \"62025d9967ec92000906243d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D4\"\n            },\n            \"created\": \"2022-02-08T12:10:01.028Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:01.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9967ec92000906243b\"\n        },\n        {\n            \"id\": \"62025d9967ec92000906243c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D4\"\n            },\n            \"created\": \"2022-02-08T12:10:01.027Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:01.028Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9967ec92000906243a\"\n        },\n        {\n            \"id\": \"62025d9867ec920009062438\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D3\"\n            },\n            \"created\": \"2022-02-08T12:10:00.834Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.834Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9867ec920009062437\"\n        },\n        {\n            \"id\": \"62025d987b46c6000b0c03ab\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:00.429Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.429Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d987b46c6000b0c03aa\"\n        },\n        {\n            \"id\": \"62025d980fbb0e000ba12cee\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:10:00.365Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:10:00.365Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d980fbb0e000ba12ced\"\n        },\n        {\n            \"id\": \"62025d9767ec920009062435\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D2\"\n            },\n            \"created\": \"2022-02-08T12:09:59.911Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:59.911Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d9767ec920009062434\"\n        },\n        {\n            \"id\": \"62025d950fbb0e000ba12ceb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H61K\"\n            },\n            \"created\": \"2022-02-08T12:09:57.798Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:57.798Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d950fbb0e000ba12cea\"\n        },\n        {\n            \"id\": \"62025d910fbb0e000ba12ce7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1HC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D1\"\n            },\n            \"created\": \"2022-02-08T12:09:53.767Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:53.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d910fbb0e000ba12ce5\"\n        },\n        {\n            \"id\": \"62025d910fbb0e000ba12ce6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468D1\"\n            },\n            \"created\": \"2022-02-08T12:09:53.766Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:53.767Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d910fbb0e000ba12ce4\"\n        },\n        {\n            \"id\": \"62025d8f0fbb0e000ba12ce2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CJ\"\n            },\n            \"created\": \"2022-02-08T12:09:51.582Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:51.582Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8f0fbb0e000ba12ce1\"\n        },\n        {\n            \"id\": \"62025d8e0fbb0e000ba12cdf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Status\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468CH\",\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:50.523Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:50.523Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8e0fbb0e000ba12cde\"\n        },\n        {\n            \"id\": \"62025d8d0fbb0e000ba12cdc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CH\"\n            },\n            \"created\": \"2022-02-08T12:09:49.754Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:49.754Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8d0fbb0e000ba12cdb\"\n        },\n        {\n            \"id\": \"62025d8d0fbb0e000ba12cd9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CG\"\n            },\n            \"created\": \"2022-02-08T12:09:49.284Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:49.284Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8d0fbb0e000ba12cd8\"\n        },\n        {\n            \"id\": \"62025d8b0fbb0e000ba12cd4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:47.283Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:47.283Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8b0fbb0e000ba12cd3\"\n        },\n        {\n            \"id\": \"62025d870fbb0e000ba12cd1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CF\"\n            },\n            \"created\": \"2022-02-08T12:09:43.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:43.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d870fbb0e000ba12cd0\"\n        },\n        {\n            \"id\": \"62025d870fbb0e000ba12ccc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:43.436Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:43.437Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d870fbb0e000ba12ccb\"\n        },\n        {\n            \"id\": \"62025d867b46c6000b0c03a8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CD\"\n            },\n            \"created\": \"2022-02-08T12:09:42.996Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:42.996Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d867b46c6000b0c03a7\"\n        },\n        {\n            \"id\": \"62025d830fbb0e000ba12cc9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Status\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468CC\",\n                \"updatedFields\": [\n                    \"status\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:39.502Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:39.502Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d830fbb0e000ba12cc8\"\n        },\n        {\n            \"id\": \"62025d820fbb0e000ba12cc6\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1H1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CC\"\n            },\n            \"created\": \"2022-02-08T12:09:38.634Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:38.634Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d820fbb0e000ba12cc5\"\n        },\n        {\n            \"id\": \"62025d810fbb0e000ba12cc2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CB\"\n            },\n            \"created\": \"2022-02-08T12:09:37.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:37.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d810fbb0e000ba12cc0\"\n        },\n        {\n            \"id\": \"62025d810fbb0e000ba12cc1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468CB\"\n            },\n            \"created\": \"2022-02-08T12:09:37.711Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:37.711Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d810fbb0e000ba12cbf\"\n        },\n        {\n            \"id\": \"62025d807b46c6000b0c03a5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C9\"\n            },\n            \"created\": \"2022-02-08T12:09:36.548Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.549Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d807b46c6000b0c03a4\"\n        },\n        {\n            \"id\": \"62025d8067ec920009062432\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C8\"\n            },\n            \"created\": \"2022-02-08T12:09:36.483Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.483Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8067ec920009062431\"\n        },\n        {\n            \"id\": \"62025d800fbb0e000ba12cbd\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322176102\"\n            },\n            \"created\": \"2022-02-08T12:09:36.478Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.478Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d800fbb0e000ba12cbc\"\n        },\n        {\n            \"id\": \"62025d8067ec92000906242f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1GC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C7\"\n            },\n            \"created\": \"2022-02-08T12:09:36.171Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:36.171Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d8067ec92000906242e\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c03a2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322175355\"\n            },\n            \"created\": \"2022-02-08T12:09:35.752Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.752Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c03a1\"\n        },\n        {\n            \"id\": \"62025d7f0fbb0e000ba12cba\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payment\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C5\",\n                \"updatedFields\": [\n                    \"recurringPayment\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:35.300Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.301Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f0fbb0e000ba12cb9\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c039f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C6\"\n            },\n            \"created\": \"2022-02-08T12:09:35.263Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.263Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c039e\"\n        },\n        {\n            \"id\": \"62025d7f7b46c6000b0c039c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322174647\"\n            },\n            \"created\": \"2022-02-08T12:09:35.029Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:35.029Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7f7b46c6000b0c039b\"\n        },\n        {\n            \"id\": \"62025d7e0fbb0e000ba12cb7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C5\"\n            },\n            \"created\": \"2022-02-08T12:09:34.905Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:34.905Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7e0fbb0e000ba12cb6\"\n        },\n        {\n            \"id\": \"62025d7e7b46c6000b0c0399\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C4\"\n            },\n            \"created\": \"2022-02-08T12:09:34.336Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:34.336Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7e7b46c6000b0c0398\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0395\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.860Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.860Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0394\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0393\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.856Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.856Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0392\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c038f\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.465Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.465Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c038e\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c038d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C3\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:33.461Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.461Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c038c\"\n        },\n        {\n            \"id\": \"62025d7d0fbb0e000ba12cb3\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H616\"\n            },\n            \"created\": \"2022-02-08T12:09:33.458Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.459Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d0fbb0e000ba12cb2\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0389\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C3\"\n            },\n            \"created\": \"2022-02-08T12:09:33.060Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0387\"\n        },\n        {\n            \"id\": \"62025d7d7b46c6000b0c0388\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C3\"\n            },\n            \"created\": \"2022-02-08T12:09:33.059Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:33.060Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7d7b46c6000b0c0386\"\n        },\n        {\n            \"id\": \"62025d7c67ec92000906242c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Direct Debit instructions\",\n            \"payload\": {\n                \"body\": \"You can download your Direct Debit Instructions in the link below\",\n                \"id\": \"08-02-2022-1644322172600\"\n            },\n            \"created\": \"2022-02-08T12:09:32.980Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.980Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c67ec92000906242b\"\n        },\n        {\n            \"id\": \"62025d7c67ec920009062427\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:32.258Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.258Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c67ec920009062426\"\n        },\n        {\n            \"id\": \"62025d7c0fbb0e000ba12cb0\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C2\",\n                \"updatedFields\": [\n                    \"recurringPayments\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:32.164Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:32.164Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7c0fbb0e000ba12caf\"\n        },\n        {\n            \"id\": \"62025d7b0fbb0e000ba12cad\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"ACCOUNT_UPDATE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Account Update\",\n            \"payload\": {\n                \"body\": \"Your account has recently been updated.\\n\\nThese items were changed:\\n\\n* Recurring Payments\\n\\nIf you have changed your regular payments, please update your bank with the changes you have made to ensure that the correct details match the regular payments on your account.\\n\\nIf you have cancelled a regular payment which was being paid by standing order, you will need to cancel the standing order with your bank to stop any payments being sent to your account.\",\n                \"accountId\": \"02468C2\",\n                \"updatedFields\": [\n                    \"recurringPayments[0]\",\n                    \"recurringPayments[1]\"\n                ]\n            },\n            \"created\": \"2022-02-08T12:09:31.792Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:31.792Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7b0fbb0e000ba12cac\"\n        },\n        {\n            \"id\": \"62025d7b0fbb0e000ba12caa\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G3\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C2\"\n            },\n            \"created\": \"2022-02-08T12:09:31.381Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:31.381Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7b0fbb0e000ba12ca9\"\n        },\n        {\n            \"id\": \"62025d7a67ec920009062424\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"WITHDRAWAL\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Withdrawal request\",\n            \"payload\": {\n                \"body\": \"We have received your withdrawal request, please expect 3-5 business days for receipt.\"\n            },\n            \"created\": \"2022-02-08T12:09:30.712Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.712Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec920009062423\"\n        },\n        {\n            \"id\": \"62025d7a67ec920009062421\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468C1\"\n            },\n            \"created\": \"2022-02-08T12:09:30.323Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.323Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec920009062420\"\n        },\n        {\n            \"id\": \"62025d7a67ec92000906241e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BJ\"\n            },\n            \"created\": \"2022-02-08T12:09:30.010Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:30.010Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7a67ec92000906241d\"\n        },\n        {\n            \"id\": \"62025d790fbb0e000ba12ca7\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H612\"\n            },\n            \"created\": \"2022-02-08T12:09:29.931Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:29.931Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d790fbb0e000ba12ca6\"\n        },\n        {\n            \"id\": \"62025d780fbb0e000ba12ca4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BH\"\n            },\n            \"created\": \"2022-02-08T12:09:28.691Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:28.691Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d780fbb0e000ba12ca3\"\n        },\n        {\n            \"id\": \"62025d780fbb0e000ba12ca1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1G1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BG\"\n            },\n            \"created\": \"2022-02-08T12:09:28.423Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:28.423Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d780fbb0e000ba12ca0\"\n        },\n        {\n            \"id\": \"62025d770fbb0e000ba12c9c\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:27.649Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:27.649Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d770fbb0e000ba12c9b\"\n        },\n        {\n            \"id\": \"62025d7767ec92000906241b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FJ\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BF\"\n            },\n            \"created\": \"2022-02-08T12:09:27.253Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:27.254Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7767ec92000906241a\"\n        },\n        {\n            \"id\": \"62025d7567ec920009062418\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BC\"\n            },\n            \"created\": \"2022-02-08T12:09:25.872Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.872Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7567ec920009062417\"\n        },\n        {\n            \"id\": \"62025d750fbb0e000ba12c96\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"CONTRACT_NOTE\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Trade completed\",\n            \"payload\": {\n                \"body\": \"Your trade has completed.\",\n                \"id\": \"00004H5SR\"\n            },\n            \"created\": \"2022-02-08T12:09:25.763Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.763Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d750fbb0e000ba12c95\"\n        },\n        {\n            \"id\": \"62025d7567ec920009062413\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:25.391Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.391Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7567ec920009062412\"\n        },\n        {\n            \"id\": \"62025d757b46c6000b0c0384\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468BB\"\n            },\n            \"created\": \"2022-02-08T12:09:25.064Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:25.064Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d757b46c6000b0c0383\"\n        },\n        {\n            \"id\": \"62025d747b46c6000b0c0381\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FF\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B9\"\n            },\n            \"created\": \"2022-02-08T12:09:24.723Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:24.723Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d747b46c6000b0c0380\"\n        },\n        {\n            \"id\": \"62025d740fbb0e000ba12c93\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B8\"\n            },\n            \"created\": \"2022-02-08T12:09:24.678Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:24.679Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d740fbb0e000ba12c92\"\n        },\n        {\n            \"id\": \"62025d7367ec920009062410\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B7\"\n            },\n            \"created\": \"2022-02-08T12:09:23.515Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:23.515Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7367ec92000906240f\"\n        },\n        {\n            \"id\": \"62025d7367ec92000906240d\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1FB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B6\"\n            },\n            \"created\": \"2022-02-08T12:09:23.313Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:23.313Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7367ec92000906240c\"\n        },\n        {\n            \"id\": \"62025d7267ec920009062408\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:22.730Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:22.731Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d7267ec920009062407\"\n        },\n        {\n            \"id\": \"62025d720fbb0e000ba12c8e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"PENSION_CANCELLATION_LETTER\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"Pension Account Cancellation\",\n            \"payload\": {\n                \"body\": \"Thank you for opening your pension account.<br><br>Please find attached the account setup confirmation and the cancellation letter should you change your mind.\",\n                \"id\": \"2022-02-08-pensionAccount\"\n            },\n            \"created\": \"2022-02-08T12:09:22.587Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:22.588Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d720fbb0e000ba12c8d\"\n        },\n        {\n            \"id\": \"62025d717b46c6000b0c037e\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F8\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B5\"\n            },\n            \"created\": \"2022-02-08T12:09:21.492Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:21.493Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d717b46c6000b0c037d\"\n        },\n        {\n            \"id\": \"62025d710fbb0e000ba12c8b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B4\"\n            },\n            \"created\": \"2022-02-08T12:09:21.352Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:21.352Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d710fbb0e000ba12c8a\"\n        },\n        {\n            \"id\": \"62025d707b46c6000b0c037b\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B3\"\n            },\n            \"created\": \"2022-02-08T12:09:20.448Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:20.448Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d707b46c6000b0c037a\"\n        },\n        {\n            \"id\": \"62025d707b46c6000b0c0378\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F4\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B2\"\n            },\n            \"created\": \"2022-02-08T12:09:20.214Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:20.215Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d707b46c6000b0c0377\"\n        },\n        {\n            \"id\": \"62025d6f7b46c6000b0c0375\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F2\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"02468B1\"\n            },\n            \"created\": \"2022-02-08T12:09:19.819Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:19.820Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6f7b46c6000b0c0374\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99ce4\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1F1\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689J\"\n            },\n            \"created\": \"2022-02-08T12:09:18.768Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.768Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99ce3\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99ce1\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DH\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689H\"\n            },\n            \"created\": \"2022-02-08T12:09:18.522Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.523Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99ce0\"\n        },\n        {\n            \"id\": \"62025d6ee0f843000ac99cde\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DG\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689G\"\n            },\n            \"created\": \"2022-02-08T12:09:18.280Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:18.280Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ee0f843000ac99cdd\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cdb\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DD\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689F\"\n            },\n            \"created\": \"2022-02-08T12:09:17.720Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.720Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cda\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd8\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DC\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689D\"\n            },\n            \"created\": \"2022-02-08T12:09:17.368Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.368Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd7\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd5\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1DB\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689C\"\n            },\n            \"created\": \"2022-02-08T12:09:17.135Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.135Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd4\"\n        },\n        {\n            \"id\": \"62025d6de0f843000ac99cd2\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D7\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"024689B\"\n            },\n            \"created\": \"2022-02-08T12:09:17.035Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:17.035Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6de0f843000ac99cd1\"\n        },\n        {\n            \"id\": \"62025d6ce0f843000ac99ccf\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D9\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246899\"\n            },\n            \"created\": \"2022-02-08T12:09:16.924Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:16.924Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ce0f843000ac99cce\"\n        },\n        {\n            \"id\": \"62025d6ce0f843000ac99ccc\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D6\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246898\"\n            },\n            \"created\": \"2022-02-08T12:09:16.430Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:16.430Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6ce0f843000ac99ccb\"\n        },\n        {\n            \"id\": \"62025d6be0f843000ac99cc9\",\n            \"firmId\": \"TEST1\",\n            \"clientId\": \"028G1D5\",\n            \"nodeId\": [\n                \"0\"\n            ],\n            \"messageType\": \"NEW_ACCOUNT\",\n            \"read\": false,\n            \"archived\": false,\n            \"status\": \"ACTIVE\",\n            \"subject\": \"New Account\",\n            \"payload\": {\n                \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n                \"accountId\": \"0246897\"\n            },\n            \"created\": \"2022-02-08T12:09:15.874Z\",\n            \"auditDetails\": {\n                \"updateDate\": \"2022-02-08T12:09:15.875Z\",\n                \"userFirmId\": \"BACKGROUND\",\n                \"userId\": \"Background\",\n                \"version\": 1,\n                \"application\": \"CommunicationsProcessor\"\n            },\n            \"updateId\": \"62025d6be0f843000ac99cc8\"\n        }\n    ],\n    \"meta\": {\n        \"count\": 402\n    }\n}"}],"_postman_id":"e100298d-64a7-4c9e-971d-194081e46c20"},{"name":"Retrieve unread message count","event":[{"listen":"test","script":{"exec":["var json = pm.response.json()","console.log(json)",""],"type":"text/javascript","id":"d809c389-d78a-449b-9745-ad117b5bf25d"}}],"id":"04dd5ea4-fbe3-4045-a4fb-c51e77e080bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"{{apiRoute}}/message/stats/{{firmId}}","description":"<p>This command retrieves the number of unread messages for a firm. You can use the <code>clientId</code> query parameter to filter the unread message count for a client.</p>\n<h4 id=\"request-parameters\">Request parameters</h4>\n<p><code>firmId</code> string <strong>Required</strong><br />The unique identifier of the firm</p>\n<p>Returns the <code>unreadMessageCount</code> field with the number of unread messages.</p>\n<hr />\n<h4 id=\"parameters\">Parameters</h4>\n<p><code>unreadMessageCount</code> string <strong>Required</strong><br />The number of unread messages</p>\n","urlObject":{"path":["message","stats","{{firmId}}"],"host":["{{apiRoute}}"],"query":[{"disabled":true,"key":"clientId","value":"028G1H8"}],"variable":[]}},"response":[{"id":"3698e063-ffd5-4e6c-bffb-8286d1a000e9","name":"Retrieve unread message count","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{apiRoute}}/message/stats/{{firmId}}","host":["{{apiRoute}}"],"path":["message","stats","{{firmId}}"],"query":[{"key":"clientId","value":"028G1H8","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"unreadMessageCount\": 402\n    },\n    \"meta\": {}\n}"}],"_postman_id":"04dd5ea4-fbe3-4045-a4fb-c51e77e080bf"},{"name":"Update message status","event":[{"listen":"test","script":{"exec":["const json = pm.response.json()","console.log(json)"],"type":"text/javascript","id":"eb3a613b-dd9d-4816-9690-fd24c52be23e"}}],"id":"edbff845-1f82-449f-a296-355ff2005e50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{messageId}}\",\n    \"updateAction\": \"READ\",\n    \"updateReason\": \"Client has read the message\",\n    \"updateData\": {\n        \"read\": true\n    },\n    \"updateId\": \"{{messageUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/message/{{firmId}}/{{messageId}}","description":"<p>This command allows you to update the read or archived status of a message.</p>\n","urlObject":{"path":["message","{{firmId}}","{{messageId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"d1bc235a-2050-427d-ae72-ef6e9e14270a","name":"Message Update – Archived Status","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{messageId}}\",\n    \"updateAction\": \"ARCHIVE\",\n    \"updateReason\": \"Client wants to archive the message\",\n    \"updateData\": {\n        \"archived\": true\n    },\n    \"updateId\": \"{{messageUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/message/{{firmId}}/{{messageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"fd2ec685-bb31-41ce-b5e1-87b6d57a310d","name":"Message Update – Read Status","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{firmId}}\",\n    \"id\": \"{{messageId}}\",\n    \"updateAction\": \"READ\",\n    \"updateReason\": \"Client has read the message\",\n    \"updateData\": {\n        \"read\": true\n    },\n    \"updateId\": \"{{messageUpdateId}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/message/{{firmId}}/{{messageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"edbff845-1f82-449f-a296-355ff2005e50"}],"id":"4309055e-2096-49ce-bdd5-5d1d091573c1","description":"<p>The client message hub is used to manage client messages, their data and their status. This functions as an inbox for all investor-facing documents. You can use the requests below to search, retrieve and update messages.</p>\n<p>The type of message can be retrieved using the following variables under <code>messageType.</code></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong><code>MessageType</code></strong></th>\n<th><strong>Purpose of message</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>CONTRACT_NOTE</td>\n<td>To notify investors when a trade is completed – providing a link to a contract note PDF</td>\n</tr>\n<tr>\n<td>QUARTERLY_STATEMENT</td>\n<td>To notify investors of a quarterly overview of their account – providing a link to a valuation statement PDF</td>\n</tr>\n<tr>\n<td>TAX_STATEMENT</td>\n<td>To notify investors annually of all tax-related information regarding their GIA</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_NOTICE</td>\n<td>To notify investors before a Direct Debit payment is made - providing a link to a Direct Debit Mandate Notice PDF</td>\n</tr>\n<tr>\n<td>ADVANCE_DIRECT_DEBIT_MANDATE_CONFIRMATION.</td>\n<td>To notify investors once a Direct Debit payment is made – providing a link to a Direct Debit Mandate Confirmation PDF</td>\n</tr>\n<tr>\n<td>PENSION_CANCELLATION_LETTER</td>\n<td>To notify investors upon creating a pension product – providing a link to a Pension Product Cancellation Letter PDF</td>\n</tr>\n<tr>\n<td>PENSION_TRANSFER_CANCELLATION_LETTER</td>\n<td>To notify investors upon transferring a pension product – providing a link to a Pension Product Transfer Cancellation Letter PDF</td>\n</tr>\n<tr>\n<td>ILLUSTRATION</td>\n<td>To notify investors upon creating an illustration – providing a link to an illustration PDF</td>\n</tr>\n<tr>\n<td>DRAWDOWN_APPLICATION</td>\n<td>To notify investors upon taking income from a pension product – providing a link to a Drawdown Application PDF</td>\n</tr>\n<tr>\n<td>PENSION_PAYSLIP</td>\n<td>To notify investors of pension payslips - providing a link to a Pension payslip PDF</td>\n</tr>\n<tr>\n<td>SMPI_ANNUAL_STATEMENT</td>\n<td>To notify investors annually about a pension statement - providing a link to an Annual Statement PDF</td>\n</tr>\n<tr>\n<td>RETIREMENT_PACK</td>\n<td>To notify investors approaching retirement about their options - providing a link to a retirement pack PDF</td>\n</tr>\n<tr>\n<td>FLEXI_ACCESS_NOTIFICATION</td>\n<td>To notify investors once they take their first taxable payment from their pension (UFPLS or taxable payment from their drawdown account)</td>\n</tr>\n<tr>\n<td>PENSION_SAVING_STATEMENT</td>\n<td>To notify investors if they have exceeded their annual allowance or MPAA in a tax year  <br />Sent no later than 6th October after the end of the tax year in which the allowance has been exceeded</td>\n</tr>\n<tr>\n<td>PENSION_PAYSLIP_NOTIFICATION</td>\n<td>To notify investors following the processing of a pension transaction</td>\n</tr>\n<tr>\n<td>TAX_PACK</td>\n<td>To notify investors annually of all income related their GIA and a summary of contributions to their pension</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"4309055e-2096-49ce-bdd5-5d1d091573c1"},{"name":"Retrieve messages","item":[{"name":"Retrieve specific message","id":"8d546ed3-4b3f-4cdc-a604-93dc11d57b4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"url":"{{apiRoute}}/message/{{firmId}}/{{messageId}}","description":"<p>You can use this endpoint to retrieve a specific message for your client. Generally you would use the <strong>GET</strong> list call to list all messages in a client's message hub.</p>\n<p>Then, when they click into a specific message, they will be presented with the message data from this single message <strong>GET</strong> request.</p>\n<p>If the message is a certain document type (see the request below this one), then you can use the following request to retrieve that document, based on the payload in this message.</p>\n<p>We've used the <strong>Tests</strong> section in Postman to construct this flow for you to test in action.</p>\n","urlObject":{"path":["message","{{firmId}}","{{messageId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"2593af72-e0a6-4a20-a580-71f8d728ad2a","name":"Retrieve specific message","originalRequest":{"method":"GET","header":[],"url":"{{apiRoute}}/message/{{firmId}}/{{messageId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"62025eeeb03af6000b2a35d3\",\n        \"firmId\": \"TEST1\",\n        \"clientId\": \"028G276\",\n        \"nodeId\": [\n            \"0\"\n        ],\n        \"messageType\": \"NEW_ACCOUNT\",\n        \"read\": false,\n        \"archived\": false,\n        \"status\": \"ACTIVE\",\n        \"subject\": \"New Account\",\n        \"payload\": {\n            \"body\": \"Congratulations, you have set up a new account!\\n\\n You will now have the account number so you can add cash and start investing.\\n\\n Should you have any questions, do get in touch.\",\n            \"accountId\": \"02468H7\"\n        },\n        \"created\": \"2022-02-08T12:15:42.689Z\",\n        \"auditDetails\": {\n            \"updateDate\": \"2022-02-08T12:15:42.689Z\",\n            \"userFirmId\": \"BACKGROUND\",\n            \"userId\": \"Background\",\n            \"version\": 1,\n            \"application\": \"CommunicationsProcessor\"\n        },\n        \"updateId\": \"62025eeeb03af6000b2a35d2\"\n    }\n}"}],"_postman_id":"8d546ed3-4b3f-4cdc-a604-93dc11d57b4d"}],"id":"7cf6d9c5-44d5-46ce-aaae-8c9956cab55b","description":"<p>This command will allow you to retrieve specific client messages from the message hub.</p>\n","_postman_id":"7cf6d9c5-44d5-46ce-aaae-8c9956cab55b"}],"id":"92a90b33-4981-487f-9ba4-63b5c73ef9fb","description":"<p>Client reporting describes the regulatory documents that must be made available to the client, including:</p>\n<ul>\n<li>Contract notes (or trade confirmations)</li>\n<li>Trade illustrations (pre and post cost disclosures)</li>\n<li>Product illustrations</li>\n<li>Quarterly valuation statements</li>\n<li>Annual valuation statements</li>\n<li>Tax statements/ consolidated tax vouchers</li>\n<li>Direct debit mandate confirmations</li>\n<li>Direct debit advice notices</li>\n<li>Pension cancellation letters</li>\n<li>Pension payslips</li>\n</ul>\n<p>All documents can be retrieved from the API and must be made available to clients in your application's message hub.</p>\n<p>This sections covers:</p>\n<ul>\n<li>How to generate a trade illustration</li>\n<li>How to generate and download a product illustration</li>\n<li>How to access other regulatory investor documents</li>\n<li>How to retrieve client messages</li>\n</ul>\n<p><strong>Please note: there are two types of illustrations - trade and product.</strong></p>\n","_postman_id":"92a90b33-4981-487f-9ba4-63b5c73ef9fb"},{"name":"Migration","item":[{"name":"Bulk Client Create","id":"8ecb64ed-9d90-469e-8930-853f6e34fa10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"nodeId\": [\n                \"{{firmNodeId}}\"\n            ],\n            \"clientType\": \"Individual\",\n            \"title\": \"Mrs\",\n            \"firstName\": \"Wilma\",\n            \"surname\": \"Flintstone\",\n            \"currency\": \"GBP\",\n            \"addressDetail\": {\n                \"flatNumber\": \"301\",\n                \"address1\": \"Cobblestone Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"B70 777\"\n            },\n            \"language\": \"en\",\n            \"email\": \"{{clientEmail}}\",\n            \"mobile\": {\n                \"number\": \"07777000000\",\n                \"locale\": \"en-GB\",\n                \"isMobile\": true\n            },\n            \"nationality\": \"GB\",\n            \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n            \"nationalities\": [\n                {\n                    \"code\": \"GB\",\n                    \"identifiers\": [\n                        {\n                            \"name\": \"National Insurance Number\",\n                            \"available\": true,\n                            \"value\": \"{{clientNiNumber}}\"\n                        }\n                    ]\n                }\n            ],\n            \"dateOfBirth\": \"1982-10-01\",\n            \"vulnerability\": {\n                \"isVulnerable\": true,\n                \"reason\": [\n                    \"Health\",\n                    \"Life event\",\n                    \"Resilience\",\n                    \"Capability\"\n                ],\n                \"isSupportTemporary\": false\n            },\n            \"taxDomicile\": \"GB\",\n            \"amlStatus\": \"Approved\",\n            \"termsAccepted\": true,\n            \"emailVerified\": true,\n            \"bankDetails\": {\n                \"sortCode\": \"993049\",\n                \"accountNumber\": \"99238540\"\n            },\n            \"kycData\": {\n                \"domesticPep\": false,\n                \"domesticAssociatedPep\": false,\n                \"foreignPep\": false,\n                \"foreignAssociatedPep\": false,\n                \"sanctioned\": false\n            }\n        }\n    ]\n}"},"url":"{{apiRoute}}/upload/migration/client","description":"<p>This endpoint allows you to upload migration client data via an HTTP POST request to {{apiRoute}}/upload/migration/client. The request should include a payload with a raw request body containing an array of client records, each with various client details such as firm ID, node ID, client type, personal information, contact details, nationality, date of birth, vulnerability status, tax domicile, AML status, bank details, and KYC data. The response to this request will include a status code and a JSON object with an error field, which may contain type, error message, status code, and field errors.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<ul>\n<li><code>records</code> (array): An array of client records, each containing detailed information about the client.</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<ul>\n<li><p><code>Status</code>: 400</p>\n</li>\n<li><p><code>Content-Type</code>: application/json</p>\n</li>\n<li><p><code>error</code> (object): An object containing error details, including type, error message, status code, and field errors.</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\">{\"data\":{}}\n\n</code></pre>\n","urlObject":{"path":["upload","migration","client"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"097f4a03-0b60-4822-ba4a-f0f4cee79136","name":"Bulk Client Create - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"nodeId\": [\n                \"{{firmNodeId}}\"\n            ],\n            \"clientType\": \"Individual\",\n            \"title\": \"Mrs\",\n            \"firstName\": \"Wilma\",\n            \"surname\": \"Flintstone\",\n            \"currency\": \"GBP\",\n            \"addressDetail\": {\n                \"flatNumber\": \"301\",\n                \"address1\": \"Cobblestone Way\",\n                \"address2\": \"Bedrock\",\n                \"country\": \"GB\",\n                \"postCode\": \"B70 777\"\n            },\n            \"language\": \"en\",\n            \"email\": \"{{clientEmail}}\",\n            \"mobile\": {\n                \"number\": \"07777000000\",\n                \"locale\": \"en-GB\",\n                \"isMobile\": true\n            },\n            \"nationality\": \"GB\",\n            \"nationalInsuranceNo\": \"{{clientNiNumber}}\",\n            \"nationalities\": [\n                {\n                    \"code\": \"GB\",\n                    \"identifiers\": [\n                        {\n                            \"name\": \"National Insurance Number\",\n                            \"available\": true,\n                            \"value\": \"{{clientNiNumber}}\"\n                        }\n                    ]\n                }\n            ],\n            \"dateOfBirth\": \"1982-10-01\",\n            \"vulnerability\": {\n                \"isVulnerable\": true,\n                \"reason\": [\n                    \"Health\",\n                    \"Life event\",\n                    \"Resilience\",\n                    \"Capability\"\n                ],\n                \"isSupportTemporary\": false\n            },\n            \"taxDomicile\": \"GB\",\n            \"amlStatus\": \"Approved\",\n            \"termsAccepted\": true,\n            \"emailVerified\": true,\n            \"bankDetails\": {\n                \"sortCode\": \"993049\",\n                \"accountNumber\": \"99238540\"\n            },\n            \"kycData\": {\n                \"domesticPep\": false,\n                \"domesticAssociatedPep\": false,\n                \"foreignPep\": false,\n                \"foreignAssociatedPep\": false,\n                \"sanctioned\": false\n            }\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/upload/migration/client"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"f7e23e42-8c63-4d72-89a8-3c9fcbf949d4","name":"Bulk Client Create - No records error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/upload/migration/client"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"No valid records found\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"8ecb64ed-9d90-469e-8930-853f6e34fa10"},{"name":"Bulk Account Create","id":"8a6781de-5844-4d9f-a9a4-7e46a702ad79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"nodeId\": \"{{nodeId}}\",\n            \"name\": \"Future savings\",\n            \"currency\": \"GBP\",\n            \"accountType\": \"Wrapper\",\n            \"clientId\": \"{{clientId}}\",\n            \"status\": \"Active\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"GIA\"\n            },\n            \"recurringOrders\": {\n                \"movementType\": \"Invest\",\n                \"investmentType\": \"Bespoke\",\n                \"details\": [\n                    {\n                        \"assetId\": \"26MPD\",\n                        \"percentage\": 0.5\n                    }\n                ],\n                \"orderDay\": 7\n            },\n            \"recurringPayments\": [\n                {\n                    \"movementType\": \"Out\",\n                    \"amount\": 42.42,\n                    \"paymentDay\": 1,\n                    \"method\": \"Bank Transfer\"\n                }\n            ]\n        }\n    ]\n}"},"url":"{{apiRoute}}/upload/migration/account","description":"<p>This API endpoint allows you to upload migration account records via an HTTP POST request to {{apiRoute}}/upload/migration/account.</p>\n<h3 id=\"request-body\">Request Body</h3>\n<p>The request body should be in raw JSON format and include an array of \"records\" containing details of the account migration. The array of records can be for a mix of wrapper types, but each record should include the following parameters (others may be required depending on wrapper type, see <a href=\"https://docs.seccl.tech/#c62db7db-606d-402a-81e2-24bf7e16fc4c\">Investment Accounts</a> for more examples).</p>\n<ul>\n<li><p>\"firmId\": The ID of the firm associated with the account.</p>\n</li>\n<li><p>\"nodeId\": The node ID of the account.</p>\n</li>\n<li><p>\"name\": The name of the account.</p>\n</li>\n<li><p>\"currency\": The currency of the account.</p>\n</li>\n<li><p>\"accountType\": The type of account.</p>\n</li>\n<li><p>\"clientId\": The ID of the client associated with the account.</p>\n</li>\n<li><p>\"status\": The status of the account.</p>\n</li>\n<li><p>\"wrapperDetail\": An object containing details about the wrapper, including \"wrapperType\".</p>\n</li>\n</ul>\n<h3 id=\"response\">Response</h3>\n<p>The response will be in JSON format and will include a \"data\" object. The content of the \"data\" object will vary based on the success or failure of the request.</p>\n<h4 id=\"example\">Example</h4>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\"data\":{}}\n\n</code></pre>\n","urlObject":{"path":["upload","migration","account"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"1835c42e-456c-4b3c-973a-d449edd712ee","name":"Bulk Account Create - Success","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": [\n        {\n            \"firmId\": \"{{firmId}}\",\n            \"nodeId\": \"{{nodeId}}\",\n            \"name\": \"Future savings\",\n            \"currency\": \"GBP\",\n            \"accountType\": \"Wrapper\",\n            \"clientId\": \"{{clientId}}\",\n            \"status\": \"Active\",\n            \"wrapperDetail\": {\n                \"wrapperType\": \"GIA\"\n            },\n            \"recurringOrders\": {\n                \"movementType\": \"Invest\",\n                \"investmentType\": \"Bespoke\",\n                \"details\": [\n                    {\n                        \"assetId\": \"26MPD\",\n                        \"percentage\": 0.5\n                    }\n                ],\n                \"orderDay\": 7\n            },\n            \"recurringPayments\": [\n                {\n                    \"movementType\": \"Out\",\n                    \"amount\": 42.42,\n                    \"paymentDay\": 1,\n                    \"method\": \"Bank Transfer\"\n                }\n            ]\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/upload/migration/account"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"},{"id":"a96848dc-f412-4173-a140-3f081dbed50a","name":"Bulk Account Create - No records error","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\n    \"records\": []\n}","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/upload/migration/account"},"status":"Bad Request","code":400,"_postman_previewlanguage":null,"header":null,"cookie":[],"responseTime":null,"body":"{\n    \"error\": {\n        \"type\": \"DataValidationError\",\n        \"errorMessage\": \"No valid records found\",\n        \"statusCode\": 400,\n        \"fieldErrors\": []\n    }\n}"}],"_postman_id":"8a6781de-5844-4d9f-a9a4-7e46a702ad79"}],"id":"c69cbee8-45ec-4b5b-9f04-ce71af99e25b","description":"<p>Here we'll show you how you can send requests to migrate/input records in bulk - this should be done in agreement with your account or launch manager.</p>\n<p>Currently, you are able to use the endpoint to create <a href=\"https://docs.seccl.tech/#b0542061-050e-476e-b754-9db18c132638\">clients</a> and <a href=\"https://docs.seccl.tech/#c62db7db-606d-402a-81e2-24bf7e16fc4c\">accounts</a>.</p>\n<p>It should be noted that any request that fails as part of a group of records will generate a <a href=\"https://docs.seccl.tech/#17d9c9a0-90e2-4abc-b0b5-8c527cca9405\">notification</a> which will need to be reviewed then actioned, or closed.</p>\n","_postman_id":"c69cbee8-45ec-4b5b-9f04-ce71af99e25b"},{"name":"Outgoing webhooks","item":[{"name":"Accounts Webhooks","item":[{"name":"Webhook configuration","item":[{"name":"Create webhook config","event":[{"listen":"test","script":{"id":"e0f2c47a-3015-46ea-9ac0-32b0d280a313","exec":["const json = pm.response.json()","console.log(json)","pm.environment.set(\"webhookId\", json.data.id);",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"962c4491-3fb2-44f1-a71d-69ec008772aa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"url\": \"https://example.com/hook\",\n    \"enabled\": true,\n    \"secret\": \"ahfuirwhfueirdhuoe\",\n    \"types\": [\"account.created.v1\", \"account.updated.v1\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/","description":"<p>Webhooks are stored <strong>per URL</strong>. Each unique URL can subscribe to multiple event types, allowing you to consolidate events to a single endpoint.</p>\n","urlObject":{"path":["v1","webhook",""],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"37a2b9c2-3816-444e-9916-9d2f86e01175","name":"Create webhook config","originalRequest":{"method":"POST","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"firmId\": \"{{pfolioUserFirmId}}\",\n    \"url\": \"https://example.com/hook\",\n    \"secret\": \"ahfuirwhfueirdhuoe\",\n    \"types\": [\"account.created.v1\", \"account.updated.v1\"],\n    \"enabled\": true\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/"},"status":"Created","code":201,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:40:59 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"42"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"46a63385-149a-4ea4-9b02-a5a5535fec53"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"42"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScHk3HO6DoEEeIw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"2a-75ULpANeSi0aBitdugMNuUbRO6w\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee52eb-6410c5ef4d38f2561adc0fcb;Parent=76928a536380fbc7;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"68ee52ebaaee1cfdcebd40b4\"\n    }\n}"}],"_postman_id":"962c4491-3fb2-44f1-a71d-69ec008772aa"},{"name":"Webhook config by ID","id":"ceeb7580-2fe6-42b6-86d6-0e1a214c951c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}","{{webhookId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"dd4cecbb-d0f0-4283-b784-00702143685f","name":"Webhook config by ID","originalRequest":{"method":"GET","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:42:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"142"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ffb643a4-d71b-471b-bf58-9a88f26195e2"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"142"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScHynENSjoEEgpw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"8e-KUVmYfWAjE7cIkhpbDRA0id0pms\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee5343-783eaa8c79145dd36b15ad83;Parent=40a418dff146a533;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"68ee52ebaaee1cfdcebd40b4\",\n        \"url\": \"https://example.com/hook\",\n        \"types\": [\n            \"account.created.v1\",\n            \"account.updated.v1\"\n        ],\n        \"enabled\": true\n    }\n}"}],"_postman_id":"ceeb7580-2fe6-42b6-86d6-0e1a214c951c"},{"name":"All webhook configs","id":"71b9f09c-445d-4802-bad6-1416194510a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"f46c2bf1-dfd3-4c11-819f-97e40b134ca9","name":"All webhook configs","originalRequest":{"method":"GET","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:44:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"381"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"11bbe43d-d0f3-4a40-92a2-3d5e8f83918f"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"381"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScIDCHIiDoEEV0g="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"17d-XjM1LaEj9Gk7xI33y5yHvpUX2SE\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee53ac-3ce4de65256146a85c9bbbd3;Parent=7a8e1e224a36215a;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": [\n        {\n            \"url\": \"https://example.com/hook\",\n            \"types\": [\n                \"account.created.v1\",\n                \"account.updated.v1\"\n            ],\n            \"enabled\": true,\n            \"id\": \"68ee52ebaaee1cfdcebd40b4\"\n        },\n        {\n            \"url\": \"https://example.com/hook\",\n            \"types\": [\n                \"account.created.v1\"\n            ],\n            \"enabled\": true,\n            \"id\": \"68ee533daaee1cfdcebd40b6\"\n        },\n        {\n            \"url\": \"https://example.com/hook\",\n            \"types\": [\n                \"account.updated.v1\"\n            ],\n            \"enabled\": false,\n            \"id\": \"68ee5343aaee1cfdcebd40b8\"\n        }\n    ],\n    \"meta\": {}\n}"}],"_postman_id":"71b9f09c-445d-4802-bad6-1416194510a5"},{"name":"Update URL / Types","id":"626db73d-6815-47d2-9869-3f89c6306266","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://example.com/new-hook\",\n    \"types\": [\"account.created.v1\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}","{{webhookId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"5f7a35cb-c54f-4daa-8fba-20e55cabe422","name":"Update URL / Types","originalRequest":{"method":"PATCH","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"url\": \"https://example.com/new-hook\",\n    \"types\": [\"account.created.v1\"]\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:45:05 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"2308f215-26e3-4a74-b164-b79d5ad0427c"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScILQEFhDoEEZng="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee53e1-1aaac8b92c797f2d54e529a5;Parent=4d19e0d290d8516b;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"626db73d-6815-47d2-9869-3f89c6306266"},{"name":"Update secret","id":"4b7c75d5-4fab-4444-985e-ca632e514296","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"secret\": \"dshu;[]ewhuifew56533he\"\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}","{{webhookId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"6f644fb6-84cb-4126-92e4-1e3f072c3db2","name":"Update secret","originalRequest":{"method":"PATCH","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"body":{"mode":"raw","raw":"{\n    \"secret\": \"dshu;[]ewhuifew56533he\"\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:46:03 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"ff7d5435-407e-4aee-9cda-28d6ea61f0c7"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScIUSH9aDoEEMWQ="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee541b-72aca2867821f7d929612291;Parent=2f5191e4fc7892c4;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"4b7c75d5-4fab-4444-985e-ca632e514296"},{"name":"Disabled webhook","id":"979347a8-ac4d-4c3d-84f0-aa026e0dce95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"enabled\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}","{{webhookId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"979347a8-ac4d-4c3d-84f0-aa026e0dce95"},{"name":"Delete webhook","id":"c1bc2e85-35f2-4f4a-b27e-091d992803a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}","urlObject":{"path":["v1","webhook","{{pfolioUserFirmId}}","{{webhookId}}"],"host":["{{pfolioApiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"a94e2b66-f191-45b4-aa07-64c06494ac3e","name":"Delete webhook","originalRequest":{"method":"DELETE","header":[{"key":"api-token","value":"{{pfolioApiToken}}"}],"url":"{{pfolioApiRoute}}/v1/webhook/{{pfolioUserFirmId}}/{{webhookId}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Tue, 14 Oct 2025 13:46:22 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"11"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"debc3f7b-8a85-46d3-8d19-f8f97b8c4307"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"11"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"ScIXLHaXDoEEsWw="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"b-fhQcczzxGwaoxmXpXwnFoXY79UQ\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-68ee542d-6781b78e3bca2b3060c102e0;Parent=2e62bba125129079;Sampled=0;Lineage=1:bc2a9401:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {}\n}"}],"_postman_id":"c1bc2e85-35f2-4f4a-b27e-091d992803a2"}],"id":"ba883b3c-cde7-4da9-b56c-67c6662b96de","description":"<p>To configure new webhooks there are new endpoints. These do not overlap with the existing webhooks endpoints so neither endpoint now gives a holistic view of the webhook configuration for your firm.</p>\n<p>We will only accept full domains with https. IPs or non-http urls are not supported.</p>\n<p>The following endpoints are available and documented below:</p>\n<ul>\n<li><p><code>POST /v1/webhook</code></p>\n</li>\n<li><p><code>GET /v1/webhook/:firm_id/:id</code></p>\n</li>\n<li><p><code>GET /v1/webhook/:firm_id</code></p>\n</li>\n<li><p><code>PATCH /v1/webhook/:firm_id/:id</code></p>\n</li>\n<li><p><code>DELETE /v1/webhook/:firm_id/:id</code></p>\n</li>\n</ul>\n","_postman_id":"ba883b3c-cde7-4da9-b56c-67c6662b96de"},{"name":"Webhook payload","item":[{"name":"account.created.v1","item":[],"id":"afb1147d-da9a-47e6-addb-e69d65e3d737","description":"<p>Below is the JSON schema of the account created webhook payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"eventType\": {\n      \"const\": \"account.created.v1\",\n      \"type\": \"string\"\n    },\n    \"timestamp\": {\n      \"type\": \"string\",\n      \"format\": \"date-time\"\n    },\n    \"data\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": {\n          \"type\": \"string\"\n        },\n        \"nodeId\": {\n          \"type\": \"string\"\n        },\n        \"status\": {\n          \"type\": \"string\"\n        },\n        \"clientId\": {\n          \"type\": \"string\"\n        },\n        \"clients\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        },\n        \"externalReference\": {\n          \"type\": \"string\"\n        },\n        \"wrapperDetail\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"wrapperType\": {\n              \"type\": \"string\"\n            }\n          },\n          \"required\": [\"wrapperType\"]\n        }\n      },\n      \"required\": [\"id\", \"nodeId\", \"status\", \"wrapperDetail\"]\n    }\n  },\n  \"required\": [\"eventType\", \"timestamp\", \"data\"]\n}\n\n</code></pre>\n","_postman_id":"afb1147d-da9a-47e6-addb-e69d65e3d737"},{"name":"account.updated.v1","item":[],"id":"57d41af3-750c-474e-8f7c-4f3a2f22ea73","description":"<p>Below is the JSON schema of the account updated webhook payload</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"object\",\n  \"properties\": {\n    \"eventType\": {\n      \"const\": \"account.updated.v1\",\n      \"type\": \"string\"\n    },\n    \"timestamp\": {\n      \"type\": \"string\",\n      \"format\": \"date-time\"\n    },\n    \"data\": {\n      \"type\": \"object\",\n      \"properties\": {\n        \"id\": {\n          \"type\": \"string\"\n        },\n        \"nodeId\": {\n          \"type\": \"string\"\n        },\n        \"status\": {\n          \"type\": \"string\"\n        },\n        \"clientId\": {\n          \"type\": \"string\"\n        },\n        \"clients\": {\n          \"type\": \"array\",\n          \"items\": {\n            \"type\": \"string\"\n          }\n        },\n        \"externalReference\": {\n          \"type\": \"string\"\n        },\n        \"wrapperDetail\": {\n          \"type\": \"object\",\n          \"properties\": {\n            \"wrapperType\": {\n              \"type\": \"string\"\n            }\n          },\n          \"required\": [\"wrapperType\"]\n        }\n      },\n      \"required\": [\"id\", \"nodeId\", \"status\", \"wrapperDetail\"]\n    },\n    \"updatedFields\": {\n      \"type\": \"array\",\n      \"items\": {\n        \"type\": \"string\"\n      }\n    }\n  },\n  \"required\": [\"eventType\", \"timestamp\", \"data\", \"updatedFields\"]\n}\n\n</code></pre>\n","_postman_id":"57d41af3-750c-474e-8f7c-4f3a2f22ea73"}],"id":"3d8f06d3-ac76-462a-82d1-daadaca95116","description":"<p>All events follow this schema:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"entity.action.version\",\n  \"timestamp\": \"1970-01-01T00:00:00.000Z\",\n  \"data\": {}\n}\n\n</code></pre>\n<p>The webhook will be sent with the following headers:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>webhook-id: A unique identifier for this specific event message. Use this as an idempotency key to prevent processing the same event multiple times.\nwebhook-timestamp: A Unix timestamp (in seconds) of when the request was sent. You should check that this timestamp is recent to prevent replay attacks.\nwebhook-signature: Webhook signature.\n\n</code></pre><p>Current events that can be subscribed to:</p>\n<ul>\n<li><p><code>account.created.v1</code></p>\n</li>\n<li><p><code>account.updated.v1</code></p>\n</li>\n</ul>\n<p>The current payloads are defined in the subfolders and will initially be thin events. This means that core fields will be sent and an array listing the properties updated.. When an account is created, all core fields will be returned. When an account is updated, the core fields and a list of updated fields will be returned.</p>\n<p>We are open to extension and enrichment to the payloads of the webhooks. Please contact your account manager if you wish to raise potential extensions.</p>\n","_postman_id":"3d8f06d3-ac76-462a-82d1-daadaca95116"},{"name":"Webhook best practices","item":[],"id":"689f921d-fe10-4d22-90d1-1e468f6e9df0","description":"<p>This section of documentation outlines our recommendations for building a webhook handler to receive notifications from Seccl. This list is not exhaustive and you should strongly consider all security, performance and resilience aspects that accompany building an endpoint to receive requests. This section will be updated as our recommendations evolve.</p>\n<h2 id=\"idempotency\">Idempotency</h2>\n<p>Our webhook service provides \"at least once\" delivery due to the distributed nature of the system. In rare cases, you may receive duplicate webhook payloads. Each webhook includes a unique <code>webhook-id</code> in the request header that remains consistent across retries of the same event but changes for new events.</p>\n<p>To handle potential duplicates, you should consider storing received <code>webhook-id</code> values and checking against these before processing. This allows you to identify and skip webhooks you've already handled.</p>\n<h2 id=\"resiliency\">Resiliency</h2>\n<p>Our system expects acknowledgement of receipt within 30 seconds, after which it will retry delivery.</p>\n<p>To avoid blocking this acknowledgement while processing potentially time-consuming logic, many implementations decouple the receipt and processing steps. For example, you could acknowledge receipt immediately and queue the payload for asynchronous processing using a message queue or similar mechanism. This approach allows you to process webhooks at whatever rate works best for your infrastructure without risking delivery timeouts.</p>\n<h2 id=\"verify-the-sender\"><strong>Verify the sender</strong></h2>\n<p>We strongly recommend verifying the signature included with each webhook to confirm the request originated from Seccl. For implementation details, see the step-by-step guide in the <code>Webhook payload</code> section.</p>\n<h2 id=\"ip-allowlist\"><strong>IP allowlist</strong></h2>\n<p>All webhook notifications originate from a single, consistent IP address. If your security requirements include IP-based filtering, you can configure your firewall or endpoint to accept requests only from this address. Please contact us for the specific IP details. Note that this only applies in our production environment and the IP address may differ in staging.</p>\n","_postman_id":"689f921d-fe10-4d22-90d1-1e468f6e9df0"}],"id":"ec8e1ae2-a4dd-4194-81af-596c86b93220","description":"<h2 id=\"new-webhooks-implementation\">New Webhooks Implementation</h2>\n<p><strong>Important:</strong> This section of documentation describes our new, advanced webhooks system for account-related events. This is a separate implementation from our existing webhooks offering and provides enhanced functionality and reliability.</p>\n<p>If you're currently using our existing webhooks, they will continue to function as expected. We will be migrating existing webhooks to this new pattern in due course, and we'll provide advance notice and guidance when that transition begins. Documentation for the existing webhook types can be found under the 'Outgoing webhooks' section.</p>\n<h2 id=\"standard-webhooks-specification\">Standard Webhooks Specification</h2>\n<p>To ensure a secure, reliable, and consistent experience for all developers, our new webhooks follow the <a href=\"https://www.standardwebhooks.com/\">Standard Webhooks specification</a>. This means you can count on a predictable structure and robust security features including:</p>\n<ul>\n<li><p>Standardised payload formats</p>\n</li>\n<li><p>Built-in signature verification</p>\n</li>\n<li><p>Consistent retry behavior</p>\n</li>\n<li><p>Industry-standard best practices</p>\n</li>\n</ul>\n<hr />\n<h2 id=\"webhook-secret\">Webhook secret</h2>\n<p>In accordance to the specification, secrets should be prefixed with <code>whsec_</code> and then the base64 encoding of the secret. This will then be decoded and used as the signing key for the HMAC signature.</p>\n<p>We do allow plaintext secrets. Any secrets not prefixed with <code>whsec_</code> will be handled as a raw string for signing.</p>\n<hr />\n<h2 id=\"payload-structure\">Payload Structure</h2>\n<p>When an event is triggered, we'll send an HTTP <code>POST</code> request to your endpoint with a JSON payload in the request body.</p>\n<p>The payload will always contain a standard structure:</p>\n<ul>\n<li><p><strong><code>type</code></strong>: A string identifying the event, with parts separated by periods (e.g., <code>account.created</code>).</p>\n</li>\n<li><p><strong><code>timestamp</code></strong>: An ISO 8601 formatted timestamp indicating when the event originally occurred.</p>\n</li>\n<li><p><strong><code>data</code></strong>: A JSON object containing the specific information related to the event.</p>\n</li>\n</ul>\n<h3 id=\"example-payload\">Example Payload</h3>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"type\": \"account.created.v1\",\n  \"timestamp\": \"2025-10-10T12:54:51.344Z\",\n  \"data\": {\n    \"id\": \"A123456\",\n    \"some\": \"fields\",\n    \"when\": \"created\"\n  }\n}\n\n</code></pre>\n<hr />\n<h2 id=\"verifying-webhook-signatures\">Verifying Webhook Signatures</h2>\n<p>To ensure security, you <strong>must verify the signature of every webhook</strong> you receive. This confirms that the request was sent by our platform and that its payload has not been tampered with during transit.</p>\n<p>We include three custom headers in every webhook request:</p>\n<ul>\n<li><p><strong><code>webhook-id</code></strong>: A unique identifier for this specific event message. Use this as an <strong>idempotency key</strong> to prevent processing the same event multiple times.</p>\n</li>\n<li><p><strong><code>webhook-timestamp</code></strong>: A Unix timestamp (in seconds) of when the request was sent. You should check that this timestamp is recent to prevent <a href=\"https://en.wikipedia.org/wiki/Replay_attack\">replay attacks</a>.</p>\n</li>\n<li><p><strong><code>webhook-signature</code></strong>: Webhook signature.</p>\n</li>\n</ul>\n<h3 id=\"how-to-verify-a-signature\">How to Verify a Signature</h3>\n<ol>\n<li><p><strong>Prepare the Signed Content</strong>: Create a string by concatenating the <code>webhook-id</code>, the <code>webhook-timestamp</code>, and the <strong>raw, unmodified request body</strong>, separated by a period (<code>.</code>).</p>\n<ul>\n<li><p><strong>Format</strong>: <code>$webhook-id.$webhook-timestamp.$request-body</code></p>\n</li>\n<li><p><strong>Example</strong>: <code>msg_2KWPBgLlAfxdpx2AI54pPJ85f4W.1674087231.\"{\"type\":\"account.created.v1\",...}\"</code></p>\n</li>\n<li><p>🚨 <strong>Important</strong>: It's crucial to use the raw request body, not a parsed and re-serialized version of the JSON, as even a minor change (like removing a space) will invalidate the signature.</p>\n</li>\n</ul>\n</li>\n<li><p><strong>Calculate the Expected Signature</strong>: Using your unique webhook signing secret (found in your webhook configuration for that type), calculate an HMAC-SHA256 signature of the string you created in step 1.</p>\n</li>\n<li><p><strong>Compare Signatures</strong>: Iterate through the signatures provided in the <code>webhook-signature</code> header. For each signature, compare it against your calculated signature from step 2.</p>\n<ul>\n<li><p>Use a <strong>constant-time string comparison</strong> function to prevent timing attacks.</p>\n</li>\n<li><p>If any of the provided signatures match your calculated signature, the webhook is valid.</p>\n</li>\n</ul>\n</li>\n</ol>\n<hr />\n<h2 id=\"delivery-and-retries\">Delivery and Retries</h2>\n<p>For a webhook delivery to be considered <strong>successful</strong>, your endpoint must respond with a <code>2xx</code> HTTP status code (e.g., <code>200</code> or <code>204</code>) within <strong>30 seconds</strong>.</p>\n<p>Any other response—including a non-<code>2xx</code> status code, a timeout, or a connection error—is considered a <strong>failure</strong>.</p>\n<ul>\n<li><p><strong>Retry Schedule</strong>: If a delivery fails, we will automatically retry sending the webhook for non-200 status codes 429 and 5xx. We will retry sending up to 14 times across a 47 hour period.</p>\n</li>\n<li><p><strong>Disabling Endpoints</strong>: If an endpoint consistently fails, we will notify you and may eventually disable it. Returning a <code>410 Gone</code> status code will cause us to disable the endpoint immediately.</p>\n</li>\n</ul>\n","_postman_id":"ec8e1ae2-a4dd-4194-81af-596c86b93220"},{"name":"List webhooks","item":[{"name":"Retrieve webhooks","id":"20ce3750-5671-430f-a1a6-57d8bed9c04b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{apiRoute}}/settings/{{firmId}}","description":"<p>You can use this endpoint to check which of your webhooks have been configured.</p>\n","urlObject":{"path":["settings","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[{"id":"7cec4e95-9abd-4aff-8a6f-c013bc1b9bdf","name":"Retrieve webhooks example response","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"},{"key":"Content-Type","value":"application/json"}],"url":"{{apiRoute}}/settings/{{firmId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Tue, 13 Feb 2024 14:18:41 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"389"},{"key":"Connection","value":"keep-alive"},{"key":"x-amzn-RequestId","value":"6797b640-c153-4fdd-9faa-718f89915789"},{"key":"referrer-policy","value":"no-referrer"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-permitted-cross-domain-policies","value":"none"},{"key":"x-xss-protection","value":"0"},{"key":"access-control-allow-origin","value":"*"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-amzn-Remapped-content-length","value":"389"},{"key":"content-security-policy","value":"default-src 'self';base-uri 'self';font-src 'self' https: data:;form-action 'self';frame-ancestors 'self';img-src 'self' data:;object-src 'none';script-src 'self';script-src-attr 'none';style-src 'self' https: 'unsafe-inline';upgrade-insecure-requests"},{"key":"origin-agent-cluster","value":"?1"},{"key":"x-download-options","value":"noopen"},{"key":"cross-origin-opener-policy","value":"same-origin"},{"key":"x-amz-apigw-id","value":"TFAKPE9-joEELVg="},{"key":"x-content-type-options","value":"nosniff"},{"key":"etag","value":"W/\"185-bUemD0IkMBjKCWEccBM2rnIv4+E\""},{"key":"cross-origin-resource-policy","value":"same-origin"},{"key":"X-Amzn-Trace-Id","value":"Root=1-65cb7a41-1804d4804d7e77ae269e61e4;Parent=15cc259f738a220d;Sampled=0;lineage=80d77620:0"}],"cookie":[],"responseTime":null,"body":"{\n    \"data\": {\n        \"id\": \"Pfolio\",\n        \"firmId\": \"TEST1\",\n        \"status\": \"Enabled\",\n        \"markets\": [\n            \"XOFF\",\n            \"XFRA\",\n            \"XETR\",\n            \"XLON\",\n            \"XPAR\",\n            \"XDUB\",\n            \"XLUX\",\n            \"XGAT\",\n            \"XNYS\",\n            \"XNMS\",\n            \"XNGS\",\n            \"XNCM\"\n        ],\n        \"products\": [\n            \"GIA\",\n            \"SIPP\",\n            \"ISA\",\n            \"JISA\",\n            \"TPOFFBOND\",\n            \"PENSION\",\n            \"TPPENSION\",\n            \"SSAS\"\n        ],\n        \"digitalCustody\": true,\n        \"digitalCustodyFirm\": \"RCUST\",\n        \"aml\": false,\n        \"transactionWebhook\": \"configured\",\n        \"fractionalTrading\": true,\n        \"positionWebhook\": \"configured\"\n    }\n}"}],"_postman_id":"20ce3750-5671-430f-a1a6-57d8bed9c04b"}],"id":"448aef7e-81aa-414e-9b1e-6fac95692a37","description":"<p>To check if a webhook has been configured the <em>GET settings command</em> should be used.</p>\n<p>This will return a response of <code>\"configured\"</code> for all webhook types that you have setup with a <code>url</code> and associated <code>secret</code> (these values are not returned for security purposes).</p>\n<p>If these values have been configured they will be included in the body of the response along with your other firm settings.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"03551f38-65aa-466f-bf14-09bf91d0203b"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"d01deaa3-7eec-4b4c-b3d4-62a28cfc5e04"}}],"_postman_id":"448aef7e-81aa-414e-9b1e-6fac95692a37"},{"name":"Transaction webhook","item":[{"name":"Transaction webhook URL","id":"f9a8fc36-8a81-45d0-abd6-6f588e3d6a21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\r\n    \"url\": \"<your webhook url>\",\r\n    \"secret\": \"<your secret>\"\r\n}\r\n"},"url":"{{apiRoute}}/webhook/config/transaction/{{firmId}}","description":"<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/transaction/\">https://pfolio-api-staging.seccl.tech/webhook/config/transaction/</a> This will set up your transaction webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the transaction webhook will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n    \"id\": \"000002LS6\",  // ID of the transaction\n    \"firmId\": \"{{firmId}}\",  // firm of the transaction\n    \"transactionType\": \"Payment\", //  transaction type\n    \"status\": \"Completed\", // current status of the transaction\n    \"updateDate\": \"2019-05-04T10:06:31.047Z\", // date of the last update\n    \"externalReference\": \"your-external-reference\" // optional property that will present if provided at transaction creation\n  }]\n}\n\n</code></pre>\n<p>Once you receive a webhook, you can use the <code>id</code> to query the associated transaction.</p>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","transaction","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9a8fc36-8a81-45d0-abd6-6f588e3d6a21"}],"id":"ca1f833b-4cb5-4ab9-8f87-fa8c4152be07","_postman_id":"ca1f833b-4cb5-4ab9-8f87-fa8c4152be07","description":""},{"name":"Enhanced transaction webhook data","item":[],"id":"4f1779b2-677f-4209-bddb-dc1c7cb45d58","description":"<h2 id=\"overview\">Overview</h2>\n<p>When a transaction is created or updated, a webhook notification is sent to the configured endpoints if webhooks are enabled for the firm. The webhook body contains information about the transaction, including its status, type, and other relevant details.</p>\n<hr />\n<h2 id=\"webhook-body-structure\">Webhook Body Structure</h2>\n<h3 id=\"required-fields\">Required Fields</h3>\n<p>These fields are always included in the webhook body:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>accountId</code></td>\n<td>String</td>\n<td>The ID of the account associated with the transaction</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>Number</td>\n<td>The transaction amount</td>\n</tr>\n<tr>\n<td><code>assetId</code></td>\n<td>String</td>\n<td>The ID of the asset involved in the transaction</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>String</td>\n<td>The currency code for the transaction</td>\n</tr>\n<tr>\n<td><code>executedAmount</code></td>\n<td>Number</td>\n<td>The amount that was executed</td>\n</tr>\n<tr>\n<td><code>executedQuantity</code></td>\n<td>Number</td>\n<td>The quantity that was executed</td>\n</tr>\n<tr>\n<td><code>externalReference</code></td>\n<td>String</td>\n<td>External reference identifier</td>\n</tr>\n<tr>\n<td><code>isin</code></td>\n<td>String</td>\n<td>The ISIN (International Securities Identification Number) of the security</td>\n</tr>\n<tr>\n<td><code>linkId</code></td>\n<td>String</td>\n<td>An ID linking related transactions</td>\n</tr>\n<tr>\n<td><code>movementType</code></td>\n<td>String</td>\n<td>The direction of the movement (e.g., \"In\", \"Out\")</td>\n</tr>\n<tr>\n<td><code>quantity</code></td>\n<td>Number</td>\n<td>The quantity involved in the transaction</td>\n</tr>\n<tr>\n<td><code>transactionSubType</code></td>\n<td>String</td>\n<td>The subtype of the transaction (e.g., \"Deposit\", \"Withdrawal\")</td>\n</tr>\n<tr>\n<td><code>transferStatus</code></td>\n<td>String</td>\n<td>The status of the transfer</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"optional-fields\">Optional Fields</h3>\n<p>The following fields are included if available:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>externalReference</code></td>\n<td>String</td>\n<td>An external reference associated with the transaction, if provided</td>\n</tr>\n<tr>\n<td><code>accountId</code></td>\n<td>String</td>\n<td>The ID of the account associated with the transaction</td>\n</tr>\n<tr>\n<td><code>amount</code></td>\n<td>Number</td>\n<td>The transaction amount</td>\n</tr>\n<tr>\n<td><code>assetId</code></td>\n<td>String</td>\n<td>The ID of the asset involved in the transaction</td>\n</tr>\n<tr>\n<td><code>currency</code></td>\n<td>String</td>\n<td>The currency code for the transaction</td>\n</tr>\n<tr>\n<td><code>executedAmount</code></td>\n<td>Number</td>\n<td>The amount that was executed</td>\n</tr>\n<tr>\n<td><code>executedQuantity</code></td>\n<td>Number</td>\n<td>The quantity that was executed</td>\n</tr>\n<tr>\n<td><code>externalReference</code></td>\n<td>String</td>\n<td>External reference identifier</td>\n</tr>\n<tr>\n<td><code>isin</code></td>\n<td>String</td>\n<td>The ISIN (International Securities Identification Number) of the security</td>\n</tr>\n<tr>\n<td><code>linkId</code></td>\n<td>String</td>\n<td>An ID linking related transactions</td>\n</tr>\n<tr>\n<td><code>movementType</code></td>\n<td>String</td>\n<td>The direction of the movement (e.g., \"In\", \"Out\")</td>\n</tr>\n<tr>\n<td><code>quantity</code></td>\n<td>Number</td>\n<td>The quantity involved in the transaction</td>\n</tr>\n<tr>\n<td><code>transactionSubType</code></td>\n<td>String</td>\n<td>The subtype of the transaction (e.g., \"Deposit\", \"Withdrawal\")</td>\n</tr>\n<tr>\n<td><code>transferStatus</code></td>\n<td>String</td>\n<td>The status of the transfer</td>\n</tr>\n<tr>\n<td><code>transferUpdateEvents</code></td>\n<td>Array of Product Transfer Events</td>\n<td>An array of product transfer events. These will show the history of events on a product transfer transaction</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h3 id=\"types\">Types</h3>\n<h4 id=\"product-transfer-event\">Product Transfer Event</h4>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Field</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>createdByFirm</code></td>\n<td>String</td>\n<td>The ID of the account associated with the transaction</td>\n</tr>\n<tr>\n<td><code>historyType</code></td>\n<td>String Enum</td>\n<td>The type of update. Can be either 'INFO' or 'CLIENT_ACTION'</td>\n</tr>\n<tr>\n<td><code>updateCode</code></td>\n<td>String</td>\n<td>A common string used to give an appropriate high level reason for the update</td>\n</tr>\n<tr>\n<td><code>effectiveFrom</code></td>\n<td>Date</td>\n<td>A date from which the update is effective from</td>\n</tr>\n<tr>\n<td><code>createdAt</code></td>\n<td>Date</td>\n<td>A date at which the update was added to the transaction</td>\n</tr>\n<tr>\n<td><code>updateNote</code></td>\n<td>String (Optional)</td>\n<td>A string used to give a more in depth explanation on the update</td>\n</tr>\n</tbody>\n</table>\n</div><hr />\n<h2 id=\"example-webhook-payload\">Example Webhook Payload</h2>\n<p><em>Shows all possible fields</em></p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"creationDate\": \"2023-09-12T15:30:45.123Z\",\n  \"externalMessageType\": \"PortfolioTransaction\",\n  \"externalSystem\": \"SecclWebhook\",\n  \"firmId\": \"firm123\",\n  \"transactionId\": \"tx456\",\n  \"transactionStatus\": \"Pending\",\n  \"transactionType\": \"Payment\",\n  \"type\": \"Send\",\n  \"accountId\": \"acc789\",\n  \"amount\": 900,\n  \"currency\": \"GBP\",\n  \"externalReference\": \"client-ref-789\",\n  \"movementType\": \"Out\",\n  \"transactionSubType\": \"Withdrawal\",\n  \"linkId\": \"link123\"\n}\n\n</code></pre>\n<hr />\n<h2 id=\"important-notes\">Important Notes</h2>\n<ol>\n<li><p>Only fields with defined values will be included in the webhook payload.</p>\n</li>\n<li><p>The ISIN is derived from either <code>transaction.information.originalIsin</code> or <code>transaction.isin</code></p>\n</li>\n<li><p>Webhook notifications are only sent if the firm has the appropriate webhook service enabled.</p>\n</li>\n<li><p>For transactions with a status of <code>\"Checking\"</code>, only the webhook notification is triggered and no further processing occurs.</p>\n</li>\n</ol>\n<hr />\n<h2 id=\"use-cases\">Use Cases</h2>\n<p>Webhooks are triggered in various scenarios, including:</p>\n<ul>\n<li><p>When a new transaction is created</p>\n</li>\n<li><p>When a transaction's status changes</p>\n</li>\n<li><p>When a transaction is deleted</p>\n</li>\n</ul>\n<p>This allows integration systems to stay in sync with the transaction lifecycle and respond accordingly.</p>\n","_postman_id":"4f1779b2-677f-4209-bddb-dc1c7cb45d58"},{"name":"Position webhook","item":[{"name":"Position webhook URL","id":"9caaea5b-5146-449b-ab48-156bf9eea9b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\r\n    \"url\": \"<your webhook url>\",\r\n    \"secret\": \"<your secret>\"\r\n}\r\n"},"url":"{{apiRoute}}/webhook/config/position/{{firmId}}","description":"<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/position/.\">https://pfolio-api-staging.seccl.tech/webhook/config/position/.</a> This will set up your position webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the position webhook will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n    \"id\": \"000043J|C|GBP\",  // ID of the position\n    \"firmId\": \"{{firmId}}\",  // firm of the position\n    \"positionType\": \"Cash\", //  position type \n    \"accountId\": \"000043J\", // account of the position update\n    \"updateDate\": \"2019-05-04T10:06:31.047Z\" // date of the last update\n  }]\n}\n\n</code></pre>\n<p>Once you receive one of these data POSTs, you can then use the ID to query the relevant position and process.</p>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","position","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9caaea5b-5146-449b-ab48-156bf9eea9b8"}],"id":"25fc73d5-9b8f-47d7-875e-136e25213c1c","_postman_id":"25fc73d5-9b8f-47d7-875e-136e25213c1c","description":""},{"name":"Client webhook","item":[{"name":"Client webhook URL","id":"e903cefc-1f00-4dfd-a19b-158f7b76a3f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"Bearer {{YOUR_API_TOKEN}}"}],"body":{"mode":"raw","raw":"{\r\n    \"url\": \"<your webhook url>\",\r\n    \"secret\": \"<your secret>\"\r\n}\r\n"},"url":"{{apiRoute}}/webhook/config/client/{{firmId}}","description":"<p>The client webhook fires upon a client being created or updated.</p>\n<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/client/.\">https://pfolio-api-staging.seccl.tech/webhook/config/client/.</a> This will set up your client webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the client webhook upon client creation will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n    \"clientId\": \"000043J\",  // ID of the client\n    \"data\": {{client}}, // new client data\n    \"firmId\": \"{{firmId}}\",  // firm of the client\n    \"updateDate\": \"2019-05-04T10:06:31.047Z\" // date of client creation\n  }]\n}\n\n</code></pre>\n<p>The <code>data</code> property will contain the entire <code>client</code> entity that has been created.</p>\n<p>The format of the data posted by the client webhook upon client update will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n    \"clientId\": \"000043J\",  // ID of the client\n    \"updateFields\": [\"updatedField\"], // name of the updated fields\n    \"updateData\": {{updatedField: \"data\"}}, // the data the client is being updated with\n    \"firmId\": \"{{firmId}}\",  // firm of the client\n    \"updateDate\": \"2019-05-04T10:06:31.047Z\" // date of the update\n  }]\n}\n\n</code></pre>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","client","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e903cefc-1f00-4dfd-a19b-158f7b76a3f9"}],"id":"4040b3c8-c20c-418b-a030-8938a14f31b5","_postman_id":"4040b3c8-c20c-418b-a030-8938a14f31b5","description":""},{"name":"Exception webhook","item":[{"name":"Exception webhook URL","id":"a9868724-4544-42b1-aa35-fa4ada835217","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"url\": \"<your webhook url>\",\n    \"secret\": \"<your secret>\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/webhook/config/exception/{{firmId}}","description":"<p>The exception webhook fires upon a notification being created.</p>\n<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/exception/.\">https://pfolio-api-staging.seccl.tech/webhook/config/exception/.</a> This will set up your exception webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the client webhook upon client creation will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [\n                {\n                    \"id\": \"000000LDJR\", // the id of the notification\n                    \"firmId\": \"SECCI\",\n                    \"notification\": \"{{notification}}\" // the notification\n            ]\n}\n\n</code></pre>\n<p>The <code>notification</code> property will contain the entire entity that has been created.</p>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","exception","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a9868724-4544-42b1-aa35-fa4ada835217"}],"id":"9271a30f-5d93-481e-926a-001a99f889ce","_postman_id":"9271a30f-5d93-481e-926a-001a99f889ce","description":""},{"name":"Message webhook","item":[{"name":"Message webhook URL","id":"9d12dc1d-9bce-47ec-bc51-e7c20464ded6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"url\": \"<your webhook url>\",\n    \"secret\": \"<your secret>\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/webhook/config/message/{{firmId}}","description":"<p>The message webhook is fired upon a message being sent to a client.</p>\n<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/message/.\">https://pfolio-api-staging.seccl.tech/webhook/config/message/.</a> This will set up your message webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the message webhook upon message creation will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n        \"messageType\": \"NEW_ACCOUNT\",\n        \"clientId\": \"{{clientId}}\",\n        \"firmId\": \"SECCI\",\n        \"updateDate\": \"2025-01-21T16:38:16.266Z\",\n        \"type\": \"NEW_ACCOUNT\", // the message type\n        \"message\": {\n            \"accountId\": \"{{accountId}}\",\n            \"MESSAGE_BODY\": \"Congratulations, you have set up a new account!\",\n            \"MESSAGE_SUBJECT\": \"Your New Account\"\n        }\n    }\n}\n\n</code></pre>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","message","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9d12dc1d-9bce-47ec-bc51-e7c20464ded6"}],"id":"53642462-d3f2-4952-a411-0222f4997afa","_postman_id":"53642462-d3f2-4952-a411-0222f4997afa","description":""},{"name":"Transfer rejection webhook","item":[{"name":"Transfer rejection webhook URL","id":"48acc842-666c-4ac8-8cc9-c7b2c840a1a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[],"body":{"mode":"raw","raw":"{\n    \"url\": \"<your webhook url>\",\n    \"secret\": \"<your secret>\"\n}\n","options":{"raw":{"language":"json"}}},"url":"{{apiRoute}}/webhook/config/transfer/{{firmId}}","description":"<p>The transfer rejection webhook is fired upon a transfer being rejected</p>\n<p>You can use the below PATCH request to <a href=\"https://pfolio-api-staging.seccl.tech/webhook/config/transfer/.\">https://pfolio-api-staging.seccl.tech/webhook/config/transfer/.</a> This will set up your transfer webhook URL and secret:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"url\": \"your-webhook.url\",\n    \"secret\": \"your-associated-secret\"\n}\n\n</code></pre>\n<p>The format of the data posted by the transfer webhook upon transfer being rejected will be as follows:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"events\": [{\n       \"version\": 1,\n       \"reason\": \"Rejected\",\n       \"updateDate\": \"2025-05-20T09:17:50.138+00:00\",\n       \"transactionId\": \"0000NHF7R\",\n       \"transferStatus\": \"Rejected\",\n       \"accountId\": \"0352GDH\",\n       \"firmId\": \"SECCI\",\n       \"rejectionCode\": \"Active scheme member\",\n       \"rejectionNote\": \"Ceding scheme confirmed that this member is still active with them.\",\n       \"externalIds\": [\n           {\"externalTransferId\": \"856696\"},\n           {\"transferReference\": \"ATI000856696\"}\n       ]\n   }]\n}\n\n</code></pre>\n<p>The <code>externalIds</code> array contains any external and client set references added to the transfer on creation and during processing. <code>externalTransferId</code> and <code>transferReference</code> are names reserved by the system and should not be used when creating a transfer.</p>\n<p>To validate the message, we will include a header field called <code>webhook-signature</code>. The data will be a hash of the body data sent above. This will be a HMAC SHA256 hash.</p>\n","urlObject":{"path":["webhook","config","transfer","{{firmId}}"],"host":["{{apiRoute}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48acc842-666c-4ac8-8cc9-c7b2c840a1a6"}],"id":"5f043639-38f9-438b-830d-6418bf79c41a","_postman_id":"5f043639-38f9-438b-830d-6418bf79c41a","description":""}],"id":"5c4fa984-3045-410a-b102-e6c490bb19dd","description":"<p>Webhooks allow us to notify you when certain events happen, such as:</p>\n<ul>\n<li><p><strong>Transaction:</strong> Receive a webhook when a transaction has been created, or when it has changed status (such as pending to complete)</p>\n</li>\n<li><p><strong>Position:</strong> Receive a webhook when a position has been updated</p>\n</li>\n<li><p><strong>Client:</strong> Receive a webhook when a client has been created or updated</p>\n</li>\n<li><p><strong>Exception:</strong> Receive a webhook when a notification is generated, indicating an asynchronous error exception</p>\n</li>\n<li><p><strong>Message:</strong> Receive a webhook when a message is generated for a client</p>\n</li>\n<li><p><strong>Transfer:</strong> Receive a webhook when a transfer is rejected, notifying the reason</p>\n</li>\n<li><p><strong>Account:</strong> Receive a webhook when an account is created or updated</p>\n</li>\n</ul>\n<p>To update a webhook configuration you must have the <code>readWrite</code> access under the \"Firm Management\" scope.</p>\n<p>Note that our Account Webhooks are new and improved! Please head to this section of the docs to read about how we've made delivery better, along with some comments on best practices for receiving webhooks from us.</p>\n","event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"82b71623-de39-45e7-a021-bef685bdf354"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"c61430ba-0c47-4fe5-a647-ed7c74168e0e"}}],"_postman_id":"5c4fa984-3045-410a-b102-e6c490bb19dd"}],"event":[{"listen":"prerequest","script":{"type":"text/javascript","exec":[""],"id":"879f7674-34da-4721-a8a1-b82e2e0d2d23"}},{"listen":"test","script":{"type":"text/javascript","exec":[""],"id":"dac43d9a-ca28-4f2e-8d81-22e7818c2172"}}]}